/* ===== RESET AND BASE STYLES ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes flash {

    0%,
    100% {
        text-shadow:
            0 0 5px #5bf702,
            0 0 10px #5bf702,
            0 0 20px #5bf702,
            0 0 30px #5bf702,
            0 0 40px #5bf702;
        opacity: 1;
    }

    50% {
        text-shadow:
            0 0 8px #5bf702,
            0 0 15px #5bf702,
            0 0 25px #5bf702;
        opacity: 0.85;
    }
}

@keyframes yellowFlicker {

    0%,
    100% {
        text-shadow:
            0 0 5px #fbbf24,
            0 0 10px #fbbf24,
            0 0 20px #fbbf24,
            0 0 30px #fbbf24,
            0 0 40px #fbbf24;
        opacity: 1;
    }

    25% {
        text-shadow:
            0 0 2px #fbbf24,
            0 0 8px #fbbf24,
            0 0 15px #fbbf24;
        opacity: 0.7;
    }

    50% {
        text-shadow:
            0 0 8px #fbbf24,
            0 0 15px #fbbf24,
            0 0 25px #fbbf24,
            0 0 35px #fbbf24;
        opacity: 0.9;
    }

    75% {
        text-shadow:
            0 0 3px #fbbf24,
            0 0 6px #fbbf24,
            0 0 12px #fbbf24;
        opacity: 0.8;
    }
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow:
            0 0 5px #5bf702,
            0 0 10px #5bf702,
            0 0 20px #5bf702;
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 0 8px #5bf702,
            0 0 15px #5bf702,
            0 0 25px #5bf702;
        transform: scale(1.02);
    }
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow:
            0 0 5px #5bf702,
            0 0 10px #5bf702;
        opacity: 1;
    }

    50% {
        text-shadow:
            0 0 8px #5bf702,
            0 0 15px #5bf702;
        opacity: 0.8;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes primaryGlow {

    0%,
    100% {
        text-shadow:
            0 0 5px #5bf702,
            0 0 10px #5bf702,
            0 0 20px #5bf702,
            0 0 30px #5bf702,
            0 0 40px #5bf702;
        opacity: 1;
    }

    25% {
        text-shadow:
            0 0 3px #5bf702,
            0 0 8px #5bf702,
            0 0 15px #5bf702,
            0 0 25px #5bf702;
        opacity: 0.8;
    }

    50% {
        text-shadow:
            0 0 8px #5bf702,
            0 0 15px #5bf702,
            0 0 25px #5bf702,
            0 0 35px #5bf702,
            0 0 45px #5bf702;
        opacity: 0.95;
    }

    75% {
        text-shadow:
            0 0 4px #5bf702,
            0 0 12px #5bf702,
            0 0 18px #5bf702,
            0 0 28px #5bf702;
        opacity: 0.85;
    }
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow:
            0 0 10px #5bf702,
            0 0 20px #5bf702,
            0 0 30px rgba(91, 247, 2, 0.4),
            inset 0 0 10px rgba(91, 247, 2, 0.2);
        text-shadow:
            0 0 5px #5bf702,
            0 0 10px #5bf702;
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 0 15px #5bf702,
            0 0 30px #5bf702,
            0 0 45px rgba(91, 247, 2, 0.6),
            inset 0 0 15px rgba(91, 247, 2, 0.3);
        text-shadow:
            0 0 8px #5bf702,
            0 0 15px #5bf702,
            0 0 20px #5bf702;
        transform: scale(1.05);
    }
}

@keyframes redGlow {

    0%,
    100% {
        text-shadow:
            0 0 5px #dc2626,
            0 0 10px #dc2626,
            0 0 20px #dc2626,
            0 0 30px #dc2626,
            0 0 40px #dc2626;
        opacity: 1;
    }

    25% {
        text-shadow:
            0 0 3px #dc2626,
            0 0 8px #dc2626,
            0 0 15px #dc2626,
            0 0 25px #dc2626;
        opacity: 0.8;
    }

    50% {
        text-shadow:
            0 0 8px #dc2626,
            0 0 15px #dc2626,
            0 0 25px #dc2626,
            0 0 35px #dc2626,
            0 0 45px #dc2626;
        opacity: 0.95;
    }

    75% {
        text-shadow:
            0 0 4px #dc2626,
            0 0 12px #dc2626,
            0 0 18px #dc2626,
            0 0 28px #dc2626;
        opacity: 0.85;
    }
}

@keyframes blueGlow {

    0%,
    100% {
        text-shadow:
            0 0 5px #3b82f6,
            0 0 10px #3b82f6,
            0 0 20px #3b82f6,
            0 0 30px #3b82f6,
            0 0 40px #3b82f6;
        opacity: 1;
    }

    25% {
        text-shadow:
            0 0 3px #3b82f6,
            0 0 8px #3b82f6,
            0 0 15px #3b82f6,
            0 0 25px #3b82f6;
        opacity: 0.8;
    }

    50% {
        text-shadow:
            0 0 8px #3b82f6,
            0 0 15px #3b82f6,
            0 0 25px #3b82f6,
            0 0 35px #3b82f6,
            0 0 45px #3b82f6;
        opacity: 0.95;
    }

    75% {
        text-shadow:
            0 0 4px #3b82f6,
            0 0 12px #3b82f6,
            0 0 18px #3b82f6,
            0 0 28px #3b82f6;
        opacity: 0.85;
    }
}

@keyframes whiteGlow {

    0%,
    100% {
        text-shadow:
            0 0 5px #ffffff,
            0 0 10px #ffffff,
            0 0 20px #ffffff,
            0 0 30px #ffffff,
            0 0 40px #ffffff;
        opacity: 1;
    }

    25% {
        text-shadow:
            0 0 3px #ffffff,
            0 0 8px #ffffff,
            0 0 15px #ffffff,
            0 0 25px #ffffff;
        opacity: 0.8;
    }

    50% {
        text-shadow:
            0 0 8px #ffffff,
            0 0 15px #ffffff,
            0 0 25px #ffffff,
            0 0 35px #ffffff,
            0 0 45px #ffffff;
        opacity: 0.95;
    }

    75% {
        text-shadow:
            0 0 4px #ffffff,
            0 0 12px #ffffff,
            0 0 18px #ffffff,
            0 0 28px #ffffff;
        opacity: 0.85;
    }
}

@keyframes whiteGlowSubtle {

    0%,
    100% {
        text-shadow:
            0 0 2px #ffffff,
            0 0 5px #ffffff,
            0 0 10px #ffffff;
        opacity: 1;
    }

    25% {
        text-shadow:
            0 0 1px #ffffff,
            0 0 4px #ffffff,
            0 0 8px #ffffff;
        opacity: 0.8;
    }

    50% {
        text-shadow:
            0 0 4px #ffffff,
            0 0 8px #ffffff,
            0 0 12px #ffffff;
        opacity: 0.95;
    }

    75% {
        text-shadow:
            0 0 2px #ffffff,
            0 0 6px #ffffff,
            0 0 10px #ffffff;
        opacity: 0.85;
    }
}

@keyframes redPulse {

    0%,
    100% {
        box-shadow:
            0 0 5px #dc2626,
            0 0 10px #dc2626,
            0 0 20px #dc2626;
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 0 8px #dc2626,
            0 0 15px #dc2626,
            0 0 25px #dc2626;
        transform: scale(1.02);
    }
}

/* ===== TEXT STYLES ===== */
.neon-text {
    font-family: 'Orbitron', sans-serif;
    color: #eff6ff;
    animation: flash 3s infinite alternate;
    font-weight: 700;
    will-change: text-shadow, opacity;
    transform: translate3d(0, 0, 0);
}

