/* ═══════════════════════════════════════════
   FUTURISTIC HOMEPAGE SECTIONS
   Holographic effects, particle integration, cosmic animations
═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   EXTRAORDINARY HERO SECTION — never seen before
═══════════════════════════════════════════ */
.hero-extraordinary {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 1.25rem 4rem;
    background: radial-gradient(ellipse at center, rgba(0,240,255,0.08) 0%, transparent 70%);
}

/* Dynamic particle field */
.hero-particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0,240,255,0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,240,255,0.6), 0 0 20px rgba(0,240,255,0.4);
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 85%; animation-delay: 1s; }
.particle-3 { top: 80%; left: 20%; animation-delay: 2s; }
.particle-4 { top: 30%; left: 75%; animation-delay: 3s; }
.particle-5 { top: 70%; left: 50%; animation-delay: 4s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

/* Energy field rings */
.hero-energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,240,255,0.15);
    pointer-events: none;
    z-index: 1;
}

.ring-1 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse1 12s ease-in-out infinite;
}

.ring-2 {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse2 15s ease-in-out infinite;
}

.ring-3 {
    width: 1000px;
    height: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse3 18s ease-in-out infinite;
}

@keyframes ringPulse1 {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1) rotate(180deg); opacity: 0.6; }
}

@keyframes ringPulse2 {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.05) rotate(-180deg); opacity: 0.5; }
}

@keyframes ringPulse3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.03) rotate(180deg); opacity: 0.4; }
}

/* Holographic floating elements */
.hero-holo-float {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(255,0,170,0.2));
    border: 1px solid rgba(0,240,255,0.3);
    pointer-events: none;
    z-index: 1;
    animation: holoFloat 10s ease-in-out infinite;
}

.holo-1 { top: 15%; right: 20%; animation-delay: 0s; }
.holo-2 { top: 75%; left: 15%; animation-delay: 2s; }
.holo-3 { bottom: 20%; right: 10%; animation-delay: 4s; }

@keyframes holoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.8; }
}

/* Main content wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

/* Glitch effect badge */
.hero-badge {
    position: relative;
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(0,240,255,0.4);
    border-radius: 999px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,240,255,0.4), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.badge-text {
    position: relative;
    z-index: 2;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Holographic title */
.hero-title {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.title-line {
    display: block;
    position: relative;
    z-index: 2;
}

.title-line-2 {
    background: linear-gradient(135deg, #00f0ff, #ff00aa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,240,255,0.1) 2px,
        rgba(0,240,255,0.1) 4px
    );
    animation: glitchScan 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes glitchScan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Cosmic subtitle */
.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f0ff, #ff00aa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(0,240,255,0.5), transparent);
}

/* CTA group */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-cta-primary,
.hero-cta-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-primary {
    background: linear-gradient(135deg, rgba(0,240,255,0.9), rgba(255,0,170,0.9));
    border: 1px solid rgba(0,240,255,0.5);
    box-shadow: 0 4px 20px rgba(0,240,255,0.3);
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, #00f0ff, #ff00aa);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0,240,255,0.5), 0 0 20px rgba(255,0,170,0.3);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.cta-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover .cta-icon {
    transform: translateX(5px);
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta-primary:hover .cta-particles {
    opacity: 1;
    animation: ctaPulse 1s ease-in-out infinite;
}

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

.hero-cta-secondary {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(0,240,255,0.4);
}

.hero-cta-secondary:hover {
    background: rgba(0,240,255,0.15);
    border-color: rgba(0,240,255,0.7);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,240,255,0.3);
}

.cta-border-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0,240,255,0.5), rgba(255,0,170,0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.hero-cta-secondary:hover .cta-border-glow {
    opacity: 1;
}

/* Trust indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.trust-icon {
    font-size: 1.1rem;
}

/* Product showcase */
.hero-product-showcase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.product-float {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(0,240,255,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: productFloat 12s ease-in-out infinite;
}

.product-1 { top: 25%; right: 8%; animation-delay: 0s; }
.product-2 { bottom: 30%; left: 5%; animation-delay: 3s; }

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0,240,255,0.3), transparent);
    border-radius: 50%;
    animation: productGlow 3s ease-in-out infinite;
}

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

.product-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.3rem;
}

.product-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00f0ff;
}

.product-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

/* Ambient light effects */
.hero-ambient-light {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.light-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
    background: rgba(0,240,255,0.15);
    animation: ambientPulse1 8s ease-in-out infinite;
}

.light-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 15%;
    background: rgba(255,0,170,0.12);
    animation: ambientPulse2 10s ease-in-out infinite;
}

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

