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

:root {
    --neon-blue: #00d4ff;
    --plasma-red: #ff0066;
    --deep-violet: #6a0dad;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, var(--neon-blue), var(--deep-violet));
    --gradient-secondary: linear-gradient(135deg, var(--plasma-red), var(--deep-violet));
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Animated Background */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.3);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 8, 0.3);
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--accent-glow);
}

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

.nav-links a.active {
    color: var(--neon-blue);
}

.nav-links a.active::before {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--neon-blue);
    margin: 3px 0;
    transition: 0.3s;
}

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

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.5);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 20px 0;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease-out;
    transform-origin: top;
    /* Fallback for browsers that don't support backdrop-filter */
    background-image: linear-gradient(145deg, rgba(5, 5, 8, 0.5), rgba(10, 10, 15, 0.5));
}

.nav-links.mobile-active li {
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInItem 0.3s ease-out forwards;
}

.nav-links.mobile-active li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links.mobile-active li:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-links.mobile-active li:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-links.mobile-active li:nth-child(4) {
    animation-delay: 0.25s;
}

.nav-links.mobile-closing {
    animation: slideUp 0.2s ease-in forwards;
}

.nav-links.mobile-closing li {
    animation: fadeOutItem 0.15s ease-in forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 300px;
    }
}

@keyframes slideUp {
    0% {
        opacity: 1;
        transform: translateY(0);
        max-height: 300px;
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
}

@keyframes fadeInItem {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutItem {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Mobile menu overlay for better touch detection */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(106, 13, 173, 0.1) 0%, transparent 70%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon-blue);
}

.btn-secondary:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* Gaming Setup Scene */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.4s both;
}

.gaming-setup {
    position: relative;
    width: 500px;
    height: 400px;
    perspective: 1000px;
}

.gaming-setup::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 212, 255, 0.15) 20%,
            rgba(0, 212, 255, 0.3) 50%,
            rgba(0, 212, 255, 0.15) 80%,
            transparent 100%);
    border-radius: 50%;
    filter: blur(2px);
}

.gaming-setup::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(1px);
}

.gaming-monitor {
    width: 350px;
    height: 200px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 15px;
    position: relative;
    margin: 0 auto -20px auto;
    border: 8px solid #2a2a3e;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 120px rgba(0, 212, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 212, 255, 0.2);
    animation: monitorGlow 3s ease-in-out infinite alternate;
}

@keyframes monitorGlow {
    0% {
        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.7),
            0 0 120px rgba(0, 212, 255, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(0, 212, 255, 0.2),
            0 0 80px rgba(0, 212, 255, 0.1);
    }

    100% {
        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.7),
            0 0 150px rgba(0, 212, 255, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(0, 212, 255, 0.3),
            0 0 120px rgba(0, 212, 255, 0.2);
    }
}

.monitor-screen {
    width: 99%;
    height: 99%;
    background: linear-gradient(135deg, #000814, #001d3d, #003566);
    margin: 0.5% auto;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 0 60px rgba(0, 212, 255, 0.3),
        inset 0 2px 8px rgba(0, 0, 0, 0.5);
}

.screen-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--neon-blue);
    font-family: 'Orbitron', monospace;
}

.game-logo {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 0 20px currentColor;
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 1px;
}

.game-stats {
    font-size: 11px;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: 500;
}

.monitor-stand {
    width: 60px;
    height: 90px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    margin: 12px auto 0;
    border-radius: 0 0 20px 20px;
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.7),
        0 8px 25px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 2px solid #1a1a2e;
    border-top: none;
    z-index: -1;
}

.monitor-stand::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 10px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 10px;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(0, 212, 255, 0.15);
    border: 1px solid #1a1a2e;
    z-index: -1;
}

.monitor-stand::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 10px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 50px;
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid #1a1a2e;
    z-index: -1;
}

.keyboard {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 80px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 12px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 212, 255, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(0, 212, 255, 0.1);
    z-index: 3;
}