.neon-text-static {
    font-family: 'Orbitron', sans-serif;
    color: #eff6ff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(91, 247, 2, 0.3);
}

.neon-text-yellow {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    animation: yellowFlicker 2.5s infinite;
    will-change: text-shadow, opacity;
    transform: translate3d(0, 0, 0);
}

.neon-glow-primary {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #eff6ff;
    animation: primaryGlow 3s infinite ease-in-out;
    will-change: text-shadow, opacity;
    transform: translate3d(0, 0, 0);
}

.neon-glow-red {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    animation: redGlow 3s infinite ease-in-out;
    will-change: text-shadow, opacity;
    transform: translate3d(0, 0, 0);
}

.neon-glow-blue {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    animation: blueGlow 3s infinite ease-in-out;
    will-change: text-shadow, opacity;
    transform: translate3d(0, 0, 0);
}

.neon-glow-white {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    animation: whiteGlow 3s infinite ease-in-out;
    will-change: text-shadow, opacity;
    transform: translate3d(0, 0, 0);
}

.neon-glow-white-subtle {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    animation: whiteGlowSubtle 3s infinite ease-in-out;
    will-change: text-shadow, opacity;
    transform: translate3d(0, 0, 0);
}

.neon-glow-badge {
    animation: badgeGlow 2.5s infinite ease-in-out;
    will-change: box-shadow, text-shadow;
    transform: translate3d(0, 0, 0);
}

.email-capture-heading {
    font-family: 'Orbitron', sans-serif;
    color: #5bf702;
    animation: textGlow 4s infinite ease-in-out;
    font-weight: 600;
    letter-spacing: 1px;
    will-change: text-shadow, opacity;
    transform: translate3d(0, 0, 0);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: #5bf702;
    text-shadow: 0 0 20px rgba(91, 247, 2, 0.5);
}

/* ===== COMPONENT STYLES ===== */
.logo-hover {
    transition: all 0.3s ease;
}

