/* SubEasy — Cosmic Pink & Light Blue Glitter Theme Stylesheet */

:root {
    /* Cosmic Mint & Sky Blue theme colors (raw components for Tailwind) */
    --brand-500-rgb: 20 184 166;
    --brand-600-rgb: 13 148 136;
    --brand-700-rgb: 15 118 110;
    --brand-900-rgb: 19 78 74;
    
    --cosmic-400-rgb: 56 189 248;
    --cosmic-500-rgb: 14 165 233;
    --cosmic-600-rgb: 2 132 199;
    --cosmic-900-rgb: 12 74 110;
    
    /* CSS variables mapped to rgb functions for custom CSS properties */
    --brand-500: rgb(var(--brand-500-rgb));
    --brand-600: rgb(var(--brand-600-rgb));
    --brand-700: rgb(var(--brand-700-rgb));
    --brand-900: rgb(var(--brand-900-rgb));
    
    --cosmic-400: rgb(var(--cosmic-400-rgb));
    --cosmic-500: rgb(var(--cosmic-500-rgb));
    --cosmic-600: rgb(var(--cosmic-600-rgb));
    --cosmic-900: rgb(var(--cosmic-900-rgb));
    
    /* RGB values for custom glow shadows and drop shadows */
    --brand-rgb: 20, 184, 166;      /* #14b8a6 */
    --cosmic-rgb: 56, 189, 248;     /* #38bdf8 */

    /* Theme-switch variables default (Dark) */
    --cosmicBg: #04020a;
    --glassBg: rgba(18, 12, 28, 0.85);
    --glassBorder: rgba(255, 255, 255, 0.12);
    --text-main: #f1f5f9;
    --card-title: #ffffff;
    --glow-opacity-pink: 0.15;
    --glow-opacity-blue: 0.15;
    --text-muted: #cbd5e1;
    --card-sub-bg: rgba(25, 18, 35, 0.8);
    --tab-inactive: #94a3b8;
    --tab-active-bg: rgba(255, 255, 255, 0.15);
    --input-bg: rgba(15, 10, 25, 0.7);
    --input-border: rgba(255, 255, 255, 0.12);
}

/* Deep space root adjustments */
body {
    background-color: var(--cosmicBg);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Smooth transitions for theme switches */
body, .liquid-glass-card, .glass-panel, main, section, button, input {
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

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

::-webkit-scrollbar-track {
    background: rgba(3, 2, 8, 0.7);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand-500), var(--cosmic-400));
    border-radius: 999px;
    border: 2px solid rgba(4, 2, 10, 0.9);
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--brand-600), var(--cosmic-500));
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Firefox support */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-500) rgba(3, 2, 8, 0.7);
}

/* Starfield canvas overlay */
canvas#starfield-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Glassmorphism custom components */
.glass-panel {
    background: rgba(6, 4, 15, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Shimmer background gradient for a glittery aesthetic (Pink/Amethyst tint) */
@keyframes glitterShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glitter-card-bg {
    background: linear-gradient(135deg, rgba(6, 4, 15, 0.75), rgba(28, 10, 42, 0.75), rgba(6, 4, 15, 0.75));
    background-size: 200% 200%;
    animation: glitterShimmer 6s ease infinite;
}

/* Galactic Card - Cosmic glowing effect with Pink & Cyan accents */
.galactic-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.galactic-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--brand-rgb), 0.28); /* Pink border hover */
    box-shadow: 
        0 12px 40px -10px rgba(var(--cosmic-rgb), 0.16), /* Cyan/Light Blue glow */
        0 0 22px 2px rgba(var(--brand-rgb), 0.08), /* Baby Pink nebulae backdrop glow */
        0 15px 35px 0 rgba(0, 0, 0, 0.55);
}

/* Active tab highlight effect in floating nav pill (Baby Pink & Cyan glow) */
.tab-btn.active-pill {
    color: #ffffff;
    background: rgba(var(--brand-rgb), 0.08); /* Pink active tint */
    border: 1px solid rgba(var(--brand-rgb), 0.35); /* Pink active border */
    box-shadow: 
        0 0 15px -3px rgba(var(--cosmic-rgb), 0.25), /* Cyan glow */
        inset 0 0 8px rgba(var(--brand-rgb), 0.1);
}

.tab-btn:hover:not(.active-pill) {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}

/* Mobile active tab design */
.tab-btn-mobile.active-pill-mobile {
    color: #ffffff;
    background: rgba(var(--brand-rgb), 0.15);
    box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.15), inset 0 1px 1px rgba(255,255,255,0.1);
    border: 1px solid rgba(var(--brand-rgb), 0.3);
}

