/* ============================================
   XMARKET - ULTIMATE GAMING STORE STYLES
   ============================================ */

/* --- 0. LOADING PROGRESS BAR --- */
.loading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-red), var(--purple), var(--green));
    z-index: 9999;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--purple);
    animation: progress-glow 1.5s ease-in-out infinite;
}

@keyframes progress-glow {
    0%, 100% {
        box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--purple);
    }
    50% {
        box-shadow: 0 0 20px var(--neon-red), 0 0 40px var(--purple), 0 0 60px var(--green);
    }
}

/* --- WILD PROMO BANNER --- */
.promo-banner-wild {
    position: relative;
    width: 100%;
    min-height: 50px;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 25%, #ff0844 50%, #8a2be2 75%, #ff0844 100%);
    background-size: 400% 400%;
    animation: wildGradient 8s ease infinite;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 8, 68, 0.5),
        inset 0 0 40px rgba(255, 8, 68, 0.2);
}

@keyframes wildGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.promo-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    animation: bannerBgMove 20s linear infinite;
}

@keyframes bannerBgMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.promo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.promo-particles::before,
.promo-particles::after {
    content: '💎';
    position: absolute;
    font-size: 14px;
    opacity: 0.3;
    animation: floatParticles 15s infinite;
}

.promo-particles::before {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.promo-particles::after {
    content: '🔥';
    right: 15%;
    top: 30%;
    animation-delay: 7s;
}

@keyframes floatParticles {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-10px) rotate(90deg) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translateY(0) rotate(180deg) scale(0.8);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-8px) rotate(270deg) scale(1.1);
        opacity: 0.4;
    }
}

.promo-content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: contentBounce 3s ease-in-out infinite;
    padding: 8px 20px;
}

@keyframes contentBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.promo-icon {
    font-size: 2.2rem;
    color: #fff;
    animation: iconSpin 4s linear infinite, iconPulse 2s ease-in-out infinite;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 8, 68, 0.6);
}

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes iconPulse {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); 
    }
    50% { 
        filter: brightness(1.5) drop-shadow(0 0 30px rgba(255, 8, 68, 0.8)); 
    }
}

.promo-discount {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 15px rgba(255, 8, 68, 0.8),
        0 0 20px rgba(138, 43, 226, 0.6),
        0 3px 0 rgba(0, 0, 0, 0.3);
    animation: discountShake 1s ease-in-out infinite, discountGlow 2s ease-in-out infinite;
    letter-spacing: 2px;
    white-space: nowrap;
}

@keyframes discountShake {
    0%, 100% { transform: rotate(-2deg); }
    25% { transform: rotate(2deg) scale(1.05); }
    50% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg) scale(1.05); }
}

@keyframes discountGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 8, 68, 0.8),
            0 0 30px rgba(138, 43, 226, 0.6),
            0 5px 0 rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 1),
            0 0 40px rgba(255, 8, 68, 1),
            0 0 60px rgba(138, 43, 226, 0.8),
            0 5px 0 rgba(0, 0, 0, 0.3);
    }
}

.promo-message {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 0 8px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.3);
    animation: messageWave 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes messageWave {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

/* Left Side Gaming Elements */
.promo-left-elements {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.promo-element-1 {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    animation: gamepadFloat 3s ease-in-out infinite;
}

@keyframes gamepadFloat {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.promo-element-2 {
    position: absolute;
    left: 25px;
    top: 20%;
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: trophyBounce 2s ease-in-out infinite;
}

@keyframes trophyBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(0.9) rotate(0deg); }
    75% { transform: scale(1.15) rotate(5deg); }
}

.promo-element-3 {
    position: absolute;
    left: 30px;
    bottom: 25%;
    font-size: 1.6rem;
    color: #ffeb3b;
    text-shadow: 0 0 25px rgba(255, 235, 59, 1);
    animation: boltZap 1.5s ease-in-out infinite;
}

@keyframes boltZap {
    0%, 100% { 
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateX(-8px) scale(1.3);
        opacity: 0.7;
    }
}

/* Right Side Gaming Elements */
.promo-right-elements {
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.promo-element-4 {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.7rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% { 
        transform: rotate(90deg) scale(1.3);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(180deg) scale(0.8);
        opacity: 1;
    }
    75% { 
        transform: rotate(270deg) scale(1.2);
        opacity: 0.7;
    }
}

.promo-element-5 {
    position: absolute;
    right: 25px;
    top: 20%;
    font-size: 1.6rem;
    color: #00ffff;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    animation: rocketLaunch 3s ease-in-out infinite;
}

@keyframes rocketLaunch {
    0%, 100% { 
        transform: translateY(0) rotate(45deg);
    }
    50% { 
        transform: translateY(-20px) rotate(35deg);
    }
}

.promo-element-6 {
    position: absolute;
    right: 30px;
    bottom: 25%;
    font-size: 1.5rem;
    color: #ff1493;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
    animation: crownSpin 4s linear infinite;
}

@keyframes crownSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Left Side Particles */
.promo-particle-left-1 {
    position: absolute;
    left: 60px;
    top: 15%;
    font-size: 0.9rem;
    color: #9b59b6;
    opacity: 0.7;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.8);
    animation: particleFloat1 4s ease-in-out infinite;
}

@keyframes particleFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    50% { transform: translate(-10px, -15px) rotate(180deg); opacity: 1; }
}

