/* CSS Custom Properties - Neon-Fusion Style Scheme */
:root {
    --primary-blue: #3DA7FF;
    --primary-red: #FF2D55;
    --bg-midnight: #07070B;
    --neutral-gunmetal: #20242F;
    --neutral-silver: #BFC7D5;
    --accent-violet: #8E2EF7;
    --accent-turquoise: #1EE6FF;
    --cta-lime: #CFFF36;
    --glow-white: #FFFFFF;
    --glow-size: 20px;
}

/* Font Loading Optimization */
@font-face {
    font-family: 'Bebas Neue';
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/bebasneue/v14/JTUSjIg69CK48gW7PXoo9Wdhyzbi.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-display: swap;
    font-weight: 300 700;
    src: url('https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.woff2') format('woff2');
}

/* Prevent font loading flash */
.hero-primary-text,
.hero-secondary-text {
    font-display: swap;
    text-rendering: optimizeSpeed;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Montserrat', sans-serif;
    background: var(--bg-midnight);
    color: var(--neutral-silver);
    overflow-x: hidden;
}

/* Neon Grid Backdrop */
.neon-grid-backdrop {
    background-image: 
        repeating-radial-gradient(
            circle at 20% 50%, 
            transparent 0%, 
            rgba(61, 167, 255, 0.08) 10%, 
            transparent 20%
        ),
        repeating-radial-gradient(
            circle at 80% 20%, 
            transparent 0%, 
            rgba(142, 46, 247, 0.05) 10%, 
            transparent 20%
        );
    background-size: 100px 100px, 150px 150px;
    animation: gridPan 30s ease-in-out infinite;
}

@keyframes gridPan {
    0%, 100% { background-position: 0% 0%, 100% 100%; }
    50% { background-position: 15% 15%, 85% 85%; }
}

/* Hero Backdrop Gradient */
.hero-backdrop {
    background: radial-gradient(circle at 50% 50%,
        rgba(61, 167, 255, 0.15) 0%,
        rgba(7, 7, 11, 1) 60%);
}

/* Section Transition Bar */
.section-transition {
    background: linear-gradient(90deg,
        #3DA7FF 0%,
        #8E2EF7 50%,
        #FF2D55 100%);
    height: 3px;
    width: 100%;
}

/* Hero Headline Container */
.hero-headline-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

/* Primary Text - "STILL OPEN" */
.hero-primary-text {
    font-family: 'Bebas Neue', 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    position: relative;
    color: #0a1420;
    text-shadow:
        0 0 2px var(--accent-turquoise),
        0 0 4px var(--accent-turquoise),
        0 0 8px var(--accent-turquoise),
        0 0 12px rgba(30, 230, 255, 0.8),
        0 0 16px rgba(30, 230, 255, 0.6);
    line-height: 0.9;
    margin: 0;
    animation: brandNeonFlicker 8s ease-in-out infinite, brandNeonPulse 4s ease-in-out infinite alternate;
}

.hero-primary-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--accent-turquoise);
    text-shadow:
        0 0 2px var(--accent-turquoise),
        0 0 4px var(--accent-turquoise),
        0 0 6px var(--accent-turquoise);
    filter: blur(1px);
    opacity: 0.7;
    z-index: -1;
    animation: brandNeonHalo 6s ease-in-out infinite alternate;
}

.hero-primary-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(30, 230, 255, 0.4);
    filter: blur(3px);
    opacity: 0.5;
    z-index: -2;
    animation: brandNeonAura 5s ease-in-out infinite alternate;
}

/* Hero Separator */
.hero-separator {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(30, 230, 255, 0.3) 20%,
        var(--accent-turquoise) 50%,
        rgba(30, 230, 255, 0.3) 80%,
        transparent 100%);
    border-radius: 1px;
    position: relative;
    box-shadow: 0 0 6px rgba(30, 230, 255, 0.5);
    animation: brandSeparatorFlow 4s ease-in-out infinite;
}