.keyboard::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 12px,
            transparent 12px,
            transparent 16px);
    border-radius: 8px;
}

.gaming-mouse {
    position: absolute;
    bottom: 40px;
    right: 35px;
    width: 40px;
    height: 60px;
    background: linear-gradient(145deg, #3a3a4e, #2a2a3e);
    border-radius: 20px 20px 15px 15px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 102, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(255, 0, 102, 0.1);
    animation: mouseGlow 2s ease-in-out infinite alternate;
    z-index: 3;
}

@keyframes mouseGlow {
    0% {
        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(255, 0, 102, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.5),
            0 0 50px rgba(255, 0, 102, 0.6),
            inset 0 2px 0 rgba(255, 255, 255, 0.1);
    }
}

.gaming-mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 15px;
    background: rgba(255, 0, 102, 0.5);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 0, 102, 0.8);
}

.headset {
    position: absolute;
    bottom: 55px;
    left: 15px;
    width: 80px;
    height: 70px;
    transform: rotate(-12deg);
    z-index: 3;
}

.headset-band {
    width: 80px;
    height: 12px;
    background: linear-gradient(145deg, #3a3a4e, #2a2a3e);
    border-radius: 40px 40px 20px 20px;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scaleY(0.8);
}

.headset-band::before {
    content: '';
    position: absolute;
    left: 8px;
    bottom: -18px;
    width: 3px;
    height: 20px;
    background: linear-gradient(145deg, #3a3a4e, #2a2a3e);
    border-radius: 2px;
    transform: rotate(-10deg);
}

.headset-band::after {
    content: '';
    position: absolute;
    right: 8px;
    bottom: -18px;
    width: 3px;
    height: 20px;
    background: linear-gradient(145deg, #3a3a4e, #2a2a3e);
    border-radius: 2px;
    transform: rotate(10deg);
}

.headset-cups {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 8px;
}

.headset-cup {
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, #4a4a5e, #3a3a4e);
    border-radius: 50%;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(106, 13, 173, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    animation: headsetPulse 3s ease-in-out infinite;
    position: relative;
}

.headset-cup::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: linear-gradient(145deg, #3a3a4e, #2a2a3e);
    border-radius: 2px;
}

@keyframes headsetPulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 25px rgba(106, 13, 173, 0.3);
    }

    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 35px rgba(106, 13, 173, 0.6);
    }
}

.gaming-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gaming-particles::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 120%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 212, 255, 0.3) 30%,
            transparent 50%,
            rgba(255, 0, 102, 0.2) 70%,
            transparent 100%);
    animation: scanLine 4s ease-in-out infinite;
}

@keyframes scanLine {

    0%,
    100% {
        transform: translateY(0) scaleX(0.5);
        opacity: 0.3;
    }

    50% {
        transform: translateY(300px) scaleX(1);
        opacity: 0.8;
    }
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: floatParticle 4s ease-in-out infinite;
    opacity: 0.8;
}

.particle-dot:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    background: var(--plasma-red);
    box-shadow: 0 0 15px currentColor;
}

.particle-dot:nth-child(2) {
    top: 65%;
    left: 85%;
    animation-delay: 1s;
    background: var(--neon-blue);
    box-shadow: 0 0 12px currentColor;
}

.particle-dot:nth-child(3) {
    top: 35%;
    left: 10%;
    animation-delay: 2s;
    background: var(--deep-violet);
    box-shadow: 0 0 18px currentColor;
}

.particle-dot:nth-child(4) {
    top: 85%;
    left: 75%;
    animation-delay: 3s;
    background: #00ff88;
    box-shadow: 0 0 14px currentColor;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-25px) scale(1.3);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes float3D {

    0%,
    100% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(0px);
    }

    50% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(-20px);
    }
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: var(--darker-bg);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* store Categories */
.stores {
    padding: 100px 0;
}

.stores-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.store-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.store-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.store-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.store-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
}

.store-card:hover .store-icon {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-blue);
    transform: scale(1.05);
}