.logo-hover:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.futuristic-input {
    background: rgba(17, 24, 39, 0.9);
    border: 2px solid rgba(91, 247, 2, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.futuristic-input:focus {
    outline: none;
    border-color: #5bf702;
    box-shadow:
        0 0 0 3px rgba(91, 247, 2, 0.1),
        0 0 20px rgba(91, 247, 2, 0.3);
    background: rgba(17, 24, 39, 0.95);
}

.futuristic-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cyber-button {
    position: relative;
    background: linear-gradient(135deg, #5bf702 0%, #4dd102 50%, #3bb001 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    animation: neonPulse 3s infinite ease-in-out;
    overflow: hidden;
    will-change: transform, box-shadow;
    transform: translate3d(0, 0, 0);
    contain: layout style paint;
}

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

.cyber-button:hover::before {
    left: 100%;
}

.cyber-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 20px #5bf702,
        0 0 40px #5bf702,
        0 10px 30px rgba(91, 247, 2, 0.4);
}

.cyber-button:active {
    transform: translateY(0) scale(1.02);
}

.scarcity-badge {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: neonPulse 2s infinite ease-in-out;
}

/* ===== LAYOUT STYLES ===== */
.hero-container {
    position: relative;
    z-index: 10;
    overflow: visible !important;
    /* Prevent nested scroll */
}

.section-container {
    position: relative;
    z-index: 10;
    overflow: visible !important;
    /* Prevent nested scroll */
}

.agitate-bg {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(127, 29, 29, 0.1) 100%);
}

.solution-bg {
    background: linear-gradient(135deg, rgba(91, 247, 2, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.fade-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

/* ===== PARALLAX STYLES (ENHANCED) ===== */
.parallax-container {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    /* Allow vertical scroll on touch devices */
}

/* Parallax Images */
.parallax-image {
    position: absolute;
    z-index: 0;
    /* Behind text (which is z-10) */
    pointer-events: none;
    opacity: 0.3;
    /* Increased opacity for visibility inside container */
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
    /* Light effect blend mode */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    /* Subtle glow */
}

/* Parallax depth layers - used by JS for speed calculation */
.parallax-image.slow {
    z-index: -3;
}

.parallax-image.medium {
    z-index: -2;
}

.parallax-image.fast {
    z-index: -1;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .parallax-image {
        width: 150px;
        /* Larger on mobile too */
        height: 150px;
        opacity: 0.12;
    }
}

@media (max-width: 480px) {
    .parallax-image {
        width: 100px;
        /* Larger on phones */
        height: 100px;
        opacity: 0.12;
    }
}

/* Ensure social icons are always horizontal */
.social-icons-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    flex-wrap: nowrap;
}

/* ===== HERO SECTION SPECIFIC STYLES ===== */
.hero-main {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.mint-button-hero {
    font-size: 24px;
    padding: 20px 40px;
    margin-top: 2rem;
}

/* ===== WARNING TEXT STYLES ===== */
.warning-text {
    color: #dc2626;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-content {
    font-size: inherit;
}

.genesis-disclaimer {
    line-height: 1.6;
}

/* ===== SVG ICON STYLES ===== */
.svg-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(91, 247, 2, 0.3));
}

.svg-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(91, 247, 2, 0.6));
}

.svg-icon-large {
    width: 32px;
    height: 32px;
}

.svg-icon-small {
    width: 20px;
    height: 20px;
}

/* Social media icons specific styling */
.social-icon {
    width: 28px;
    height: 28px;
    fill: #9ca3af;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 2px rgba(91, 247, 2, 0.2));
}

.social-icon:hover {
    fill: #5bf702;
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(91, 247, 2, 0.8));
}

/* Section header icons */
.section-icon {
    width: 36px;
    height: 36px;
    fill: currentColor;
    margin-right: 12px;
    vertical-align: middle;
    filter: drop-shadow(0 0 5px rgba(91, 247, 2, 0.4));
    animation: iconGlow 3s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(91, 247, 2, 0.4));
    }

    100% {
        filter: drop-shadow(0 0 12px rgba(91, 247, 2, 0.7));
    }
}

/* Warning and alert icons */
.warning-icon {
    fill: #dc2626;
    filter: drop-shadow(0 0 5px rgba(220, 38, 38, 0.5));
}

.alert-icon {
    fill: #f59e0b;
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.5));
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.8));
    }
}

/* ===== CBO CAROUSEL STYLES ===== */
.cbo-carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.cbo-carousel-wrapper {
    position: relative;
    overflow: visible;
    /* Allow hover effects to pop out */
    margin: 0 60px;
    /* Space for arrows */
    padding: 30px 0;
    /* Add padding to accommodate hover scaling */
}

.cbo-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

.cbo-carousel-item {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(91, 247, 2, 0.3);
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    transform: scale(1);
}