.hero-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--accent-turquoise);
    border-radius: 50%;
    box-shadow: 
        0 0 4px var(--accent-turquoise), 
        0 0 8px rgba(30, 230, 255, 0.6),
        0 0 12px rgba(30, 230, 255, 0.3);
    animation: brandSeparatorGem 3s ease-in-out infinite;
}

.hero-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 3px var(--primary-blue), 0 0 6px rgba(61, 167, 255, 0.4);
    animation: brandSeparatorAccent 3s ease-in-out infinite 1s;
}

/* Secondary Text - "NEW NAME, SAME BILLY" */
.hero-secondary-text {
    font-family: 'Bebas Neue', 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    color: #0a1420;
    text-shadow:
        0 0 2px var(--accent-turquoise),
        0 0 4px var(--accent-turquoise),
        0 0 8px var(--accent-turquoise),
        0 0 12px rgba(30, 230, 255, 0.8),
        0 0 16px rgba(30, 230, 255, 0.6);
    animation: brandNeonFlicker 8s ease-in-out infinite, brandNeonPulse 4s ease-in-out infinite alternate;
    line-height: 1.1;
    margin: 0;
    opacity: 0.95;
}

.hero-secondary-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--accent-turquoise);
    text-shadow:
        0 0 2px var(--accent-turquoise),
        0 0 4px var(--accent-turquoise),
        0 0 6px var(--accent-turquoise);
    filter: blur(1px);
    opacity: 0.6;
    z-index: -1;
    animation: brandNeonHalo 6s ease-in-out infinite alternate;
}

.hero-secondary-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(30, 230, 255, 0.4);
    filter: blur(3px);
    opacity: 0.4;
    z-index: -2;
    animation: brandNeonAura 5s ease-in-out infinite alternate;
}

/* Brand Neon Animations */
@keyframes brandNeonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 2px var(--accent-turquoise),
            0 0 4px var(--accent-turquoise),
            0 0 8px var(--accent-turquoise),
            0 0 12px rgba(30, 230, 255, 0.8),
            0 0 16px rgba(30, 230, 255, 0.6);
    }
    20%, 24%, 55% {
        text-shadow:
            0 0 1px var(--accent-turquoise),
            0 0 3px var(--accent-turquoise),
            0 0 6px var(--accent-turquoise),
            0 0 10px rgba(30, 230, 255, 0.6),
            0 0 14px rgba(30, 230, 255, 0.4);
    }
}

@keyframes brandNeonPulse {
    0% { 
        text-shadow:
            0 0 2px var(--accent-turquoise),
            0 0 4px var(--accent-turquoise),
            0 0 8px var(--accent-turquoise),
            0 0 12px rgba(30, 230, 255, 0.8),
            0 0 16px rgba(30, 230, 255, 0.6);
    }
    100% { 
        text-shadow:
            0 0 3px var(--accent-turquoise),
            0 0 6px var(--accent-turquoise),
            0 0 10px var(--accent-turquoise),
            0 0 15px rgba(30, 230, 255, 0.9),
            0 0 20px rgba(30, 230, 255, 0.7);
    }
}

@keyframes brandNeonHalo {
    0% { 
        opacity: 0.7;
        filter: blur(1px);
    }
    100% { 
        opacity: 0.9;
        filter: blur(2px);
    }
}

@keyframes brandNeonAura {
    0% { 
        opacity: 0.5;
        filter: blur(3px);
        transform: scale(1);
    }
    100% { 
        opacity: 0.7;
        filter: blur(4px);
        transform: scale(1.01);
    }
}

@keyframes brandSeparatorFlow {
    0%, 100% { 
        background: linear-gradient(90deg, 
            transparent 0%,
            rgba(30, 230, 255, 0.3) 20%,
            var(--accent-turquoise) 50%,
            rgba(30, 230, 255, 0.3) 80%,
            transparent 100%);
        box-shadow: 0 0 6px rgba(30, 230, 255, 0.5);
    }
    50% { 
        background: linear-gradient(90deg, 
            transparent 0%,
            rgba(30, 230, 255, 0.4) 20%,
            var(--accent-turquoise) 50%,
            rgba(30, 230, 255, 0.4) 80%,
            transparent 100%);
        box-shadow: 0 0 8px rgba(30, 230, 255, 0.7);
    }
}