/* Scrollbar customizations overriding custom scrollbars locally */
.scrollbar-thin::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background: rgba(3, 2, 8, 0.6);
    border-radius: 999px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background: rgba(var(--brand-rgb), 0.2); /* Pink scrollbar thumb */
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--cosmic-rgb), 0.45); /* Cyan scrollbar hover */
}

/* Radar Scan Keyframes & Animations */
@keyframes radarPulse {
    0% {
        transform: scale(0.65);
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.radar-ping {
    animation: radarPulse 3.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.animation-delay-700 {
    animation-delay: 0.8s;
}

.animation-delay-1500 {
    animation-delay: 1.8s;
}

/* Pulse Icons */
@keyframes compassSpin {
    0% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 5px rgba(var(--brand-rgb), 0.3));
    }
    50% {
        transform: rotate(180deg) scale(1.06);
        filter: drop-shadow(0 0 15px rgba(var(--brand-rgb), 0.6));
    }
    100% {
        transform: rotate(360deg) scale(1);
        filter: drop-shadow(0 0 5px rgba(var(--brand-rgb), 0.3));
    }
}

.scan-pulse-icon {
    animation: compassSpin 8s linear infinite;
}

/* Logs slide animation */
.log-line {
    opacity: 0;
    animation: logSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logSlide {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alert Ring pulse (Pink) */
@keyframes criticalPulse {
    0%, 100% {
        box-shadow: 0 0 0 0px rgba(var(--brand-rgb), 0.3);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(var(--brand-rgb), 0);
    }
}

.alert-ring-pulse {
    animation: criticalPulse 2.5s infinite;
}

/* Tab panes entry animation */
.tab-pane {
    animation: tabFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Neon Text glow effects (Pink) */
.text-neon-glow {
    text-shadow: 0 0 12px rgba(var(--brand-rgb), 0.4);
}

/* Custom form elements focuses */
input:focus, select:focus, textarea:focus {
    border-color: rgba(var(--brand-rgb), 0.5) !important;
    box-shadow: 0 0 0 2px rgba(var(--brand-rgb), 0.15) !important;
}

/* Custom Category badges styling overrides */
.category-badge {
    text-shadow: 0 0 8px currentColor;
}

/* ==========================================
   LIQUID GLASS UI ADDITIONS
   ========================================== */

/* Editorial serif titles */
.serif-title {
    font-family: 'Cormorant Garamond', Georgia, Cambria, serif !important;
    font-weight: 500;
}

/* Liquid glass panel base */
.liquid-glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        inset 0 8px 16px -4px rgba(255, 255, 255, 0.03),
        0 10px 40px rgba(0, 0, 0, 0.6);
    border-radius: 28px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.liquid-glass-card:hover {
    border-color: rgba(var(--brand-rgb), 0.22);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.15),
        0 12px 40px -10px rgba(var(--cosmic-rgb), 0.15),
        0 0 25px 2px rgba(var(--brand-rgb), 0.08),
        0 18px 45px rgba(0, 0, 0, 0.65);
    transform: translateY(-3px);
}

/* Glowing liquid spot background in panels */
.liquid-glow-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.12;
    pointer-events: none;
    transition: all 0.8s ease;
    z-index: 0;
}

/* Interactive Card Option styling */
.liquid-option-btn {
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.liquid-option-btn:hover {
    border-color: rgba(var(--brand-rgb), 0.2);
    background: rgba(var(--brand-rgb), 0.04);
    box-shadow: inset 0 0 10px rgba(var(--brand-rgb), 0.05);
}

.liquid-option-btn.active {
    border-color: rgba(var(--brand-rgb), 0.4);
    background: rgba(var(--brand-rgb), 0.08);
    box-shadow: 
        0 0 15px -3px rgba(var(--cosmic-rgb), 0.2),
        inset 0 0 8px rgba(var(--brand-rgb), 0.1);
}

/* Glassmorphic Credit Card Preview */
.glass-credit-card {
    aspect-ratio: 1.58 / 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        0 20px 45px rgba(0, 0, 0, 0.55);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.glass-credit-card:hover {
    transform: rotateY(5deg) rotateX(5deg) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        inset 0 1px 3px rgba(255, 255, 255, 0.3),
        0 25px 50px rgba(0, 0, 0, 0.65),
        0 0 30px rgba(var(--brand-rgb), 0.15);
}

/* Shimmer shine over card face */
.glass-credit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 35%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 65%
    );
    transform: rotate(-25deg);
    animation: cardShine 6s infinite linear;
    pointer-events: none;
}

@keyframes cardShine {
    0% { transform: translate(-30%, -30%) rotate(-25deg); }
    100% { transform: translate(30%, 30%) rotate(-25deg); }
}

.glass-card-bg-gradient {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(var(--brand-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.glass-card-bg-gradient-secondary {
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(var(--cosmic-rgb), 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Embossed Text Effect */
.embossed-text {
    font-family: 'Space Grotesk', monospace;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow: -1px -1px 1px rgba(255,255,255,0.1), 1px 1px 1px rgba(0,0,0,0.5);
}

/* Glass chip styling */
.glass-card-chip {
    width: 38px;
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.glass-card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
}

/* Dynamic avatar select design */
.avatar-option-pill {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.avatar-option-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(var(--brand-rgb), 0.25);
    border-color: rgba(var(--brand-rgb), 0.3);
}

.avatar-option-pill.active {
    transform: scale(1.08);
    border-color: rgba(var(--brand-rgb), 0.6);
    box-shadow: 
        0 0 20px rgba(var(--brand-rgb), 0.3),
        inset 0 0 10px rgba(var(--brand-rgb), 0.15);
}

/* System sync logs console block */
.glass-console {
    background: rgba(3, 1, 7, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Space Grotesk', monospace;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.8);
}

/* Glowing active border for profile avatar in header */
.avatar-active-glow {
    box-shadow: 
        0 0 25px rgba(var(--brand-rgb), 0.65),
        inset 0 0 10px rgba(var(--brand-rgb), 0.4) !important;
    border-color: rgba(var(--brand-rgb), 0.8) !important;
    transform: scale(1.08);
}

/* Discovery slideshow animations */
.discovery-slide,
.discovery-slide-graphic {
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.discovery-slide.hidden,
.discovery-slide-graphic.hidden {
    display: none !important;
    opacity: 0 !important;
    transform: translateY(15px);
}

.discovery-slide:not(.hidden),
.discovery-slide-graphic:not(.hidden) {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0);
}

/* Shake animation for incorrect verification code */
@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.shake-error {
    animation: shakeError 0.4s ease-in-out;
}

/* Custom states for individual OTP digit boxes */
.otp-box {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.otp-box.error {
    border-color: rgba(239, 68, 68, 0.5) !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.25) !important;
    color: #fca5a5 !important;
}

.otp-box.success {
    border-color: rgba(16, 185, 129, 0.5) !important;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.25) !important;
    color: #a7f3d0 !important;
}

/* Theme adjustments for tab buttons and inputs */
.login-tab-btn {
    color: var(--text-muted) !important;
    background-color: transparent !important;
    border-color: transparent !important;
}

.login-tab-btn:hover {
    color: var(--card-title) !important;
}

.login-tab-btn.active {
    color: var(--card-title) !important;
    background-color: var(--tab-active-bg) !important;
    border-color: var(--glassBorder) !important;
}

input[type="text"], input[type="email"], select {
    background-color: var(--input-bg) !important;
    border-color: var(--input-border) !important;
    color: var(--card-title) !important;
}

input::placeholder {
    color: var(--text-muted) !important;
}

/* Redesign Additions */
.cyber-grid {
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
}

#btn-gmail-login {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

#btn-gmail-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.12), rgba(6, 182, 212, 0.12));
    opacity: 0;
    transition: opacity 0.4s ease;
}

#btn-gmail-login:hover::before {
    opacity: 1;
}

#btn-gmail-login:hover {
    box-shadow: 
        0 0 25px rgba(236, 72, 153, 0.25), 
        0 0 10px rgba(6, 182, 212, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border-color: rgba(236, 72, 153, 0.45) !important;
    transform: translateY(-2px);
}

.interactive-tilt {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-console {
    position: relative;
    overflow: hidden;
}

.glass-console::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 3px, 3px 100%;
    pointer-events: none;
    z-index: 10;
}

@keyframes tabSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tab-pane {
    animation: tabSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 767px) {
    #earlyAccessModal,
    #betaModal,
    #confirmationModal {
        padding: 0.65rem;
        align-items: flex-end;
    }

    #earlyAccessModal #modalContent,
    #betaModal #betaModalContent,
    #confirmationModal #confirmationModalContent {
        transform: translateY(26px) scale(0.98);
        transform-origin: bottom center;
        transition: transform 0.3s ease;
    }

    #earlyAccessModal.opacity-100 #modalContent,
    #betaModal.opacity-100 #betaModalContent,
    #confirmationModal.opacity-100 #confirmationModalContent {
        transform: translateY(0) scale(1);
    }

    #earlyAccessModal > div,
    #betaModal > div,
    #confirmationModal > div {
        width: min(100%, 420px);
        max-width: calc(100vw - 1.25rem);
        margin: 0 auto;
    }

    #earlyAccessModal .glass-card,
    #betaModal .glass-card,
    #confirmationModal .glass-card {
        max-height: min(82dvh, 86vh);
        border-radius: 22px;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    #earlyAccessModal .glass-card::-webkit-scrollbar,
    #betaModal .glass-card::-webkit-scrollbar,
    #confirmationModal .glass-card::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    #earlyAccessModal .glass-card::-webkit-scrollbar,
    #betaModal .glass-card::-webkit-scrollbar,
    #confirmationModal .glass-card::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    #earlyAccessModal .relative.p-5,
    #betaModal .relative.p-6,
    #confirmationModal .relative.p-6 {
        padding: 1rem !important;
    }

    #earlyAccessModal .grid {
        gap: 1rem;
    }

    #earlyAccessModal h3,
    #betaModal h3,
    #confirmationModal h3 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        line-height: 1.2 !important;
    }

    #earlyAccessModal p,
    #betaModal p,
    #confirmationModal p,
    #earlyAccessModal label,
    #earlyAccessModal input,
    #earlyAccessModal textarea,
    #earlyAccessModal button {
        font-size: 14px !important;
    }

    #earlyAccessModal textarea {
        min-height: 88px;
    }

    #earlyAccessModal .bg-secondary\/15,
    #betaModal .bg-primary\/15,
    #confirmationModal .bg-gradient-to-br {
        border-radius: 14px;
    }
}