.cbo-carousel-item:hover {
    transform: scale(1.5);
    border-color: #5bf702;
    box-shadow:
        0 0 20px rgba(91, 247, 2, 0.6),
        0 0 40px rgba(91, 247, 2, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    /* Higher z-index to ensure it appears above everything */
}

.cbo-carousel-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.cbo-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.cbo-carousel-item:hover img {
    filter: brightness(1.1) contrast(1.2) saturate(1.1);
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5bf702 0%, #4dd102 50%, #3bb001 100%);
    border: 2px solid rgba(91, 247, 2, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 0 15px rgba(91, 247, 2, 0.3);
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, #6df713 0%, #5ee213 50%, #4fc112 100%);
    box-shadow: 0 0 25px rgba(91, 247, 2, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    fill: #000;
    transition: fill 0.3s ease;
}

.carousel-arrow:hover svg {
    fill: #000;
}

/* Hide arrows when not needed */
.carousel-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .cbo-carousel-wrapper {
        margin: 0 50px;
    }

    .cbo-carousel-item {
        flex: 0 0 100px;
        width: 100px;
        height: 100px;
    }

    .cbo-carousel-item:hover {
        transform: scale(1.3);
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .cbo-carousel-wrapper {
        margin: 0 40px;
    }

    .cbo-carousel-track {
        gap: 15px;
    }

    .cbo-carousel-item {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
    }

    .cbo-carousel-item:hover {
        transform: scale(1.2);
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Tablet and Mobile - 768px and below */
@media (max-width: 768px) {

    /* Base mobile container constraints */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Hero Section Mobile */
    .hero-main {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-disclaimer {
        font-size: 12px;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .mint-button-hero {
        font-size: 18px;
        padding: 14px 28px;
    }

    /* Genesis Mint Section Mobile - Enhanced */
    #genesis {
        overflow-x: hidden;
        max-width: 100vw;
        padding: 3rem 0.5rem !important;
    }

    #genesis .section-container {
        max-width: 100%;
        overflow-x: hidden;
        padding: 1.5rem 0.75rem !important;
        margin: 0.5rem auto !important;
        box-sizing: border-box;
    }

    .genesis-disclaimer {
        font-size: 15px;
        padding: 0 0.5rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .warning-content {
        font-size: 13px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .warning-text {
        font-size: 15px;
        word-wrap: break-word;
    }

    /* Genesis section specific text sizing */
    #genesis .neon-text {
        font-size: 2rem !important;
        line-height: 1.2;
        word-wrap: break-word;
    }

    #genesis .text-2xl.md\\:text-4xl {
        font-size: 1.25rem !important;
        line-height: 1.3;
    }

    #genesis .text-3xl {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    /* Genesis grid layouts - force single column */
    #genesis .grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100%;
        max-width: 100%;
    }

    #genesis .grid>div {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Genesis stats containers */
    #genesis .stat-number {
        font-size: 2.25rem !important;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
    }

    /* Genesis benefits container */
    #genesis .bg-gradient-to-r {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    /* Section containers mobile spacing */
    .section-container {
        padding: 2rem 1rem !important;
        margin: 1rem auto !important;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .hero-container {
        padding: 2rem 1rem !important;
        margin: 1rem auto !important;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    /* Grid layouts mobile stacking */
    .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .grid.md\\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Text sizing mobile */
    .text-4xl.md\\:text-6xl {
        font-size: 2.25rem !important;
    }

    .text-2xl.md\\:text-4xl {
        font-size: 1.5rem !important;
    }

    .text-xl {
        font-size: 1.125rem;
    }

    /* Icons mobile */
    .section-icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }

    /* Stats containers mobile */
    .stat-number {
        font-size: 2.5rem !important;
        margin-bottom: 0.5rem;
    }

    /* Contact form mobile */
    .futuristic-input {
        font-size: 16px;
        padding: 14px 18px;
    }

    /* Cyber buttons mobile */
    .cyber-button {
        font-size: 14px;
        padding: 12px 24px;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {

    /* Enhanced mobile container constraints */
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* Hero section small mobile */
    .hero-main {
        font-size: 1.75rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-disclaimer {
        font-size: 11px;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }

    .mint-button-hero {
        font-size: 16px;
        padding: 12px 24px;
    }

    /* Genesis section small mobile - Enhanced */
    #genesis {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        padding: 2rem 0.25rem !important;
        box-sizing: border-box;
    }

    #genesis .section-container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 1rem 0.5rem !important;
        margin: 0.25rem auto !important;
        box-sizing: border-box;
        width: calc(100vw - 1rem);
    }

    /* Genesis text content - prevent overflow */
    #genesis * {
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .genesis-disclaimer {
        font-size: 14px;
        padding: 0 0.25rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .warning-content {
        font-size: 12px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .warning-text {
        font-size: 14px;
        word-wrap: break-word;
    }

    /* Genesis specific neon text sizing */
    #genesis .neon-text {
        font-size: 1.5rem !important;
        line-height: 1.2;
        word-wrap: break-word;
    }

    #genesis .text-2xl.md\\:text-4xl {
        font-size: 1.125rem !important;
        line-height: 1.3;
    }

    #genesis .text-3xl {
        font-size: 1.25rem !important;
        line-height: 1.3;
    }

    /* Genesis grid and layout fixes */
    #genesis .grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #genesis .grid>div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    /* Genesis stats - smaller sizing */
    #genesis .stat-number {
        font-size: 1.75rem !important;
        margin-bottom: 0.25rem;
        word-wrap: break-word;
    }

    /* Genesis benefits container - tighter spacing */
    #genesis .bg-gradient-to-r {
        padding: 0.75rem !important;
        margin-bottom: 1rem !important;
        overflow-x: hidden !important;
        word-wrap: break-word;
    }

    /* Container spacing small mobile */
    .section-container {
        padding: 1.5rem 0.5rem !important;
        margin: 0.25rem auto !important;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .hero-container {
        padding: 1.5rem 0.5rem !important;
        margin: 0.25rem auto !important;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    /* Text sizing small mobile */
    .text-4xl.md\\:text-6xl {
        font-size: 2rem !important;
    }

    .text-2xl.md\\:text-4xl {
        font-size: 1.25rem !important;
    }

    .text-3xl {
        font-size: 1.5rem !important;
    }

    .text-xl {
        font-size: 1rem;
    }

    .text-lg {
        font-size: 0.95rem;
    }

    /* Icons small mobile */
    .section-icon {
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    /* Stats small mobile */
    .stat-number {
        font-size: 2rem !important;
        margin-bottom: 0.25rem;
    }

    /* Grid gaps small mobile */
    .grid {
        gap: 1rem !important;
    }

    /* Buttons small mobile */
    .cyber-button {
        font-size: 13px;
        padding: 10px 20px;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
        max-width: 100%;
    }

    /* Form inputs small mobile */
    .futuristic-input {
        font-size: 15px;
        padding: 12px 16px;
    }

    /* Section spacing small mobile */
    section {
        padding: 3rem 0.25rem !important;
        overflow-x: hidden;
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Neon text mobile adjustments */
    .neon-text {
        font-size: 1.75rem !important;
    }

    .neon-text-static {
        font-size: 1.75rem !important;
    }

    .neon-text-yellow {
        font-size: 1.5rem !important;
    }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {

    /* Ultra-constrained mobile layout */
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .hero-main {
        font-size: 1.5rem !important;
        line-height: 1.1;
    }

    .hero-disclaimer {
        font-size: 10px;
        padding: 0 0.25rem;
    }

    /* Genesis section ultra-small mobile */
    #genesis {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        padding: 1.5rem 0.125rem !important;
        box-sizing: border-box;
    }

    #genesis .section-container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 0.75rem 0.25rem !important;
        margin: 0.125rem auto !important;
        box-sizing: border-box;
        width: calc(100vw - 0.5rem);
    }

    /* Genesis ultra-small text */
    #genesis .neon-text {
        font-size: 1.25rem !important;
        line-height: 1.2;
    }

    #genesis .text-2xl.md\\:text-4xl {
        font-size: 1rem !important;
        line-height: 1.3;
    }

    #genesis .text-3xl {
        font-size: 1.125rem !important;
        line-height: 1.3;
    }

    .genesis-disclaimer {
        font-size: 13px;
        padding: 0 0.125rem;
        line-height: 1.4;
    }

    .warning-content {
        font-size: 11px;
        line-height: 1.3;
    }

    .warning-text {
        font-size: 13px;
    }

    /* Genesis ultra-small stats */
    #genesis .stat-number {
        font-size: 1.5rem !important;
        margin-bottom: 0.125rem;
    }

    /* Genesis ultra-small containers */
    #genesis .bg-gradient-to-r {
        padding: 0.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    #genesis .grid {
        gap: 0.5rem !important;
    }

    .section-container,
    .hero-container {
        padding: 1rem 0.25rem !important;
        margin: 0.125rem auto !important;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .text-4xl.md\\:text-6xl {
        font-size: 1.75rem !important;
    }

    .text-2xl.md\\:text-4xl {
        font-size: 1.125rem !important;
    }

    .cyber-button {
        font-size: 12px;
        padding: 8px 16px;
        max-width: 100%;
        word-wrap: break-word;
        white-space: normal;
    }

    .stat-number {
        font-size: 1.75rem !important;
    }

    /* Ultra-small section spacing */
    section {
        padding: 2rem 0.125rem !important;
        overflow-x: hidden;
        max-width: 100vw;
        box-sizing: border-box;
    }
}

/* ===== MINT TRACKER STYLES ===== */

/* Main mint tracker container */
.mint-tracker-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 2px solid rgba(91, 247, 2, 0.4);
    border-radius: 16px;
    padding: 2rem 2rem 2rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 0 30px rgba(91, 247, 2, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Urgency-based container styling */
.mint-tracker-container.urgency-low {
    border-color: rgba(91, 247, 2, 0.4);
    box-shadow: 0 0 30px rgba(91, 247, 2, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.mint-tracker-container.urgency-medium {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.mint-tracker-container.urgency-high {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.8);
    animation: urgencyPulse 2s infinite ease-in-out;
}

.mint-tracker-container.urgency-critical {
    border-color: rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.8);
    animation: criticalPulse 1s infinite ease-in-out;
}

.mint-tracker-container.urgency-sold_out {
    border-color: rgba(107, 114, 128, 0.6);
    box-shadow: 0 0 30px rgba(107, 114, 128, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Urgency animations */
@keyframes urgencyPulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.8);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.8);
        transform: scale(1.01);
    }
}

@keyframes criticalPulse {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.8);
        transform: scale(1);
        border-color: rgba(239, 68, 68, 0.8);
    }

    50% {
        box-shadow: 0 0 60px rgba(239, 68, 68, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.8);
        transform: scale(1.02);
        border-color: rgba(239, 68, 68, 1);
    }
}