@keyframes brandSeparatorGem {
    0%, 100% { 
        opacity: 0.9; 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 4px var(--accent-turquoise), 
            0 0 8px rgba(30, 230, 255, 0.6),
            0 0 12px rgba(30, 230, 255, 0.3);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 0 6px var(--accent-turquoise), 
            0 0 12px rgba(30, 230, 255, 0.8),
            0 0 16px rgba(30, 230, 255, 0.4);
    }
}

@keyframes brandSeparatorAccent {
    0%, 100% { 
        opacity: 0.7; 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 3px var(--primary-blue), 0 0 6px rgba(61, 167, 255, 0.4);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 0 4px var(--primary-blue), 0 0 8px rgba(61, 167, 255, 0.6);
    }
}



/* Neon Text Effect - Updated */
.neon {
    position: relative;
    color: var(--primary-blue);
    text-shadow:
        0 0 2px currentColor,
        0 0 6px currentColor,
        0 0 12px currentColor;
}

.neon::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    filter: blur(8px);
    opacity: 0.7;
    z-index: -1;
}

.neon-text {
    position: relative;
    color: var(--glow-white);
    text-shadow:
        0 0 2px var(--primary-blue),
        0 0 4px var(--primary-blue),
        0 0 8px var(--primary-blue),
        0 0 12px var(--primary-blue);
    animation: textGlow 4s ease-in-out infinite alternate, flicker 12s infinite steps(10);
}

.neon-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary-blue);
    filter: blur(4px);
    opacity: 0.4;
    z-index: -1;
}

@keyframes textGlow {
    0% { 
        text-shadow: 
            0 0 2px var(--primary-blue),
            0 0 4px var(--primary-blue),
            0 0 8px var(--primary-blue),
            0 0 12px var(--primary-blue);
    }
    100% { 
        text-shadow: 
            0 0 3px var(--primary-blue),
            0 0 6px var(--primary-blue),
            0 0 12px var(--primary-blue),
            0 0 18px var(--primary-blue),
            0 0 24px var(--primary-blue);
    }
}

/* Updated Flicker Animation */
@keyframes flicker {
    0%, 19%, 21%, 23%, 43%, 100% { opacity: 1; }
    20%, 22%, 40% { opacity: 0.85; }
}

/* Logo Glow Effect */
.logo-glow {
    filter: drop-shadow(0 0 20px rgba(61, 167, 255, 0.6));
    animation: flicker 8s infinite steps(10);
}



/* Wings Showcase Effect */
.wings-glow {
    filter: drop-shadow(0 0 30px rgba(207, 255, 54, 0.6))
            drop-shadow(0 0 15px rgba(255, 45, 85, 0.4));
    animation: wingsFloat 4s ease-in-out infinite;
    transition: all 0.4s ease;
    border: 2px solid rgba(207, 255, 54, 0.3);
}

.wings-glow:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 0 40px rgba(207, 255, 54, 0.8))
            drop-shadow(0 0 25px rgba(255, 45, 85, 0.6))
            drop-shadow(0 0 60px rgba(61, 167, 255, 0.4));
    border-color: rgba(207, 255, 54, 0.6);
}

@keyframes wingsFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 0 30px rgba(207, 255, 54, 0.6))
                drop-shadow(0 0 15px rgba(255, 45, 85, 0.4));
    }
    50% { 
        transform: translateY(-8px) rotate(0.5deg);
        filter: drop-shadow(0 0 35px rgba(207, 255, 54, 0.8))
                drop-shadow(0 0 20px rgba(255, 45, 85, 0.6));
    }
}



/* Wings Showcase Container */
.wings-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wings-showcase::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, 
        rgba(207, 255, 54, 0.15) 0%,
        rgba(255, 45, 85, 0.1) 50%,
        transparent 100%);
    border-radius: 20px;
    z-index: -1;
    animation: wingsHalo 5s ease-in-out infinite;
}

