* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-blue: #00d4ff;
    --neon-purple: #b829ff;
    --dark-bg: #0a0e1a;
    --darker-bg: #050810;
    --card-bg: rgba(15, 20, 35, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at top, #1a0e2e 0%, #0a0e1a 50%, #000000 100%);
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(184, 41, 255, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(0, 150, 255, 0.15) 0%, transparent 50%);
    animation: bgMove 30s ease-in-out infinite alternate;
}

.animated-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 212, 255, 0.03) 2px, rgba(0, 212, 255, 0.03) 4px);
    opacity: 0.3;
    animation: scanlines 8s linear infinite;
}

@keyframes bgMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-100px, -100px) rotate(5deg); }
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--neon-blue);
}

.particle:nth-child(2n) {
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
    animation-duration: 20s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-100px) translateX(50px); }
    50% { transform: translateY(-200px) translateX(-30px); }
    75% { transform: translateY(-150px) translateX(70px); }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo span {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite;
}

.logo-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    animation: logoSpin 8s linear infinite;
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 30px rgba(184, 41, 255, 0.9));
    transform: scale(1.1) rotate(15deg);
}

@keyframes logoSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6)); }
    50% { filter: drop-shadow(0 0 20px rgba(184, 41, 255, 0.8)); }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    z-index: 1;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 80px rgba(184, 41, 255, 0.6));
    animation: heroLogoFloat 4s ease-in-out infinite, heroLogoRotate 12s linear infinite, heroLogoPulse 2s ease-in-out infinite;
    transition: all 0.5s ease;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 60px rgba(0, 212, 255, 1)) drop-shadow(0 0 120px rgba(184, 41, 255, 0.9));
    transform: scale(1.15) rotate(20deg);
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes heroLogoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes heroLogoPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 80px rgba(184, 41, 255, 0.6));
    }
    50% { 
        filter: drop-shadow(0 0 60px rgba(184, 41, 255, 1)) drop-shadow(0 0 100px rgba(0, 212, 255, 0.8));
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)); }
    50% { transform: scale(1.02); filter: drop-shadow(0 0 40px rgba(184, 41, 255, 0.8)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-highlight {
    font-size: 1.2rem;
    color: var(--neon-blue);
    margin-bottom: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.server-ip-box {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    padding: 1.5rem 3rem;
    display: inline-block;
    margin-bottom: 3rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    animation: ipGlow 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-ip-box:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

@keyframes ipGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 50px rgba(184, 41, 255, 0.5); }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.btn-secondary:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.social-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.8) 0%, rgba(15, 20, 35, 0.6) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
    box-shadow: 0 0 20px var(--neon-blue);
}

.social-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.social-card {
    background: linear-gradient(145deg, rgba(15, 20, 35, 0.9), rgba(10, 14, 26, 0.95));
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.5), 0 0 50px rgba(184, 41, 255, 0.3);
    background: linear-gradient(145deg, rgba(15, 20, 35, 1), rgba(10, 14, 26, 1));
}