@media (max-width: 374px) {
    #earlyAccessModal,
    #betaModal,
    #confirmationModal {
        padding: 0.45rem;
    }

    #earlyAccessModal > div,
    #betaModal > div,
    #confirmationModal > div {
        width: min(100%, 300px);
        max-width: calc(100vw - 0.7rem);
    }

    #earlyAccessModal .glass-card,
    #betaModal .glass-card,
    #confirmationModal .glass-card {
        max-height: 78dvh;
        border-radius: 18px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    #earlyAccessModal .glass-card::-webkit-scrollbar,
    #betaModal .glass-card::-webkit-scrollbar,
    #confirmationModal .glass-card::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    #earlyAccessModal .relative.p-5,
    #betaModal .relative.p-6,
    #confirmationModal .relative.p-6 {
        padding: 0.75rem !important;
    }

    #earlyAccessModal .grid {
        gap: 0.75rem;
    }

    #earlyAccessModal form,
    #earlyAccessModal .space-y-3,
    #earlyAccessModal .space-y-4 {
        gap: 0.5rem !important;
    }

    #earlyAccessModal .space-y-3 > div,
    #earlyAccessModal .space-y-4 > div {
        margin-top: 0.25rem;
    }

    #earlyAccessModal h3,
    #betaModal h3,
    #confirmationModal h3 {
        font-size: 1.35rem !important;
        margin-bottom: 0.5rem !important;
    }

    #earlyAccessModal p,
    #betaModal p,
    #confirmationModal p,
    #earlyAccessModal label,
    #earlyAccessModal input,
    #earlyAccessModal textarea,
    #earlyAccessModal button {
        font-size: 12.5px !important;
    }

    #earlyAccessModal textarea {
        min-height: 74px;
    }

    #earlyAccessModal .bg-secondary\/15,
    #betaModal .bg-primary\/15,
    #confirmationModal .bg-gradient-to-br {
        padding: 0.7rem !important;
    }
}

/* STITCH SCREEN CSS */
.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .neon-glow-cyan {
            box-shadow: 0 0 20px rgba(0, 219, 231, 0.2);
        }
        .neon-glow-pink {
            box-shadow: 0 0 20px rgba(255, 179, 181, 0.2);
        }
        @keyframes pulse-cyan {
            0%, 100% { box-shadow: 0 0 15px rgba(0, 219, 231, 0.3); }
            50% { box-shadow: 0 0 30px rgba(0, 219, 231, 0.6); }
        }
        .animate-pulse-cyan:focus {
            animation: pulse-cyan 2s infinite;
        }
        .bg-void {
            background-color: #0a0a0f;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(0, 219, 231, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 5, 65, 0.05) 0%, transparent 50%);
        }

/* GLOBAL SCROLLBAR & PROGRESS BAR FIX */
::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    background: transparent !important;
    display: none !important;
}
html, body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    scroll-behavior: smooth;
}

#global-scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 9999999;
    background: transparent;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#global-scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--brand-500, #20d2eb), #cf7bfe, var(--cosmic-400, #8b80f9));
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}