.promo-particle-left-2 {
    position: absolute;
    left: 80px;
    top: 65%;
    font-size: 1rem;
    color: #e74c3c;
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.8);
    animation: particleFloat2 3.5s ease-in-out infinite;
}

@keyframes particleFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(10px, 10px) scale(1.3); opacity: 0.9; }
}

.promo-particle-left-3 {
    position: absolute;
    left: 50px;
    bottom: 10%;
    font-size: 0.8rem;
    color: #ff69b4;
    opacity: 0.8;
    text-shadow: 0 0 15px rgba(255, 105, 180, 1);
    animation: particleHeart 2s ease-in-out infinite;
}

@keyframes particleHeart {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; }
}

.promo-particle-left-4 {
    position: absolute;
    left: 70px;
    top: 40%;
    font-size: 0.7rem;
    color: #f39c12;
    opacity: 0.5;
    text-shadow: 0 0 8px rgba(243, 156, 18, 0.8);
    animation: particleTwinkle1 2.5s ease-in-out infinite;
}

@keyframes particleTwinkle1 {
    0%, 100% { transform: rotate(0deg) scale(0.8); opacity: 0.5; }
    50% { transform: rotate(360deg) scale(1.2); opacity: 1; }
}

/* Right Side Particles */
.promo-particle-right-1 {
    position: absolute;
    right: 60px;
    top: 20%;
    font-size: 1rem;
    color: #f1c40f;
    opacity: 0.7;
    text-shadow: 0 0 12px rgba(241, 196, 15, 0.9);
    animation: particleCoins 3s ease-in-out infinite;
}

@keyframes particleCoins {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-12px) rotate(180deg); opacity: 1; }
}

.promo-particle-right-2 {
    position: absolute;
    right: 80px;
    top: 60%;
    font-size: 0.9rem;
    color: #3498db;
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.8);
    animation: particleMedal 4s ease-in-out infinite;
}

@keyframes particleMedal {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-8px, 8px) scale(1.2); opacity: 0.9; }
}

.promo-particle-right-3 {
    position: absolute;
    right: 50px;
    bottom: 15%;
    font-size: 1.1rem;
    color: #2ecc71;
    opacity: 0.7;
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.8);
    animation: particleShield 3.5s ease-in-out infinite;
}

@keyframes particleShield {
    0%, 100% { transform: rotate(0deg); opacity: 0.7; }
    50% { transform: rotate(20deg); opacity: 1; }
}

.promo-particle-right-4 {
    position: absolute;
    right: 70px;
    top: 35%;
    font-size: 0.8rem;
    color: #9b59b6;
    opacity: 0.6;
    text-shadow: 0 0 12px rgba(155, 89, 182, 0.9);
    animation: particleGhost 4.5s ease-in-out infinite;
}

@keyframes particleGhost {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50% { transform: translate(10px, -10px); opacity: 0.9; }
}

.promo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 8, 68, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowRotate 10s linear infinite;
    filter: blur(30px);
}

@keyframes glowRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.3); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-banner-wild {
        min-height: 45px;
        margin-top: 70px;
    }

    .promo-content {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        padding: 6px 10px;
    }

    .promo-icon {
        font-size: 1.6rem;
    }

    .promo-discount {
        font-size: 1.6rem;
    }

    .promo-message {
        font-size: 0.8rem;
    }

    /* Hide side elements and particles on mobile */
    .promo-left-elements,
    .promo-right-elements {
        display: none;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .promo-left-elements,
    .promo-right-elements {
        width: 100px;
    }

    .promo-particle-left-1,
    .promo-particle-left-2,
    .promo-particle-left-3,
    .promo-particle-left-4,
    .promo-particle-right-1,
    .promo-particle-right-2,
    .promo-particle-right-3,
    .promo-particle-right-4 {
        font-size: 0.6rem;
    }
}