.social-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px currentColor);
    transition: all 0.4s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px currentColor) drop-shadow(0 0 40px currentColor);
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.social-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.ranks-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.95) 0%, rgba(10, 14, 26, 0.9) 100%);
    position: relative;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.ranks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(184, 41, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.gamemodes-section {
    padding: 10rem 5%;
    background: linear-gradient(180deg, rgba(15, 20, 35, 0.6) 0%, rgba(5, 8, 16, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

.gamemodes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.gamemodes-section .social-card {
    padding: 3.5rem 2.5rem;
    min-height: 450px;
}

.gamemodes-section .social-icon img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gamemodes-section .social-card:hover .social-icon img {
    transform: scale(1.25);
}

.gamemodes-section .social-card:nth-child(1):hover .social-icon img {
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 80px rgba(255, 215, 0, 0.6));
}

.gamemodes-section .social-card:nth-child(2):hover .social-icon img {
    filter: drop-shadow(0 0 40px rgba(0, 255, 0, 1)) drop-shadow(0 0 60px rgba(0, 255, 0, 0.8)) drop-shadow(0 0 80px rgba(0, 255, 0, 0.6));
}

.gamemodes-section .social-card:nth-child(3):hover .social-icon img {
    filter: drop-shadow(0 0 40px rgba(0, 255, 255, 1)) drop-shadow(0 0 60px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 80px rgba(0, 255, 255, 0.6));
}

.gamemodes-section .social-card:nth-child(4):hover .social-icon img {
    filter: drop-shadow(0 0 40px rgba(255, 0, 200, 1)) drop-shadow(0 0 60px rgba(255, 0, 200, 0.8)) drop-shadow(0 0 80px rgba(255, 0, 200, 0.6));
}

.ssx-special {
    border: 3px solid rgba(0, 255, 0, 0.5) !important;
    background: linear-gradient(145deg, rgba(15, 40, 20, 0.95), rgba(10, 30, 15, 1)) !important;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3), 0 10px 50px rgba(0, 0, 0, 0.5) !important;
    position: relative;
    overflow: hidden;
}

.ssx-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(0, 255, 0, 0.2) 25%, 
        transparent 50%, 
        rgba(0, 255, 0, 0.2) 75%, 
        transparent 100%);
    border-radius: 25px;
    z-index: 0;
    animation: ssx-border-glow 3s linear infinite;
    background-size: 200% 200%;
    pointer-events: none;
}

@keyframes ssx-border-glow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.ssx-special:hover {
    border-color: rgba(0, 255, 0, 1) !important;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.6), 0 0 80px rgba(0, 255, 0, 0.3), 0 15px 60px rgba(0, 0, 0, 0.6) !important;
    transform: translateY(-15px) scale(1.02) !important;
}

.ssx-special > * {
    position: relative;
    z-index: 1;
}

.ssx-badge {
    animation: badge-pulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes badge-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.9);
    }
}

.ssx-btn {
    min-width: 100px;
    text-align: center;
}

.ssx-special .btn-secondary:hover {
    background: #00ff00 !important;
    color: #000 !important;
    border-color: #00ff00 !important;
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.5) !important;
    transform: translateY(-3px) !important;
}

.gamemode-status {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 25px;
    animation: pulse 2s ease-in-out infinite;
}

.ranks-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.rank-card {
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.rank-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(0, 212, 255, 0.3),
        transparent 30%
    );
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.rank-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--card-bg);
    border-radius: 23px;
    z-index: 1;
}

.rank-content {
    position: relative;
    z-index: 2;
}

.rank-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.5);
}

.rank-card.vip-plus {
    border-color: rgba(184, 41, 255, 0.5);
}

.rank-card.vip-plus::before {
    background: conic-gradient(
        transparent,
        rgba(184, 41, 255, 0.3),
        transparent 30%
    );
}

.rank-card.vip-plus-plus {
    border-color: rgba(255, 215, 0, 0.5);
}

.rank-card.vip-plus-plus::before {
    background: conic-gradient(
        transparent,
        rgba(255, 215, 0, 0.3),
        transparent 30%
    );
}

.rank-badge {
    font-size: 4rem;
    margin-bottom: 2rem;
    margin-top: -1rem;
    filter: drop-shadow(0 0 20px currentColor);
    transition: all 0.4s ease;
}

.rank-badge img {
    transition: all 0.4s ease;
}

.rank-card:hover .rank-badge img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px currentColor) drop-shadow(0 0 60px currentColor);
}

.rank-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.rank-card.vip .rank-name {
    color: var(--neon-blue);
}

.rank-card.vip-plus .rank-name {
    color: var(--neon-purple);
}

.rank-card.vip-plus-plus .rank-name {
    color: #ffd700;
}

.rank-price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.rank-period {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.rank-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.rank-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rank-features li::before {
    content: '✓';
    color: var(--neon-blue);
    font-weight: 900;
    font-size: 1.2rem;
}

.rank-card.vip-plus .rank-features li::before {
    color: var(--neon-purple);
}

.rank-card.vip-plus-plus .rank-features li::before {
    color: #ffd700;
}

.features-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.9) 0%, rgba(15, 20, 35, 0.7) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-blue);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .ranks-grid {
        grid-template-columns: 1fr;
    }

    .server-ip-box {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}