.store-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.store-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Disclaimer */
.disclaimer {
    background: var(--dark-bg);
    padding: 20px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.disclaimer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.disclaimer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
}

.footer-brand {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-blue);
}

.newsletter {
    display: flex;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px 0 0 25px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
}

.newsletter button {
    padding: 12px 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0 25px 25px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    transform: translateX(2px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-secondary);
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .gaming-setup {
        width: 400px;
        height: 350px;
        margin: 0 auto;
    }

    .gaming-monitor {
        width: 280px;
        height: 160px;
    }

    .monitor-stand {
        width: 55px;
        height: 75px;
    }

    .monitor-stand::before {
        width: 100px;
        height: 12px;
    }

    .monitor-stand::after {
        width: 120px;
        height: 10px;
    }

    .keyboard {
        width: 240px;
        height: 70px;
        bottom: 40px;
    }

    .gaming-mouse {
        width: 35px;
        height: 55px;
        bottom: 35px;
        right: 30px;
    }

    .headset {
        width: 70px;
        height: 65px;
        bottom: 50px;
        left: 10px;
        transform: rotate(-12deg) scale(0.9);
    }

    .headset-band {
        width: 70px;
        height: 10px;
        margin-bottom: 6px;
    }

    .headset-band::before,
    .headset-band::after {
        width: 2px;
        height: 16px;
        bottom: -14px;
    }

    .headset-cups {
        margin-top: 6px;
    }

    .headset-cup {
        width: 28px;
        height: 28px;
    }

    .headset-cup::before {
        width: 3px;
        height: 10px;
        top: -6px;
    }

    .stats-container,
    .stores-container,
    .footer-container {
        padding: 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 15px;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .gaming-setup {
        width: 320px;
        height: 280px;
    }

    .gaming-monitor {
        width: 240px;
        height: 135px;
    }

    .monitor-stand {
        width: 45px;
        height: 65px;
    }

    .monitor-stand::before {
        width: 85px;
        height: 10px;
    }

    .monitor-stand::after {
        width: 100px;
        height: 8px;
    }

    .keyboard {
        width: 200px;
        height: 60px;
        bottom: 30px;
    }

    .gaming-mouse {
        width: 30px;
        height: 45px;
        bottom: 25px;
        right: 25px;
    }

    .headset {
        width: 60px;
        height: 55px;
        bottom: 40px;
        left: 8px;
        transform: rotate(-12deg) scale(0.8);
    }

    .headset-band {
        width: 60px;
        height: 9px;
        margin-bottom: 5px;
    }

    .headset-band::before,
    .headset-band::after {
        width: 2px;
        height: 14px;
        bottom: -12px;
    }

    .headset-cups {
        margin-top: 5px;
    }

    .headset-cup {
        width: 24px;
        height: 24px;
    }

    .headset-cup::before {
        width: 2px;
        height: 8px;
        top: -5px;
    }

    .btn {
        width: 180px;
        padding: 12px 25px;
        font-size: 15px;
    }

    .stats-container,
    .stores-container,
    .footer-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .store-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .store-card {
        padding: 30px 20px;
    }
}

@media (max-width: 320px) {
    .gaming-setup {
        width: 280px;
        height: 240px;
    }

    .gaming-monitor {
        width: 200px;
        height: 115px;
    }

    .keyboard {
        width: 170px;
        height: 50px;
        bottom: 25px;
    }

    .gaming-mouse {
        width: 25px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .headset {
        width: 50px;
        height: 45px;
        bottom: 35px;
        left: 5px;
        transform: rotate(-15deg) scale(0.7);
    }

    .headset .headset-band {
        width: 50px;
        height: 4px;
    }

    .headset .headset-cups {
        width: 100%;
        height: 20px;
    }

    .headset .headset-cup {
        width: 20px;
        height: 20px;
    }

    .headset .headset-cups::before,
    .headset .headset-cups::after {
        width: 1.5px;
        height: 8px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        width: 160px;
        padding: 10px 20px;
        font-size: 14px;
    }
}