/* --- 1. PARTICLES BACKGROUND --- */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    overflow: hidden;
}

.particles-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 90px 10px, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200px 200px;
    animation: particles-float 20s linear infinite;
}

@keyframes particles-float {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

/* --- 2. ENHANCED BODY WITH GRID --- */
body {
    background-color: var(--bg-black);
    background-image: 
        linear-gradient(rgba(155, 89, 182, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 89, 182, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-pan 15s linear infinite;
    position: relative;
    overflow-x: hidden;
}

/* Scanline overlay (kept from original) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 50%,
        rgba(255, 255, 255, 0.05) 50%
    );
    background-size: 100% 4px;
    animation: scanlines 0.2s linear infinite;
    z-index: -1;
    pointer-events: none;
}

/* Wild entrance animation for sections */
.container {
    opacity: 1;
    animation: containerFadeIn 0.6s ease-out;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 3. HERO SECTION - EPIC GAMING STYLE --- */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 2rem 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.3), transparent);
    top: -200px;
    right: -200px;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.2), transparent);
    bottom: -150px;
    left: -150px;
    animation: pulse-glow 5s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 1;
    animation: hero-fade-in 1s ease-out;
    margin: 0 auto;
}

@keyframes hero-fade-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(155, 89, 182, 0.2));
    border: 2px solid var(--neon-red);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge i {
    font-size: 20px;
    color: var(--neon-red);
    animation: icon-rotate 3s linear infinite;
}

@keyframes icon-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-badge span {
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}

.hero-title-line {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-primary);
    animation: slide-in-left 0.8s ease-out 0.2s backwards;
}

.hero-title-main {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-red), var(--purple), var(--blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite, slide-in-right 0.8s ease-out 0.4s backwards;
    text-shadow: 0 0 80px rgba(255, 51, 102, 0.5);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slide-in-left {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    animation: fade-in-up 1s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fade-in-up 1s ease-out 0.8s backwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--neon-red), #ff1744);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.6);
}

.hero-btn.secondary {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
}

.hero-btn.secondary:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.5);
}

.hero-btn i {
    font-size: 1.2rem;
    z-index: 1;
}

.hero-btn span {
    z-index: 1;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 1s ease-out 1s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-red);
    text-shadow: 0 0 20px rgba(255, 51, 102, 0.6);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    display: none;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.floating-card {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(155, 89, 182, 0.2));
    border: 2px solid var(--neon-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    backdrop-filter: blur(10px);
}

.floating-card i {
    font-size: 3rem;
    color: var(--neon-red);
}

.floating-card.card-1 {
    animation: float-1 4s ease-in-out infinite;
}

.floating-card.card-2 {
    top: 120px;
    left: 150px;
    animation: float-2 5s ease-in-out infinite;
}

.floating-card.card-3 {
    top: 240px;
    left: 50px;
    animation: float-3 6s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(-5deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 25px 1rem 30px;
    }
    
    .hero-title-line {
        font-size: 1.2rem;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-badge {
        margin-bottom: 15px;
        padding: 10px 20px;
    }
    
    .hero-title {
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .nav {
        padding: 0 1rem;
        height: 70px;
    }
    
    .nav-logo {
        font-size: 1.8rem;
    }
    
    .cart-icon-link {
        font-size: 1.4rem;
        margin-left: 1rem;
        padding: 8px;
    }
    
    .cart-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* --- 4. ULTIMATE GAMING HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(20, 15, 25, 0.95));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--neon-red), var(--purple), transparent) 1;
    box-shadow: 
        0 5px 40px rgba(255, 51, 102, 0.3),
        inset 0 -1px 0 rgba(255, 51, 102, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: header-slide-down 0.8s ease-out;
}

@keyframes header-slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 51, 102, 0.1),
        transparent
    );
    animation: header-shine 3s infinite;
}

@keyframes header-shine {
    0% { left: -100%; }
    100% { left: 200%; }
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 95%;
    position: relative;
}

.nav-logo {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-red), var(--purple), #ff1744);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-shadow: 0 0 30px rgba(255, 51, 102, 0.5);
    animation: logo-gradient 3s ease infinite, logo-float 4s ease-in-out infinite;
    position: relative;
    letter-spacing: 1px;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

@keyframes logo-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-logo:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 0 20px var(--neon-red));
}
.nav-quote {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: quote-pulse 3s ease-in-out infinite;
}

@keyframes quote-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 10px rgba(255, 51, 102, 0.2);
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
    }
}