@keyframes wingsHalo {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.1) rotate(1deg);
    }
}

/* Glass Morphism Panel */
.glass-panel {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Card/Modal Component */
.card-panel {
    background: var(--neutral-gunmetal);
    color: var(--neutral-silver);
    box-shadow: 
        0 0 12px rgba(0, 0, 0, 0.67),
        inset 0 0 8px rgba(142, 46, 247, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Primary Button */
.primary-button {
    background: var(--primary-red);
    color: var(--glow-white);
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 0 8px rgba(255, 45, 85, 0.4);
}

.primary-button:hover {
    background: var(--primary-blue);
    box-shadow: 0 0 8px rgba(61, 167, 255, 0.4);
    transform: scale(1.05);
}

.primary-button:active {
    transform: scale(0.98);
}

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

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

/* Secondary Button */
.secondary-button {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: rgba(61, 167, 255, 0.2);
}

/* Input Field */
.input-field {
    background: var(--neutral-gunmetal);
    border: 1px solid var(--accent-turquoise);
    transition: all 0.3s ease;
}

.input-field:focus {
    background: rgba(30, 230, 255, 0.1);
    box-shadow: 0 0 20px rgba(30, 230, 255, 0.3);
    border-color: var(--accent-turquoise);
}

/* Social Links */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--neutral-silver);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(100px);
    opacity: 0;
}

.social-link:hover {
    animation: colorCycle 1.5s ease-in-out;
    transform: translateY(0) scale(1.1);
    box-shadow: 0 0 20px rgba(61, 167, 255, 0.5);
}

/* Social Icon Color Cycling */
.social-icon {
    transition: color 0.3s ease;
}

@keyframes colorCycle {
    0% { color: var(--primary-blue); }
    50% { color: var(--accent-violet); }
    100% { color: var(--primary-red); }
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid var(--accent-turquoise);
    outline-offset: 2px;
}

/* Scroll Hint */
#scroll-hint {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0, 0, 0); }
    40%, 43% { transform: translate3d(0, -8px, 0); }
    70% { transform: translate3d(0, -4px, 0); }
    90% { transform: translate3d(0, -2px, 0); }
}

/* Entrance Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Text Stroke Wobble for Scroll Trigger */
.wobble-text {
    animation: textWobble 2s ease-in-out infinite;
}

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