@keyframes ambientPulse2 {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0.9; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-extraordinary {
        padding: 6rem 1rem 3rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
    }

    .product-float {
        display: none;
    }

    .hero-trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ═══════════════════════════════════════════
   HOLOGRAPHIC SOCIAL PROOF TICKER
═══════════════════════════════════════════ */
.holographic-ticker {
    position: relative;
    background: linear-gradient(90deg, 
        rgba(0,240,255,0.05) 0%, 
        rgba(255,0,170,0.03) 50%, 
        rgba(0,240,255,0.05) 100%);
    border-top: 1px solid rgba(0,240,255,0.2);
    border-bottom: 1px solid rgba(0,240,255,0.2);
    padding: 1.2rem 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.holographic-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0,240,255,0.1) 50%,
        transparent 100%);
    animation: holographicScan 4s linear infinite;
}

@keyframes holographicScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.holo-track {
    display: flex;
    gap: 4rem;
    animation: holoScroll 25s linear infinite;
    width: max-content;
}

.holo-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(0,240,255,0.15);
    box-shadow: 0 0 20px rgba(0,240,255,0.1),
                inset 0 0 20px rgba(0,240,255,0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.holo-item:hover {
    border-color: rgba(0,240,255,0.5);
    box-shadow: 0 0 30px rgba(0,240,255,0.3),
                inset 0 0 30px rgba(0,240,255,0.1);
    transform: scale(1.05);
}

.holo-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px currentColor);
    animation: iconPulse 2s ease-in-out infinite;
}

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

.holo-val {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #00f0ff, #ff00aa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(0,240,255,0.5));
}

.holo-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes holoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   FLOATING 3D CONSTELLATION ORBS
═══════════════════════════════════════════ */
.cosmic-constellations {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cosmic-constellations::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,240,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: cosmicPulse 6s ease-in-out infinite;
    pointer-events: none;
}

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

.cosmic-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.cosmic-eyebrow {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(0,240,255,0.8);
    margin-bottom: 1rem;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(0,240,255,0.5); }
    50% { text-shadow: 0 0 20px rgba(0,240,255,0.8), 0 0 30px rgba(255,0,170,0.5); }
}

.cosmic-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00f0ff 50%, #ff00aa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(0,240,255,0.3));
}

.cosmic-sub {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.orb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.floating-orb {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.orb-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
}

.orb-sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255,255,255,0.3) 0%, 
        rgba(0,240,255,0.4) 30%, 
        rgba(0,0,0,0.8) 100%);
    box-shadow: 
        0 0 60px rgba(0,240,255,0.4),
        0 0 120px rgba(0,240,255,0.2),
        inset 0 0 40px rgba(255,255,255,0.1);
    animation: orbFloat 4s ease-in-out infinite;
    transition: all 0.4s ease;
}

.orb-sphere::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(5px);
}

.orb-sphere::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(0,240,255,0.3);
    animation: orbRing 3s linear infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(10deg); }
}

@keyframes orbRing {
    0% { transform: rotate(0deg) scale(1); opacity: 0.5; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.8; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.5; }
}

.floating-orb:nth-child(1) .orb-sphere { animation-delay: 0s; }
.floating-orb:nth-child(2) .orb-sphere { animation-delay: 0.5s; }
.floating-orb:nth-child(3) .orb-sphere { animation-delay: 1s; }
.floating-orb:nth-child(4) .orb-sphere { animation-delay: 1.5s; }
.floating-orb:nth-child(5) .orb-sphere { animation-delay: 2s; }
.floating-orb:nth-child(6) .orb-sphere { animation-delay: 2.5s; }

.floating-orb:hover .orb-sphere {
    transform: translateY(-30px) scale(1.15);
    box-shadow: 
        0 0 80px rgba(0,240,255,0.6),
        0 0 160px rgba(0,240,255,0.3),
        inset 0 0 60px rgba(255,255,255,0.2);
}

.orb-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0,240,255,0.8));
}

.orb-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.3rem;
    text-align: center;
}

.orb-count {
    font-size: 0.85rem;
    color: rgba(0,240,255,0.8);
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   COSMIC METEOR DEALS WITH URGENCY
═══════════════════════════════════════════ */
.cosmic-deals {
    padding: 6rem 2rem;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255,0,170,0.1) 0%, transparent 70%);
    overflow: hidden;
}

.cosmic-deals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.deal-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.cosmic-cd-block {
    position: relative;
    min-width: 100px;
    padding: 1.5rem;
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(255,0,170,0.3);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(255,0,170,0.2),
                inset 0 0 40px rgba(255,0,170,0.1);
}

.cosmic-cd-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,0,170,0.3), transparent);
    animation: cosmicSpin 4s linear infinite;
}

@keyframes cosmicSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cosmic-cd-num {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff00aa, #ff4400);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    z-index: 1;
}

.cosmic-cd-label {
    position: relative;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    z-index: 1;
}