@media (max-width: 992px) { 
    .nav-quote { display: none; }
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    @media (max-width: 768px) { display: none; }
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px 18px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-red), var(--purple));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    background: rgba(255, 51, 102, 0.1);
    border: 2px solid var(--neon-red);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: var(--neon-red);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.6);
}

@media (max-width: 768px) { 
    .nav-toggle { display: block; }
}

.mobile-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 75px;
    left: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(20, 15, 25, 0.98));
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: mobile-menu-slide 0.4s ease-out;
}

@keyframes mobile-menu-slide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active { display: flex; }

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(255, 51, 102, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-link:hover::before {
    transform: scaleY(1);
}

.mobile-link:hover {
    background: rgba(255, 51, 102, 0.1);
    color: var(--neon-red);
    padding-left: 2.5rem;
    text-shadow: 0 0 10px var(--neon-red);
}


/* --- 5. ENHANCED SECTION TITLES --- */
.zones-section {
    padding: 40px 0 20px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 30px;
    margin-top: 0;
    color: var(--neon-red);
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red),
        0 0 5px var(--blue);
    animation: textGlow 2s ease-in-out infinite, titleSlide 1.2s ease-out backwards;
}

.title-icon {
    display: inline-block;
    margin-right: 15px;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.title-underline {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-red), var(--purple), transparent);
    border-radius: 2px;
    animation: underline-expand 1.5s ease-out backwards;
}

@keyframes underline-expand {
    from { width: 0; opacity: 0; }
    to { width: 150px; opacity: 1; }
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px var(--neon-red), 0 0 15px var(--neon-red), 0 0 30px var(--neon-red);
    }
    50% {
        text-shadow: 0 0 10px var(--neon-red), 0 0 25px var(--neon-red), 0 0 50px var(--neon-red);
    }
}
.cyber-glitch {
    animation: text-glitch 2s infinite;
}


/* --- 6. ULTIMATE ZONE CARDS --- */
.zone-navigation {
    display: grid;
    gap: 1.5rem;
    margin-top: 0 !important;
    padding-top: 0;
    grid-template-columns: repeat(2, 1fr); 
    perspective: 1500px;
    animation: fadeInGrid 1.2s ease-out backwards;
}

/* 4 columns for PC/Desktop */
@media (min-width: 1024px) {
    .zone-navigation {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 3 columns for Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .zone-navigation {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 2 columns for Mobile */
@media (max-width: 767px) {
    .zone-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@keyframes fadeInGrid {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zone-card-skeleton {
    height: 350px;
    width: 100%;
    border-radius: 20px;
}

.zone-card {
    height: 350px;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zone-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 51, 102, 0.3),
        inset 0 0 50px rgba(255, 51, 102, 0.05);
}

.zone-card:hover .zone-card-inner {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 51, 102, 0.4),
        0 0 0 2px var(--neon-red),
        0 0 30px rgba(255, 51, 102, 0.6),
        inset 0 0 80px rgba(255, 51, 102, 0.1);
}

.zone-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.zone-card:hover .zone-card-front {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.zone-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
    transition: all 0.5s ease;
}

.zone-card:hover .zone-card-overlay {
    background: linear-gradient(
        to top, 
        rgba(255, 51, 102, 0.6) 0%,
        rgba(155, 89, 182, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.zone-card-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 51, 102, 0.3);
    z-index: 2;
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.zone-card:hover .zone-card-title {
    transform: translateY(-5px);
    text-shadow: 
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red),
        0 5px 15px rgba(0, 0, 0, 0.5);
}

.zone-card-back {
    display: none;
}

/* Staggered animation for zone cards */
.zone-card:nth-child(1) { animation-delay: 0.1s; }
.zone-card:nth-child(2) { animation-delay: 0.2s; }
.zone-card:nth-child(3) { animation-delay: 0.3s; }
.zone-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes zoneCardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive zones - Mobile adjustments */
@media (max-width: 767px) {
    .zone-card {
        height: 200px;
    }
    
    .zone-card-skeleton {
        height: 200px;
    }
    
    .zone-card-title {
        font-size: 1.1rem;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .zone-card {
        height: 280px;
    }
    
    .zone-card-skeleton {
        height: 280px;
    }
}
/* --- 7. ENHANCED BRAND SLIDER --- */
.hero-slider {
    width: 100%;
    height: 350px; 
    overflow: hidden;
    position: relative;
    margin: 40px 0 30px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    animation: slideInUp 1s ease-out backwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll-rtl 45s linear infinite;
    gap: 15px;
}

.slider-image {
    height: 320px; 
    aspect-ratio: 9 / 16; 
    width: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 
        0 10px 40px rgba(255, 51, 102, 0.3),
        0 0 0 1px rgba(255, 51, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.9) saturate(1.1);
}

.slider-image:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(255, 51, 102, 0.5),
        0 0 40px rgba(155, 89, 182, 0.4),
        0 0 0 2px var(--neon-red);
    filter: brightness(1.1) saturate(1.3);
    z-index: 10;
}


/* --- 8. ENHANCED ABOUT US SECTION --- */
.about-us {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 20px;
    padding: 10px 0;
    align-items: stretch;
    animation: fadeInUp 1.2s ease-out backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .about-us {
        grid-template-columns: 1fr 1.5fr; 
    }
}

.about-card {
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.8), rgba(20, 20, 20, 0.9));
    padding: 2rem;
    border: 1px solid transparent;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(155, 89, 182, 0.3),
        inset 0 0 60px rgba(155, 89, 182, 0.05);
    height: 100%; 
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(155, 89, 182, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(155, 89, 182, 0.3),
        0 0 0 2px var(--purple),
        0 0 40px rgba(155, 89, 182, 0.4),
        inset 0 0 80px rgba(155, 89, 182, 0.1);
    border-color: rgba(155, 89, 182, 0.5);
}
.about-founder { 
    text-align: center; 
    position: relative;
    z-index: 1;
}

.about-founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--purple);
    margin: 0 auto 1rem auto;
    filter: drop-shadow(0 0 20px var(--purple));
    transition: all 0.4s ease;
    position: relative;
}

.about-founder-img:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 30px var(--neon-red));
    border-color: var(--neon-red);
}