/* Mobile-First Responsive Design */
@media (max-width: 480px) {
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    #social-dock {
        bottom: 16px;
        left: 16px;
        gap: 2px;
    }
    
    .glass-panel, .card-panel {
        margin: 0 8px;
        padding: 16px;
    }
    
    .neon-text {
        font-size: clamp(1.8rem, 5vw, 3rem);
        line-height: 1.1;
    }
    
    /* Mobile Hero Headline Adjustments */
    .hero-headline-container {
        gap: 0.5rem;
    }
    
    .hero-primary-text {
        font-size: clamp(2rem, 8vw, 4rem);
        letter-spacing: 0.2em;
        line-height: 0.85;
    }
    
    .hero-secondary-text {
        font-size: clamp(1.2rem, 5vw, 2.5rem);
        letter-spacing: 0.1em;
        text-shadow:
            0 0 2px var(--accent-turquoise),
            0 0 4px var(--accent-turquoise),
            0 0 6px var(--accent-turquoise);
    }
    
    .hero-separator {
        width: 100px;
        height: 2px;
    }
    
    .hero-separator::before {
        width: 4px;
        height: 4px;
    }
    
    .hero-separator::after {
        width: 2px;
        height: 2px;
    }
    
    #hero {
        padding: 16px 8px;
        gap: 20px;
    }
    
    #secondary {
        padding: 40px 16px;
    }
    
    #secondary .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .primary-button, .secondary-button {
        font-size: 14px;
        padding: 12px 20px;
        min-height: 44px; /* Touch target size */
    }
    
    #email-input {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
    
    /* Mobile optimizations for wings image */
    .wings-glow {
        filter: drop-shadow(0 0 20px rgba(207, 255, 54, 0.5))
                drop-shadow(0 0 10px rgba(255, 45, 85, 0.3));
    }
    
    .wings-showcase {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    #social-dock {
        bottom: 20px;
        left: 20px;
    }
    
    .glass-panel, .card-panel {
        margin: 0 12px;
        padding: 20px;
    }
    
    .neon-text {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    /* Tablet Hero Headline Adjustments */
    .hero-headline-container {
        gap: 0.75rem;
    }
    
    .hero-primary-text {
        font-size: clamp(2.3rem, 8vw, 5rem);
        letter-spacing: 0.18em;
    }
    
    .hero-secondary-text {
        font-size: clamp(1.5rem, 5vw, 3rem);
        letter-spacing: 0.12em;
        text-shadow:
            0 0 2px var(--accent-turquoise),
            0 0 4px var(--accent-turquoise),
            0 0 8px var(--accent-turquoise);
    }
    
    .hero-separator {
        width: 120px;
    }
    
    #hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .primary-button, .secondary-button {
        min-height: 48px;
        font-size: 15px;
    }
    
    #email-input {
        min-height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .logo-glow {
        filter: drop-shadow(0 0 15px rgba(61, 167, 255, 0.5));
    }
    
    .neon-text {
        text-shadow:
            0 0 1px var(--primary-blue),
            0 0 3px var(--primary-blue),
            0 0 6px var(--primary-blue),
            0 0 10px var(--primary-blue);
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-glow {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    .neon-text,
    .logo-glow,
    .neon-grid-backdrop,
    #scroll-hint,
    .wobble-text,
    .hero-primary-text,
    .hero-separator,
    .hero-secondary-text {
        animation: none;
    }
    
    .hero-primary-text {
        text-shadow:
            0 0 3px var(--accent-turquoise),
            0 0 6px var(--accent-turquoise),
            0 0 10px var(--accent-turquoise);
    }
    
    .primary-button:hover,
    .social-link:hover {
        transform: none;
    }
    
    /* Keep single fade-in */
    .fade-in {
        transition: opacity 0.6s ease;
    }
    
    /* Disable particles for performance */
    #particles-canvas {
        display: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Already optimized for dark mode */
}

/* Light mode fallback */
@media (prefers-color-scheme: light) {
    :root {
        --bg-midnight: #0a0a0f;
        --neutral-gunmetal: #25293a;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .social-link:hover,
    .primary-button:hover,
    .secondary-button:hover {
        transform: none;
        transition: background-color 0.2s ease;
    }
    
    .social-link:active,
    .primary-button:active,
    .secondary-button:active {
        transform: scale(0.95);
    }
    
    /* Larger touch targets */
    .social-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    #scroll-hint {
        font-size: 28px;
        padding: 12px;
    }
}

/* Print styles */
@media print {
    .neon-grid-backdrop,
    #particles-canvas,
    .social-link,
    #scroll-hint {
        display: none;
    }
    
    .neon-text {
        color: #000;
        text-shadow: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}

/* Canvas Particles */
#particles-canvas {
    opacity: 0.05;
    mix-blend-mode: screen;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-midnight);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-violet);
}

/* Success/Error Messages */
.success-message {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 10px;
    border-radius: 12px;
    margin-top: 10px;
}

.error-message {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px;
    border-radius: 12px;
    margin-top: 10px;
}

/* CTA Lime for high-urgency actions */
.cta-urgent {
    background: var(--cta-lime);
    color: var(--bg-midnight);
    box-shadow: 0 0 10px rgba(207, 255, 54, 0.4);
    font-weight: 600;
}

.cta-urgent:hover {
    box-shadow: 0 0 15px rgba(207, 255, 54, 0.6);
}

/* Motion Guidelines Implementation */
.entrance-animation {
    opacity: 0;
    transform: translateY(-20px);
    animation: entranceSlide 0.6s ease forwards;
}

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

.glow-bloom {
    animation: glowBloom 0.15s ease 0.45s forwards;
}

@keyframes glowBloom {
    from { filter: brightness(1); }
    to { filter: brightness(1.2) drop-shadow(0 0 20px currentColor); }
} 