/* Mint tracker header */
.mint-tracker-header h4 {
    font-family: 'Orbitron', sans-serif;
    color: #eff6ff;
    text-shadow: 0 0 10px rgba(91, 247, 2, 0.5);
    margin-bottom: 1.5rem;
}

/* Main mint display */
.mint-tracker-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Remaining NFTs display */
.mint-remaining-display {
    text-align: center;
}

.mint-remaining-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.mint-remaining-number .stat-number {
    background: linear-gradient(135deg, #5bf702 0%, #4dd102 50%, #3bb001 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(91, 247, 2, 0.5);
    transition: all 0.3s ease;
}

.mint-remaining-label {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Progress bar container */
.mint-progress-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.mint-progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.75rem;
    position: relative;
}

.mint-progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Progress fill colors based on urgency */
.mint-progress-fill.urgency-low {
    background: linear-gradient(90deg, #5bf702 0%, #4dd102 50%, #3bb001 100%);
    box-shadow: 0 0 10px rgba(91, 247, 2, 0.5);
}

.mint-progress-fill.urgency-medium {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.mint-progress-fill.urgency-high {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.mint-progress-fill.urgency-critical {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.7);
    animation: criticalFill 1s infinite ease-in-out;
}

.mint-progress-fill.urgency-sold_out {
    background: linear-gradient(90deg, #6b7280 0%, #4b5563 50%, #374151 100%);
    box-shadow: 0 0 10px rgba(107, 114, 128, 0.5);
}

@keyframes criticalFill {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.7);
    }

    50% {
        box-shadow: 0 0 25px rgba(239, 68, 68, 0.9);
    }
}

/* Progress text */
.mint-progress-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: #d1d5db;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Urgency message container */
.mint-urgency-container {
    text-align: center;
    width: 100%;
}

.mint-urgency {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Urgency message colors */
.mint-urgency.urgency-low {
    color: #5bf702;
    border-color: rgba(91, 247, 2, 0.5);
    background: rgba(91, 247, 2, 0.1);
    text-shadow: 0 0 10px rgba(91, 247, 2, 0.5);
}

.mint-urgency.urgency-medium {
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.5);
    background: rgba(251, 191, 36, 0.1);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.mint-urgency.urgency-high {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(239, 68, 68, 0.1);
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.mint-urgency.urgency-critical {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.8);
    background: rgba(239, 68, 68, 0.2);
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.7);
}

.mint-urgency.urgency-sold_out {
    color: #6b7280;
    border-color: rgba(107, 114, 128, 0.5);
    background: rgba(107, 114, 128, 0.1);
    text-shadow: 0 0 10px rgba(107, 114, 128, 0.5);
}

.mint-urgency.urgency-error {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.1);
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

/* Pulse animation for high urgency messages */
.mint-urgency.mint-pulse {
    animation: mintUrgencyPulse 1.5s infinite ease-in-out;
}

@keyframes mintUrgencyPulse {

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

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Flash animation for number updates */
.mint-flash {
    animation: mintFlash 1s ease-out;
}

@keyframes mintFlash {
    0% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(91, 247, 2, 0.5);
    }

    50% {
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(91, 247, 2, 0.8);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(91, 247, 2, 0.5);
    }
}

/* Progress bar flash animation */
.mint-progress-flash {
    animation: progressFlash 0.8s ease-out;
}

@keyframes progressFlash {
    0% {
        box-shadow: 0 0 10px rgba(91, 247, 2, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(91, 247, 2, 0.8);
    }

    100% {
        box-shadow: 0 0 10px rgba(91, 247, 2, 0.5);
    }
}

/* Responsive design for mint tracker */
@media (max-width: 768px) {
    .mint-tracker-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .mint-remaining-number {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .mint-urgency {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .mint-progress-container {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .mint-tracker-container {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .mint-remaining-number {
        font-size: 2.5rem;
        letter-spacing: 0.06em;
    }

    .mint-urgency {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .mint-tracker-header h4 {
        font-size: 1.5rem;
    }
}

/* ===== TACTICAL CARDS STYLES ===== */

/* Base tactical card styling */
.tactical-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: translateZ(0);
    will-change: transform, box-shadow;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem !important;
    margin: 0.5rem;
}

.tactical-card:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
}

/* Battlefield Intel Card */
.tactical-card.battlefield-intel {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.tactical-card.battlefield-intel:hover {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4), 0 10px 40px rgba(59, 130, 246, 0.2);
}

.battlefield-intel-glow {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    animation: battlefieldPulse 3s infinite ease-in-out;
}

@keyframes battlefieldPulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.4);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.6);
        transform: scale(1.02);
    }
}

/* Tactical overlay for radar effect */
.tactical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 12px;
}

.tactical-card.battlefield-intel:hover .tactical-overlay {
    opacity: 1;
    animation: radarSweep 2s infinite linear;
}

@keyframes radarSweep {
    0% {
        background: conic-gradient(from 0deg, rgba(59, 130, 246, 0.3) 0deg, transparent 60deg, transparent 360deg);
    }

    100% {
        background: conic-gradient(from 360deg, rgba(59, 130, 246, 0.3) 0deg, transparent 60deg, transparent 360deg);
    }
}

/* AI Weaponized Card */
.tactical-card.ai-weaponized {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(126, 34, 206, 0.1) 100%);
    border: 2px solid rgba(147, 51, 234, 0.4);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
}