.founder-name {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
}

.founder-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}
.about-mission-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.about-mission-container .section-title {
    margin-bottom: 1.5rem;
}
.about-mission {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem;
    align-items: stretch;
    height: 100%;
    flex-grow: 1;
}
@media (max-width: 600px) {
    .about-mission { grid-template-columns: 1fr; }
}

/* Mobile responsive enhancements */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .zones-section {
        padding: 25px 0 10px 0;
    }
    
    .about-us {
        margin-top: 15px;
        padding: 15px 0;
        gap: 1.2rem;
    }
    
    .about-card {
        padding: 1.3rem;
    }
    
    .about-founder-img {
        width: 100px;
        height: 100px;
    }
    
    .founder-name {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .founder-bio {
        font-size: 0.9rem;
    }
    
.about-mission-item {
        padding: 1.2rem;
    }
    
    .about-mission-item span {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .about-mission-item h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .about-mission-item p {
        font-size: 0.8rem;
    }
    
    .testimonials {
        padding: 15px 0 25px 0;
        margin-top: 15px;
    }
    
    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .testimonial-grid {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
    }
    
    .testimonial-form {
        padding: 1.5rem;
    }
    
    .testimonial-form h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-form > p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .input-group {
        margin-bottom: 1.2rem;
    }
    
    .cyber-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .hero-slider {
        height: 250px;
        margin: 15px 0;
    }
    
    .slider-image {
        height: 220px;
    }
}
.about-mission-item {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(30, 30, 30, 0.8));
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(155, 89, 182, 0.2);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(155, 89, 182, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-mission-item:hover::before {
    opacity: 1;
}

.about-mission-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--purple);
    box-shadow: 
        0 15px 40px rgba(155, 89, 182, 0.3),
        0 0 30px rgba(155, 89, 182, 0.2);
}

.about-mission-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
    color: var(--purple);
    text-shadow: 0 0 15px var(--purple);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-mission-item:hover span {
    transform: scale(1.15);
    color: var(--neon-red);
    text-shadow: 0 0 25px var(--neon-red);
}

.about-mission-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.about-mission-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4; 
    opacity: 0.8;
    position: relative;
    z-index: 1;
}


/* --- 9. ENHANCED TESTIMONIALS SECTION --- */
.testimonials {
    padding: 20px 0 30px 0;
    margin-top: 20px;
    animation: slideInUp 1.2s ease-out backwards;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--neon-red);
    text-shadow: 
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red);
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.8), rgba(20, 20, 20, 0.9));
    padding: 1.8rem;
    position: relative;
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 60px rgba(155, 89, 182, 0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: rgba(255, 51, 102, 0.15);
    font-weight: 900;
    font-family: Georgia, serif;
    z-index: 0;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 
        0 20px 60px rgba(155, 89, 182, 0.3),
        0 0 40px rgba(155, 89, 182, 0.2),
        inset 0 0 80px rgba(155, 89, 182, 0.1);
}

