/* ============================================
   RUSTY SEA MEN - PREMIUM REDESIGN
   Modern Gaming Aesthetic with Oceanic Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Pirata+One&family=Bebas+Neue&family=Rajdhani:wght@400;600;700&display=swap');

:root {
    --deep-ocean: #020817;
    --ocean-depths: #0f172a;
    --ocean-blue: #1e293b;
    --cyan-glow: #06b6d4;
    --gold-accent: #fbbf24;
    --rust-orange: #f97316;
    --skull-white: #f8fafc;
    --slate-gray: #64748b;
    --warning-red: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--deep-ocean);
    color: var(--skull-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated ocean background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: oceanFlow 20s ease-in-out infinite;
}

@keyframes oceanFlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Grain texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* ============================================
   MODERN NAVBAR
   ============================================ */

.navbar {
    background: rgba(2, 8, 23, 0.85);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 100px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    top: 20px;
}

.nav-logo img:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.6));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu li a {
    display: block;
    padding: 12px 28px;
    color: var(--slate-gray);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cyan-glow);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--cyan-glow);
    background: rgba(6, 182, 212, 0.1);
}

.nav-menu li a:hover::before {
    width: 60%;
}

.nav-menu li a.active {
    color: var(--gold-accent);
    background: rgba(251, 191, 36, 0.1);
}

.nav-menu li a.active::before {
    width: 60%;
    background: var(--gold-accent);
}

/* ============================================
   CINEMATIC HERO SECTION
   ============================================ */

.hero {
    position: relative;
    padding: 120px 40px 100px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center top, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Pirata One', cursive;
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: var(--gold-accent);
    text-shadow: 
        0 0 40px rgba(251, 191, 36, 0.5),
        0 0 80px rgba(6, 182, 212, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 25px;
    letter-spacing: 4px;
    animation: heroGlow 3s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { 
        text-shadow: 
            0 0 40px rgba(251, 191, 36, 0.5),
            0 0 80px rgba(6, 182, 212, 0.3),
            0 4px 20px rgba(0, 0, 0, 0.8);
    }
    50% { 
        text-shadow: 
            0 0 60px rgba(251, 191, 36, 0.7),
            0 0 100px rgba(6, 182, 212, 0.5),
            0 4px 20px rgba(0, 0, 0, 0.8);
    }
}

.tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--cyan-glow);
    margin-bottom: 50px;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.server-ip {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    padding: 25px 40px;
    border-radius: 16px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    box-shadow: 
        0 0 40px rgba(6, 182, 212, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.server-ip:hover {
    border-color: rgba(6, 182, 212, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 0 60px rgba(6, 182, 212, 0.4),
        0 25px 70px rgba(0, 0, 0, 0.7);
}

.ip-label {
    color: var(--gold-accent);
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
}

.ip-value {
    font-size: 1.5em;
    color: var(--cyan-glow);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.copy-btn,
.copy-btn-small {
    background: linear-gradient(135deg, var(--rust-orange) 0%, #ea580c 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.copy-btn-small {
    padding: 6px 12px;
    font-size: 0.9em;
}

.copy-btn:hover,
.copy-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #ea580c 0%, var(--rust-orange) 100%);
}

/* ============================================
   COMMUNITY BUTTONS
   ============================================ */

.community-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 40px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    font-size: 1.3em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    border: 2px solid rgba(88, 101, 242, 0.5);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.6);
    border-color: #5865F2;
}

.stream-btn {
    background: linear-gradient(135deg, #9146FF 0%, #772CE8 100%);
    color: white;
    border: 2px solid rgba(145, 70, 255, 0.5);
    box-shadow: 0 8px 30px rgba(145, 70, 255, 0.4);
}

.stream-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(145, 70, 255, 0.6);
    border-color: #9146FF;
}

.btn-icon {
    font-size: 1.5em;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* ============================================
   MODERN FEATURES GRID
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan-glow);
    box-shadow: 
        0 0 40px rgba(6, 182, 212, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    color: var(--gold-accent);
    font-size: 1.8em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--skull-white);
    line-height: 1.8;
    font-size: 1.1em;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ============================================
   SERVER INFO & RULES
   ============================================ */

.server-info,
.rules-section {
    margin-bottom: 80px;
}

.server-info h2,
.rules-section h2,
.page-header h1 {
    color: var(--gold-accent);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Bebas Neue', sans-serif;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.info-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-left: 4px solid var(--cyan-glow);
    border-radius: 16px;
    padding: 40px;
    line-height: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.info-box p {
    margin-bottom: 15px;
    font-size: 1.15em;
}

.info-box strong {
    color: var(--gold-accent);
    font-weight: 700;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rule-item:hover {
    border-color: var(--cyan-glow);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

.rule-number {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #f59e0b 100%);
    color: var(--deep-ocean);
    font-weight: 900;
    font-size: 1.8em;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    font-family: 'Bebas Neue', sans-serif;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.rule-text {
    font-size: 1.15em;
    color: var(--skull-white);
    font-weight: 600;
}

/* ============================================
   STORE PAGE
   ============================================ */

.page-header {
    text-align: center;
    padding: 100px 40px 60px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.5em;
    color: var(--cyan-glow);
    margin-top: 20px;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.rank-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.rank-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
    border-color: var(--cyan-glow);
}

.rank-card.featured {
    border-color: var(--gold-accent);
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.2);
}

.rank-card.featured:hover {
    box-shadow: 0 20px 80px rgba(251, 191, 36, 0.4);
}

.rank-card.ultimate {
    border-color: var(--cyan-glow);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(15, 23, 42, 0.9) 50%);
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.3);
}

.rank-card.ultimate:hover {
    box-shadow: 0 20px 80px rgba(6, 182, 212, 0.5);
}

.rank-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--gold-accent);
    color: var(--deep-ocean);
    padding: 8px 25px;
    font-weight: 900;
    font-size: 0.9em;
    letter-spacing: 2px;
    transform: rotate(3deg);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
    font-family: 'Bebas Neue', sans-serif;
}

.ultimate-ribbon {
    background: var(--cyan-glow);
}

.rank-badge {
    text-align: center;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 12px;
}

.rank-badge.bronze {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.3) 0%, rgba(120, 53, 15, 0.2) 100%);
}