.tactical-card.ai-weaponized:hover {
    border-color: rgba(147, 51, 234, 0.8);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.4), 0 10px 40px rgba(147, 51, 234, 0.2);
}

.ai-weaponized-glow {
    color: #9333ea;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
    animation: cyberPulse 2.5s infinite ease-in-out;
}

@keyframes cyberPulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(147, 51, 234, 0.6), 0 0 20px rgba(147, 51, 234, 0.4);
        transform: scale(1);
    }

    25% {
        text-shadow: 0 0 5px rgba(147, 51, 234, 0.4), 0 0 15px rgba(147, 51, 234, 0.3);
        transform: scale(0.98);
    }

    50% {
        text-shadow: 0 0 15px rgba(147, 51, 234, 0.8), 0 0 30px rgba(147, 51, 234, 0.6);
        transform: scale(1.03);
    }

    75% {
        text-shadow: 0 0 8px rgba(147, 51, 234, 0.5), 0 0 18px rgba(147, 51, 234, 0.4);
        transform: scale(1.01);
    }
}

/* Cyber overlay for glitch effect */
.cyber-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(147, 51, 234, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 12px;
}

.tactical-card.ai-weaponized:hover .cyber-overlay {
    opacity: 1;
    animation: cyberGlitch 1.5s infinite ease-in-out;
}

