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

:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --primary-glow: rgba(0, 212, 255, 0.6);
    --secondary: #1a1a2e;
    --dark: #0a0a14;
    --darker: #050508;
    --light: #ffffff;
    --accent: #7b68ee;
    --accent-pink: #ff006e;
    --ice: #e0f7fa;
    --snow: #f0f8ff;
    --gold: #ffd700;
    --neon-blue: #00f5ff;
    --neon-purple: #bf00ff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--darker);
    color: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(123, 104, 238, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(191, 0, 255, 0.05) 0%, transparent 70%),
        linear-gradient(180deg, var(--darker) 0%, var(--dark) 50%, #0d1b2a 100%);
    z-index: -2;
    animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Animated Grid Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

/* Snowflakes Enhanced */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -50px;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px var(--primary-glow);
    animation: fall linear infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes fall {
    0% {
        transform: translateY(-50px) rotate(0deg) translateX(0);
    }
    25% {
        transform: translateY(25vh) rotate(90deg) translateX(20px);
    }
    50% {
        transform: translateY(50vh) rotate(180deg) translateX(-20px);
    }
    75% {
        transform: translateY(75vh) rotate(270deg) translateX(20px);
    }
    100% {
        transform: translateY(100vh) rotate(360deg) translateX(0);
    }
}

@keyframes glow {
    0% { opacity: 0.4; filter: blur(0px); }
    100% { opacity: 1; filter: blur(0.5px); }
}

/* Navbar - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.9) 0%, rgba(26, 26, 46, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 1001;
}

.nav-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-blue) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    animation: brandGlow 3s ease-in-out infinite;
}

@keyframes brandGlow {
    0%, 100% { filter: drop-shadow(0 0 20px var(--primary-glow)); }
    50% { filter: drop-shadow(0 0 40px var(--primary-glow)) drop-shadow(0 0 60px rgba(123, 104, 238, 0.4)); }
}

.nav-brand span {
    background: linear-gradient(135deg, var(--light) 0%, var(--ice) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-brand i {
    margin-right: 0.5rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;
}

.nav-links a::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;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.nav-links a i {
    transition: transform 0.3s ease;
}

.nav-links a:hover i {
    transform: scale(1.3) rotate(10deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(0, 212, 255, 0.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    box-shadow: 0 0 10px var(--primary-glow);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section - Epic */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: heroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 104, 238, 0.3) 0%, transparent 70%);
    animation: heroGlow 6s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    max-width: 650px;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
}

.hero-content h1::before {
    content: 'ELITEGAMING';
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 212, 255, 0.3);
    animation: glitch 3s infinite;
    z-index: -1;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-5px, 5px); }
    94% { transform: translate(5px, -5px); }
    96% { transform: translate(-5px, -5px); }
    98% { transform: translate(5px, 5px); }
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-blue) 30%, var(--accent) 70%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tagline {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: var(--ice);
    text-shadow: 0 0 30px rgba(224, 247, 250, 0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.server-ip {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 104, 238, 0.1) 100%);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    transition: all 0.4s ease;
}

.server-ip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-glow), transparent 30%);
    animation: borderRotate 4s linear infinite;
    z-index: -1;
}

@keyframes borderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.server-ip:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.ip {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    background: linear-gradient(90deg, var(--primary), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.copy-btn {
    background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.copy-btn:hover {
    color: var(--dark);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: scale(1.05);
}

.copy-btn:hover::before {
    width: 300px;
    height: 300px;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-blue) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    color: var(--dark);
    padding: 1.2rem 4rem;
    border-radius: 60px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(0, 212, 255, 0.4),
        0 0 80px rgba(0, 212, 255, 0.2),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s backwards, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4), 0 0 80px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 10px 60px rgba(0, 212, 255, 0.6), 0 0 120px rgba(0, 212, 255, 0.4); }
}

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

.connect-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background-position: 100% 0;
    letter-spacing: 5px;
}

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

.connect-btn i {
    font-size: 1.2rem;
    animation: playPulse 1s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-image {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--neon-purple), var(--primary));
    background-size: 400% 400%;
    border-radius: 30px;
    z-index: -1;
    animation: borderGradient 8s ease infinite;
    filter: blur(20px);
    opacity: 0.6;
}

@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-image img {
    width: 550px;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 212, 255, 0.3);
    border: 3px solid rgba(0, 212, 255, 0.4);
    transition: all 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(0, 212, 255, 0.5);
}

/* About Section - Cards with 3D Effect */
.about {
    padding: 120px 5%;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.about h2, .founders h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about h2::after, .founders h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    border-radius: 2px;
}

.about h2 i, .founders h2 i {
    margin-right: 1rem;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    perspective: 1000px;
}

.about-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 26, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--neon-purple));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--primary);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2),
        inset 0 0 60px rgba(0, 212, 255, 0.05);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover::after {
    opacity: 1;
}

.about-card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    transition: all 0.4s ease;
}

.about-card:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 40px var(--primary-glow));
}

.about-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.about-card p {
    color: var(--ice);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Founders Section - Premium Cards */
.founders {
    padding: 120px 5%;
    position: relative;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 26, 0.98) 100%);
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 300px;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--neon-purple), var(--primary));
    background-size: 400% 400%;
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    animation: borderGradient 6s ease infinite;
    transition: opacity 0.5s ease;
}

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

.founder-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 212, 255, 0.3);
}

.founder-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.founder-avatar::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
    animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.founder-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 
        0 0 30px var(--primary-glow),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.founder-card:hover .founder-avatar img {
    transform: scale(1.1);
    border-color: var(--accent);
    box-shadow: 0 0 50px var(--primary-glow);
}

.founder-badge {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.founder-badge.co {
    background: linear-gradient(135deg, var(--accent) 0%, var(--neon-purple) 100%);
    color: var(--light);
}

.founder-badge.admin {
    background: linear-gradient(135deg, var(--gold) 0%, #ffaa00 100%);
    color: var(--dark);
}

.founder-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--light), var(--ice));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-card > p {
    color: var(--ice);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--light);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-5px) scale(1.2);
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.social-links a:hover::after {
    width: 100%;
}

/* Stats Section - Neon Counters */
.stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    padding: 100px 5%;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, rgba(123, 104, 238, 0.05) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

.stat-label {
    color: var(--ice);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Footer - Elegant */
footer {
    padding: 60px 5% 40px;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.95) 0%, rgba(5, 5, 8, 1) 100%);
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

footer > .footer-content > p {
    color: var(--ice);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--light);
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.7;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateY(-8px) scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

/* Responsive - Enhanced */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-image img {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }

    .hero-image {
        margin-top: 3rem;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 350px;
    }

    .server-ip {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(10, 10, 20, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.4s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hamburger {
        display: flex;
    }

    .stats {
        gap: 2rem;
        padding: 60px 5%;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .about h2, .founders h2 {
        font-size: 2rem;
    }
    
    .founders-grid {
        gap: 2rem;
    }
    
    .founder-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--dark);
}