.meteor-shower {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.cosmic-meteor {
    position: relative;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(255,0,170,0.2), rgba(255,68,0,0.2));
    border: 2px solid rgba(255,0,170,0.4);
    border-radius: 999px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: meteorPulse 2s ease-in-out infinite;
}

@keyframes meteorPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255,0,170,0.4); }
    50% { box-shadow: 0 0 40px rgba(255,0,170,0.8), 0 0 60px rgba(255,68,0,0.4); }
}

.cosmic-meteor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateY(-50%);
    animation: meteorShine 3s linear infinite;
}

@keyframes meteorShine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.cosmic-meteor:hover {
    transform: scale(1.1);
    border-color: rgba(255,0,170,0.8);
    box-shadow: 0 0 60px rgba(255,0,170,1);
}

.deal-cta {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff00aa, #ff4400);
    border: none;
    border-radius: 999px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(255,0,170,0.5);
}

.deal-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: ctaShine 2s linear infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.deal-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255,0,170,0.8);
}

/* ═══════════════════════════════════════════
   HOLOGRAPHIC PRODUCT CARDS
═══════════════════════════════════════════ */
.holo-products {
    padding: 5rem 2rem;
    position: relative;
}

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

.holo-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,240,255,0.2);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: cardFloat 6s ease-in-out infinite;
    text-decoration: none;
    color: inherit;
}

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

.holo-card:nth-child(1) { animation-delay: 0s; }
.holo-card:nth-child(2) { animation-delay: 1s; }
.holo-card:nth-child(3) { animation-delay: 2s; }
.holo-card:nth-child(4) { animation-delay: 3s; }
.holo-card:nth-child(5) { animation-delay: 4s; }
.holo-card:nth-child(6) { animation-delay: 5s; }

.holo-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(0,240,255,0.3), 
        rgba(255,0,170,0.3), 
        rgba(0,255,136,0.3), 
        rgba(0,240,255,0.3));
    background-size: 400% 400%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 8s linear infinite;
}

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

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

.holo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,240,255,0.5);
    box-shadow: 0 20px 40px rgba(0,240,255,0.2);
}

.holo-card-media {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, 
        rgba(0,240,255,0.1) 0%, 
        rgba(255,0,170,0.1) 100%);
    overflow: hidden;
}

.holo-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.holo-card:hover .holo-card-media img {
    transform: scale(1.1);
}

.holo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(0,240,255,0.5);
    border-radius: 999px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    color: #00f0ff;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.holo-body {
    padding: 1.5rem;
}

.holo-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.holo-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.holo-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.holo-price {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #00f0ff, #ff00aa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.holo-price .old {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
    margin-left: 0.5rem;
    -webkit-text-fill-color: rgba(255,255,255,0.4);
}

.holo-add {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(255,0,170,0.2));
    border: 1px solid rgba(0,240,255,0.4);
    border-radius: 999px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.holo-add:hover {
    background: linear-gradient(135deg, rgba(0,240,255,0.4), rgba(255,0,170,0.4));
    border-color: rgba(0,240,255,0.8);
    box-shadow: 0 0 20px rgba(0,240,255,0.4);
}

/* ═══════════════════════════════════════════
   ENERGY FIELD WHY SECTION
═══════════════════════════════════════════ */
.energy-section {
    padding: 6rem 2rem;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(0,240,255,0.02) 0%, 
        rgba(255,0,170,0.02) 100%);
    border-top: 1px solid rgba(0,240,255,0.1);
    border-bottom: 1px solid rgba(0,240,255,0.1);
    overflow: hidden;
}

.energy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0,240,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,0,170,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.energy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 2;
}

.energy-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.energy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0,240,255,0.1), transparent);
    animation: energyRotate 10s linear infinite;
    pointer-events: none;
}

@keyframes energyRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.energy-card:hover {
    border-color: rgba(0,240,255,0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,240,255,0.2);
}

.energy-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(255,0,170,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid rgba(0,240,255,0.3);
    z-index: 1;
    animation: energyPulse 3s ease-in-out infinite;
}

@keyframes energyPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0,240,255,0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0,240,255,0.6);
        transform: scale(1.05);
    }
}

.energy-title {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #00f0ff;
    margin-bottom: 1rem;
    z-index: 1;
}

.energy-text {
    position: relative;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    z-index: 1;
}

.energy-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,240,255,0.1);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f0ff, #ff00aa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(0,240,255,0.4));
}

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .energy-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .holo-product-grid {
        grid-template-columns: 1fr;
    }
    
    .orb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .deal-countdown {
        gap: 1rem;
    }
    
    .cosmic-cd-block {
        min-width: 70px;
        padding: 1rem;
    }
    
    .cosmic-cd-num {
        font-size: 2rem;
    }
}