@keyframes cyberGlitch {

    0%,
    100% {
        transform: translateX(0) skew(0deg);
        opacity: 0.1;
    }

    20% {
        transform: translateX(-2px) skew(1deg);
        opacity: 0.3;
    }

    40% {
        transform: translateX(2px) skew(-1deg);
        opacity: 0.2;
    }

    60% {
        transform: translateX(-1px) skew(0.5deg);
        opacity: 0.4;
    }

    80% {
        transform: translateX(1px) skew(-0.5deg);
        opacity: 0.2;
    }
}

/* Tactical Ops Card */
.tactical-card.tactical-ops {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.tactical-card.tactical-ops:hover {
    border-color: rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4), 0 10px 40px rgba(239, 68, 68, 0.2);
}

.tactical-glow {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
    animation: tacticalPulse 2s infinite ease-in-out;
}

@keyframes tacticalPulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(239, 68, 68, 0.6), 0 0 20px rgba(239, 68, 68, 0.4);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 15px rgba(239, 68, 68, 0.8), 0 0 30px rgba(239, 68, 68, 0.6), 0 0 40px rgba(239, 68, 68, 0.3);
        transform: scale(1.05);
    }
}

/* Tactical crosshair overlay */
.tactical-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tactical-crosshair::before,
.tactical-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(239, 68, 68, 0.6);
    transition: all 0.3s ease;
}

.tactical-crosshair::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.tactical-crosshair::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
}

.tactical-card.tactical-ops:hover .tactical-crosshair {
    opacity: 1;
    animation: crosshairScan 2s infinite ease-in-out;
}

@keyframes crosshairScan {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Enhanced stat numbers for tactical cards */
.tactical-card .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-align: center;
    display: block;
    width: 100%;
}

/* Tactical card text enhancements */
.tactical-card .text-blue-300 {
    color: #93c5fd !important;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(147, 197, 253, 0.3);
    text-align: center;
}

.tactical-card .text-purple-300 {
    color: #c4b5fd !important;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(196, 181, 253, 0.3);
    text-align: center;
}

