/* ===== 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; }
}

/* ===== 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);
}

.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;
}

.section-container {
    position: relative;
    z-index: 10;
}

.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;
}

.parallax-image {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    filter: brightness(1.3) contrast(1.2) saturate(1.1);
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.parallax-image.slow {
    animation: floatSlow 6s ease-in-out infinite;
}

.parallax-image.medium {
    animation: floatMedium 4s ease-in-out infinite;
}

.parallax-image.fast {
    animation: floatFast 3s ease-in-out infinite;
}

/* Floating animations for when parallax is disabled */
@keyframes floatSlow {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -10px, 0) rotate(2deg); }
}

@keyframes floatMedium {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -15px, 0) rotate(-2deg); }
}

@keyframes floatFast {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -20px, 0) rotate(3deg); }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .parallax-image {
        width: 80px;
        height: 80px;
        opacity: 0.2;
        animation-duration: 8s;
    }
}

@media (max-width: 480px) {
    .parallax-image {
        width: 60px;
        height: 60px;
        opacity: 0.15;
    }
}

/* ===== 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;
    }
}

/* ===== 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: 2rem 0;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Main footer flex container - Desktop Layout */
footer .flex {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    min-height: 60px;
}

/* Logo positioning - Left column */
footer .logo-hover {
    justify-self: start;
    flex-shrink: 0;
}

/* Copyright text - Center column */
footer .text-center {
    justify-self: center;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.4;
    max-width: 400px;
}

/* Social links positioning - Right column */
footer .flex > div:last-child {
    justify-self: end;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

/* Bottom tagline text - Full width centered */
footer .mt-4 {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #374151;
    color: #6b7280;
    font-size: 0.75rem;
    width: 100%;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    footer .container {
        padding: 0 1.5rem;
    }
    
    footer .text-center {
        font-size: 0.8125rem;
        max-width: 350px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0;
    }
    
    footer .flex {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1rem;
        text-align: center;
    }
    
    footer .logo-hover {
        justify-self: center;
        order: 1;
    }
    
    footer .text-center {
        justify-self: center;
        order: 2;
        margin: 0.5rem 0;
        max-width: none;
    }
    
    footer .flex > div:last-child {
        justify-self: center;
        order: 3;
        justify-content: center;
    }
    
    footer .mt-4 {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
}

/* Small mobile responsive */
@media (max-width: 480px) {
    footer {
        padding: 1rem 0;
    }
    
    footer .container {
        padding: 0 1rem;
    }
    
    footer .flex {
        gap: 0.75rem;
    }
    
    footer .text-center {
        font-size: 0.75rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    footer .flex > div:last-child {
        gap: 0.75rem;
    }
    
    footer .mt-4 {
        font-size: 0.6875rem;
        margin-top: 0.75rem;
        padding-top: 0.5rem;
    }
}