.testimonial-card:hover::before {
    color: rgba(255, 51, 102, 0.3);
    transform: scale(1.2);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--purple);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 2;
}

/* --- 10. ENHANCED TESTIMONIAL FORM --- */
.testimonial-form {
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.9), rgba(20, 20, 20, 0.95));
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 25px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 
        0 20px 60px rgba(255, 51, 102, 0.2),
        0 0 0 1px rgba(255, 51, 102, 0.1),
        inset 0 0 80px rgba(255, 51, 102, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 51, 102, 0.05),
        transparent
    );
    transform: rotate(45deg);
    animation: form-shimmer 3s linear infinite;
}

@keyframes form-shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.testimonial-form:hover {
    border-color: rgba(255, 51, 102, 0.6);
    box-shadow: 
        0 25px 80px rgba(255, 51, 102, 0.3),
        0 0 0 1px rgba(255, 51, 102, 0.3),
        inset 0 0 100px rgba(255, 51, 102, 0.1);
}

.testimonial-form h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--neon-red);
    text-shadow: 0 0 15px var(--neon-red);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-form > p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(155, 89, 182, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    font-family: inherit;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--neon-red);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 0 20px rgba(255, 51, 102, 0.3),
        inset 0 0 20px rgba(255, 51, 102, 0.1);
    transform: translateY(-2px);
}

.input-group label {
    position: absolute;
    top: 16px;
    left: 18px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--neon-red);
    background: linear-gradient(to bottom, transparent 50%, var(--bg-black) 50%);
    padding: 0 8px;
    font-weight: 600;
}

.cyber-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--neon-red), #ff1744);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 10px 30px rgba(255, 51, 102, 0.4),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cyber-btn:hover::before {
    width: 400px;
    height: 400px;
}

.cyber-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 50px rgba(255, 51, 102, 0.6),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cyber-btn:active {
    transform: translateY(-1px);
}
.form-message {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    display: none;
}
.form-message.success { color: var(--green); }
.form-message.error { color: var(--neon-red); }


/* --- 8. ULTIMATE GAMING FOOTER --- */
.footer {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95), rgba(20, 15, 25, 1));
    color: var(--text-secondary);
    padding: 1rem 0 0.8rem;
    margin-top: 20px;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--neon-red), var(--purple), transparent) 1;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-socials { 
    display: flex; 
    gap: 1rem; 
}

.social-link { 
    font-size: 1.5rem; 
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-red), var(--purple));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover { 
    color: #fff;
    transform: scale(1.1);
    border-color: var(--neon-red);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4);
}

.footer-links { 
    display: flex; 
    gap: 1.2rem; 
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link { 
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--neon-red);
    transition: transform 0.3s ease;
}

.footer-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.footer-link:hover { 
    color: #fff;
    background: rgba(255, 51, 102, 0.1);
}

.footer-credit { 
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.15);
}

/* --- 11. ENHANCED WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    box-shadow: 
        0 10px 30px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(37, 211, 102, 0.4),
            0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 
        0 15px 40px rgba(37, 211, 102, 0.6),
        0 0 0 0 rgba(37, 211, 102, 0);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(1.05) rotate(0deg);
}

/* Header scroll effect */
.header.scrolled {
    background: linear-gradient(135deg, rgba(10, 10, 15, 1), rgba(20, 15, 25, 1));
    box-shadow: 0 10px 50px rgba(255, 51, 102, 0.5);
    border-image: linear-gradient(90deg, transparent, var(--purple), var(--neon-red), transparent) 1;
}

.header.scrolled .nav {
    height: 65px;
}

.header.scrolled .nav-logo {
    font-size: 2rem;
}