.tactical-card .text-red-300 {
    color: #fca5a5 !important;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(252, 165, 165, 0.3);
    text-align: center;
}

.tactical-card .text-gray-300 {
    color: #d1d5db !important;
    font-weight: 500;
    text-align: center;
}

/* Ensure all tactical card content is centered */
.tactical-card p {
    text-align: center;
    margin: 0 auto;
}

.tactical-card>* {
    text-align: center;
}

/* Mobile responsive for tactical cards */
@media (max-width: 768px) {
    .tactical-card {
        padding: 1.5rem !important;
        text-align: center;
    }

    .tactical-card:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .tactical-card .stat-number {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .tactical-card p {
        text-align: center;
    }

    .tactical-crosshair {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .tactical-card {
        padding: 1.25rem !important;
        text-align: center;
    }

    .tactical-card .stat-number {
        font-size: 1.5rem !important;
        margin-bottom: 0.25rem;
        text-align: center;
    }

    .tactical-card p {
        text-align: center;
    }

    .tactical-crosshair {
        width: 30px;
        height: 30px;
    }
}

/* ===== KAREN POPUP STYLES ===== */
.karen-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.karen-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.karen-popup-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.karen-popup-overlay.show .karen-popup-container {
    transform: scale(1) translateY(0);
}

.karen-popup-content {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(124, 58, 237, 0.95) 50%, rgba(109, 40, 217, 0.95) 100%);
    border: 2px solid rgba(167, 139, 250, 0.6);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow:
        0 0 30px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(139, 92, 246, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.karen-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

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

    100% {
        transform: translateX(100%);
    }
}

.karen-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.6));
    animation: karenFloat 3s ease-in-out infinite;
}

@keyframes karenFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.6));
    }

    50% {
        transform: translateY(-10px) rotate(2deg) scale(1.05);
        filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
    }
}

.karen-message {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(167, 139, 250, 0.8),
        0 0 20px rgba(167, 139, 250, 0.6),
        0 0 30px rgba(167, 139, 250, 0.4);
    line-height: 1.4;
    margin: 0;
    animation: textGlowPurple 2s ease-in-out infinite alternate;
}

@keyframes textGlowPurple {
    0% {
        text-shadow:
            0 0 10px rgba(167, 139, 250, 0.8),
            0 0 20px rgba(167, 139, 250, 0.6),
            0 0 30px rgba(167, 139, 250, 0.4);
    }

    100% {
        text-shadow:
            0 0 15px rgba(167, 139, 250, 1),
            0 0 25px rgba(167, 139, 250, 0.8),
            0 0 35px rgba(167, 139, 250, 0.6);
    }
}

/* Mobile responsive for Karen popup */
@media (max-width: 768px) {
    .karen-popup-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 16px;
    }

    .karen-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .karen-message {
        font-size: 1.25rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .karen-popup-content {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
        border-radius: 12px;
    }

    .karen-image {
        width: 80px;
        height: 80px;
        margin-bottom: 0.75rem;
    }

    .karen-message {
        font-size: 1.125rem;
        line-height: 1.2;
    }
}

/* ===== MOBILE NAVIGATION STYLES ===== */
#mobile-menu-button {
    z-index: 60;
}

#mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: #5bf702;
}

#mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

#mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background-color: #5bf702;
}

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

.mobile-nav-link {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5bf702, #4dd102);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav-link:hover::after {
    width: 100%;
}

/* ===== FOOTER STYLES ===== */
footer {
    background: #111827;
    border-top: 1px solid #374151;
    padding: 1.5rem 0;
}

/* Clean, simple footer layout */
footer .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    footer .flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Logo styling */
footer img {
    height: 2.5rem;
    width: auto;
    transition: transform 0.3s ease;
}

footer img:hover {
    transform: scale(1.05);
}

/* Copyright text */
footer .text-sm {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Social icons */
footer .flex.items-center.space-x-4 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .flex.items-center.space-x-4 a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

footer .flex.items-center.space-x-4 a:hover {
    color: #5bf702;
}

footer .flex.items-center.space-x-4 svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Bottom line */
footer .border-t {
    border-top: 1px solid #374151;
    margin-top: 1rem;
    padding-top: 1rem;
}

footer .text-xs {
    color: #6b7280;
    font-size: 0.75rem;
}

footer .text-xs a {
    color: #6b7280;
    transition: color 0.3s ease;
}

footer .text-xs a:hover {
    color: #5bf702;
}

/* Mobile responsive */
@media (max-width: 480px) {
    footer {
        padding: 1rem 0;
    }

    footer img {
        height: 2rem;
    }

    footer .flex.items-center.space-x-4 {
        gap: 0.75rem;
    }

    footer .text-sm {
        font-size: 0.8125rem;
    }

    footer .text-xs {
        font-size: 0.6875rem;
    }
}