.rank-badge.silver {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.3) 0%, rgba(71, 85, 105, 0.2) 100%);
}

.rank-badge.gold {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.2) 100%);
}

.rank-badge.diamond {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3) 0%, rgba(14, 165, 233, 0.2) 100%);
}

.rank-badge h3 {
    font-size: 2em;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.rank-price {
    font-size: 2.5em;
    font-weight: 900;
    color: var(--cyan-glow);
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Bebas Neue', sans-serif;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.rank-perks {
    list-style: none;
    margin-bottom: 30px;
}

.rank-perks li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    color: var(--skull-white);
    font-size: 1.05em;
    font-weight: 600;
}

.rank-perks li:last-child {
    border-bottom: none;
}

.buy-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--rust-orange) 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.3em;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.6);
}

.featured-btn {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #f59e0b 100%);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
}

.featured-btn:hover {
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.6);
}

.ultimate-btn {
    background: linear-gradient(135deg, var(--cyan-glow) 0%, #0ea5e9 100%);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

.ultimate-btn:hover {
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.6);
}

.store-info {
    margin-top: 80px;
}

.store-info h2 {
    color: var(--gold-accent);
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
}

/* ============================================
   SERVERS PAGE
   ============================================ */

.server-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.server-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.server-card:hover {
    border-color: var(--cyan-glow);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.server-card.online {
    border-color: #10b981;
}

.server-card.online:hover {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.server-card.upcoming {
    border-color: rgba(249, 115, 22, 0.5);
    opacity: 0.9;
}

.server-status {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px currentColor;
}

.online-dot {
    background: #10b981;
}

.offline-dot {
    background: #ef4444;
}

.upcoming-dot {
    background: var(--rust-orange);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.status-text {
    color: white;
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

.server-card h2 {
    color: var(--gold-accent);
    font-size: 2em;
    margin-bottom: 30px;
    padding-right: 180px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.server-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(2, 8, 23, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.detail-label {
    color: var(--gold-accent);
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.detail-value {
    color: var(--skull-white);
    font-weight: 600;
}

.server-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3) 0%, rgba(14, 165, 233, 0.2) 100%);
    color: var(--cyan-glow);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95em;
    font-weight: 700;
    border: 1px solid rgba(6, 182, 212, 0.3);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.connect-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.3em;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6);
}

.connect-btn.disabled {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    cursor: not-allowed;
    opacity: 0.6;
}

.connect-btn.disabled:hover {
    transform: none;
    box-shadow: 0 8px 30px rgba(100, 116, 139, 0.3);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    color: var(--gold-accent);
    font-size: 2.8em;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Bebas Neue', sans-serif;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.about-section p {
    font-size: 1.15em;
    line-height: 1.9;
    color: var(--skull-white);
    margin-bottom: 20px;
    font-weight: 400;
}

.mission-list {
    list-style: none;
    margin-top: 25px;
}

.mission-list li {
    padding: 18px 25px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border-left: 4px solid var(--cyan-glow);
    border-radius: 10px;
    font-size: 1.1em;
    color: var(--skull-white);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.mission-list li::before {
    content: '⚓ ';
    color: var(--gold-accent);
    font-weight: bold;
    margin-right: 12px;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.team-member {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    border-color: var(--cyan-glow);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.3);
}

.member-role {
    color: var(--gold-accent);
    font-weight: 700;
    font-size: 0.95em;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
}

.member-name {
    color: var(--cyan-glow);
    font-size: 1.6em;
    font-weight: 900;
    margin-bottom: 15px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.team-member p {
    color: var(--skull-white);
    font-size: 1em;
    line-height: 1.7;
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 2px solid var(--cyan-glow);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.4);
}

.stat-number {
    font-size: 3.5em;
    color: var(--gold-accent);
    font-weight: 900;
    margin-bottom: 15px;
    font-family: 'Bebas Neue', sans-serif;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.stat-label {
    color: var(--skull-white);
    font-size: 1.15em;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
}

.contact-info {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-left: 4px solid var(--cyan-glow);
    border-radius: 16px;
    padding: 40px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.15em;
    font-weight: 600;
}

.contact-info strong {
    color: var(--gold-accent);
    font-weight: 700;
}

.contact-info a {
    color: var(--cyan-glow);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold-accent);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.features-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.feature-about {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-about:hover {
    border-color: var(--cyan-glow);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.3);
}

.feature-icon-large {
    font-size: 4em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.feature-about h3 {
    color: var(--gold-accent);
    font-size: 1.5em;
    margin-bottom: 15px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.feature-about p {
    color: var(--skull-white);
    font-size: 1.05em;
    line-height: 1.7;
    font-weight: 400;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: rgba(2, 8, 23, 0.95);
    border-top: 2px solid rgba(6, 182, 212, 0.3);
    padding: 40px 40px;
    text-align: center;
    margin-top: 100px;
    backdrop-filter: blur(20px);
}

footer p {
    color: var(--skull-white);
    font-size: 1.1em;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .hero {
        padding: 100px 30px 80px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }
    
    .nav-logo img {
        height: 100px;
        top: 0;
    }
    
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-menu li a {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .server-ip {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .ip-value {
        font-size: 1.2em;
    }
    
    .community-buttons {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 20px 40px;
    }
    
    .container {
        padding: 60px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
    }
    
    .server-card h2 {
        padding-right: 0;
        font-size: 1.5em;
        margin-bottom: 60px;
    }
    
    .server-details {
        grid-template-columns: 1fr;
    }
    
    .server-status {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-menu li a {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .feature-card,
    .rank-card,
    .server-card {
        padding: 25px;
    }
}