/* Responsive WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 2.3rem;
        bottom: 20px;
        right: 20px;
    }
}

/* --- 10. ALL KEYFRAME ANIMATIONS --- */
@keyframes neon-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 0 0 4px var(--neon-red), 0 0 10px var(--neon-red), 0 0 20px var(--neon-red);
    }
    20%, 24%, 55% { text-shadow: none; }
}
@keyframes gradient-rotate {
    0% { border-image-source: linear-gradient(90deg, var(--neon-red), var(--purple), var(--blue)); }
    50% { border-image-source: linear-gradient(90deg, var(--purple), var(--blue), var(--neon-red)); }
    100% { border-image-source: linear-gradient(90deg, var(--blue), var(--neon-red), var(--purple)); }
}
@keyframes scroll-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 4px; }
}
@keyframes text-glitch {
    0% { text-shadow: 0 0 5px var(--neon-red), 0 0 2px var(--blue); }
    25% { text-shadow: 2px 2px 5px var(--blue), -2px -2px 2px var(--neon-red); }
    50% { text-shadow: 0 0 5px var(--neon-red), 0 0 2px var(--blue); }
    75% { text-shadow: -2px 2px 5px var(--blue), 2px -2px 2px var(--neon-red); }
    100% { text-shadow: 0 0 5px var(--neon-red), 0 0 2px var(--blue); }
}
@keyframes wild-glow-pulse {
    from { box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red); }
    to { box-shadow: 0 0 20px var(--neon-red), 0 0 40px var(--neon-red), 0 0 5px #fff; }
}
@keyframes grid-pan {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Particle animation */
@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) translateX(100px);
        opacity: 0;
    }
}
@keyframes logo-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0px); }
}
@keyframes glitch-border {
    0% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    10% { clip-path: polygon(0 10px, 100% 0, 100% 100%, 0 100%); }
    20% { clip-path: polygon(0 10px, 100% 0, 100% 90%, 0 100%); }
    30% { clip-path: polygon(0 10px, 100% 20px, 100% 90%, 0 100%); }
    40% { clip-path: polygon(0 0, 100% 20px, 100% 90%, 0 100%); }
    50% { clip-path: polygon(0 0, 100% 20px, 100% 100%, 0 80%); }
    60% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
    70% { clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 80%); }
    80% { clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%); }
    90% { clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%); }
    100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}
/* --- 10. ALL KEYFRAME ANIMATIONS --- */
/* ... (keep all your existing keyframes) ... */

/* NEW: For the "unstable" card flicker */
@keyframes card-flicker {
    0%, 100% { border-color: rgba(155, 89, 182, 0.5); }
    50% { border-color: rgba(155, 89, 182, 1); }
}

/* NEW: For the "wild" card shake on hover */
@keyframes card-shake {
    0%, 100% { transform: scale(1.05) rotateZ(-1deg) translateX(0); }
    25% { transform: scale(1.05) rotateZ(-1deg) translateX(-2px); }
    50% { transform: scale(1.05) rotateZ(-1deg) translateX(2px); }
    75% { transform: scale(1.05) rotateZ(-1deg) translateX(-2px); }
}

/* NEW: For the data-scan lines */
@keyframes data-scan {
    0% { transform: translateY(-10px); opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    90% { transform: translateY(300px); opacity: 1; }
    100% { transform: translateY(310px); opacity: 0; }
}
/* CYBERPUNK CART DRAWER */

/* Drawer Container */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.cart-drawer.open {
    pointer-events: all;
}

/* Overlay */
.cart-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.cart-drawer.open .cart-drawer-overlay {
    background: rgba(0, 0, 0, 0.8);
}

/* Drawer Content - CYBER STYLE */
.cart-drawer-content {
    position: absolute;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1f2e 100%);
    box-shadow: -5px 0 30px rgba(255, 51, 51, 0.5), 
                inset -5px 0 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 3px solid #ff3333;
}

.cart-drawer.open .cart-drawer-content {
    right: 0;
}

/* Header - CYBER STYLE */
.cart-drawer-header {
    padding: 25px 20px;
    border-bottom: 2px solid rgba(255, 51, 51, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), transparent);
    position: relative;
}

.cart-drawer-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff3333, transparent);
    box-shadow: 0 0 10px #ff3333;
}

.cart-drawer-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff3333;
}

.cart-drawer-close {
    background: none;
    border: 2px solid rgba(255, 51, 51, 0.5);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #ff3333;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-drawer-close:hover {
    color: #fff;
    background: #ff3333;
    transform: rotate(90deg);
    box-shadow: 0 0 20px #ff3333;
}

/* Items Container - CYBER STYLE */
.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    color: #666;
    padding: 60px 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(102, 102, 102, 0.5);
}

/* Cart Item - CYBER STYLE */
.cart-drawer-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.05), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 8px;
    align-items: center;
    transition: all 0.3s ease;
}

.cart-drawer-item:hover {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(0, 0, 0, 0.3));
    border-color: rgba(255, 51, 51, 0.5);
    transform: translateX(-5px);
    box-shadow: 5px 0 20px rgba(255, 51, 51, 0.3);
}

.cart-drawer-item img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.2);
    transition: all 0.3s ease;
}

.cart-drawer-item:hover img {
    border-color: rgba(255, 51, 51, 0.6);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.4);
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-type {
    margin: 0 0 5px 0;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item-price {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Quantity Controls - CYBER STYLE */
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 6px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.3);
}

.cart-item-qty button {
    background: rgba(255, 51, 51, 0.2);
    border: 1px solid rgba(255, 51, 51, 0.4);
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 16px;
    color: #ff3333;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 700;
}

.cart-item-qty button:hover {
    background: #ff3333;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.6);
}

.cart-item-qty span {
    min-width: 25px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

/* Remove Button - CYBER STYLE */
.cart-item-remove {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 50%;
    color: #ff3333;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: #ff3333;
    color: #fff;
    transform: scale(1.2) rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.8);
}

/* Footer - CYBER STYLE */
.cart-drawer-footer {
    padding: 25px 20px;
    border-top: 2px solid rgba(255, 51, 51, 0.3);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.cart-summary {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #aaa;
    font-size: 14px;
}

.summary-row.total-row {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 51, 51, 0.3);
}

.discount-row {
    color: #00ff88;
}

.discount-amount {
    color: #00ff88;
    font-weight: 700;
}

.cart-drawer-checkout {
    width: 100%;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.cart-drawer-checkout:hover {
    background: linear-gradient(135deg, #00cc6a 0%, #00ff88 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
}

.cart-drawer-checkout i {
    font-size: 20px;
}

/* Coupon Section - CYBER STYLE */
.cart-coupon-section {
    padding: 15px 20px;
    border-top: 2px solid rgba(255, 51, 51, 0.2);
    border-bottom: 2px solid rgba(255, 51, 51, 0.2);
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input-group input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 6px;
    padding: 10px 12px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-input-group input:focus {
    outline: none;
    border-color: #ff3333;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.4);
}

.coupon-input-group button {
    background: linear-gradient(135deg, #ff3333, #cc0000);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.coupon-input-group button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.6);
}

.coupon-message {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-message.success {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.coupon-message.error {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.coupon-note {
    margin-top: 8px;
    font-size: 11px;
    color: #666;
    text-align: center;
}

.cart-promo-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff3333, #cc0000);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-drawer-content {
        width: 100%;
        right: -100%;
    }
}

/* Cyber Notification Popup */
.simple-popup {
    position: fixed;
    bottom: 20px;
    right: -400px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(10, 10, 15, 0.95));
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid rgba(0, 255, 136, 0.5);
    font-size: 14px;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3);
    transition: right 0.3s ease;
    z-index: 10000;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.simple-popup.show {
    right: 20px;
    animation: cyberPulse 2s ease-in-out infinite;
}

@keyframes cyberPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 8px 40px rgba(0, 255, 136, 0.6); }
}

/* Cart Icon Link - ULTIMATE STYLE */
.cart-icon-link {
    position: relative;
    color: white;
    font-size: 1.6rem;
    margin-left: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.cart-icon-link:hover::before {
    opacity: 0.2;
}

.cart-icon-link:hover {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 1);
    transform: scale(1.15) rotate(10deg);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.4);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 
        0 0 15px rgba(0, 255, 136, 0.8),
        0 3px 10px rgba(0, 0, 0, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
    border: 2px solid rgba(10, 10, 15, 1);
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.8), 0 3px 10px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.15); 
        box-shadow: 0 0 30px rgba(0, 255, 136, 1), 0 5px 15px rgba(0, 0, 0, 0.4);
    }
}
     








/* ✅ HOMEPAGE SPACING FIXES */

/* 1. Reduced space after header */
.section-title.cyber-glitch {
    margin-top: 60px;
    margin-bottom: 20px;
}

/* 2. Minimal space between "OUR ZONES" and zone cards */
.zone-navigation.container {
    margin-top: 0;
    padding-top: 0;
}

/* 3. Reduce space between sections */
.hero-slider {
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-us.container {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* 4. Testimonials spacing */
.testimonials.container {
    margin-top: 20px;
    padding-bottom: 20px;
}

.testimonials h2 {
    margin-bottom: 15px;
}

.testimonial-grid {
    margin-bottom: 25px;
}

.testimonial-form {
    margin-bottom: 0;
}








/* Mobile footer adjustments */
@media (max-width: 768px) {
.footer {
        padding: 0.8rem 0 0.6rem;
        margin-top: 15px;
}

.footer-container {
        gap: 0.6rem;
}

.footer-socials {
        gap: 0.8rem;
}

.social-link {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
}

.footer-links {
        gap: 0.8rem;
        flex-direction: column;
}

.footer-link {
        font-size: 0.75rem;
        padding: 3px 8px;
}

.footer-credit {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
}










