/* ==========================================================================
   Robin Ape Web Terminal - Sleek Modern Web3 Redesign
   ========================================================================== */

/* 1. DESIGN SYSTEM VARIABLES & RESET */
:root {
    --bg-primary: #060709;
    --bg-card: rgba(20, 22, 28, 0.65);
    --bg-input: #111317;
    --color-neon-lime: #ccff00;
    --color-neon-lime-rgb: 204, 255, 0;
    --color-dark-accent: #1e2126;
    --color-text-primary: #ffffff;
    --color-text-muted: #8e9ca5;
    --color-text-dim: #545f66;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 12px;
    --border-radius-pill: 50px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);
    --glow-premium: 0 0 20px rgba(204, 255, 0, 0.15), 0 0 40px rgba(204, 255, 0, 0.05);
    --glow-btn: 0 0 25px rgba(204, 255, 0, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* 2. MODERN MESH GRADIENT BACKGROUND */
.mesh-gradients {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background-color: var(--color-neon-lime);
    animation: float-blob-1 25s ease-in-out infinite alternate;
}

.blob-2 {
    bottom: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background-color: var(--color-neon-lime);
    animation: float-blob-2 20s ease-in-out infinite alternate-reverse;
}

@keyframes float-blob-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 80px) scale(1.15); }
    100% { transform: translate(50px, 150px) scale(0.9); }
}

@keyframes float-blob-2 {
    0% { transform: translate(0, 0) scale(0.9); }
    50% { transform: translate(-120px, -60px) scale(1.1); }
    100% { transform: translate(-40px, -100px) scale(1); }
}

/* 3. APP WRAPPER & CONTAINER */
.terminal-wrapper {
    width: 100%;
    max-width: 620px;
    height: 100vh;
    max-height: 800px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.terminal-header {
    height: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.btn-back {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-back:hover {
    color: var(--color-neon-lime);
    background: rgba(204, 255, 0, 0.08);
    border-color: rgba(204, 255, 0, 0.2);
}

.btn-back.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
}

.header-spacer {
    flex-grow: 1;
}

.brand-indicator {
    position: fixed;
    top: 30px;
    left: 40px;
    z-index: 1000;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-neon-lime);
    text-transform: uppercase;
    background: rgba(20, 22, 28, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(204, 255, 0, 0.25);
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(204, 255, 0, 0.1);
    transition: var(--transition-smooth);
}

.terminal-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.terminal-screen {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.terminal-screen.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.98);
}

/* 4. WELCOME SCREEN */
.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(var(--color-neon-lime-rgb), 0.3);
    box-shadow: var(--glow-premium);
    animation: ring-pulse 4s infinite ease-in-out;
}

@keyframes ring-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(var(--color-neon-lime-rgb), 0.1), 0 0 40px rgba(var(--color-neon-lime-rgb), 0.05);
        border-color: rgba(var(--color-neon-lime-rgb), 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(var(--color-neon-lime-rgb), 0.4), 0 0 70px rgba(var(--color-neon-lime-rgb), 0.15);
        border-color: rgba(var(--color-neon-lime-rgb), 0.6);
        transform: scale(1.04);
    }
}

.pixel-logo {
    width: 84%;
    height: 84%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 45px;
    letter-spacing: -0.5px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 70%, var(--color-neon-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.action-container {
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.social-footer {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    background: rgba(20, 22, 28, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-divider {
    color: var(--color-text-dim);
    user-select: none;
}

.social-icon {
    color: var(--color-text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon:hover {
    color: var(--color-neon-lime);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(var(--color-neon-lime-rgb), 0.6));
}

/* 5. FORM CARD & STEPS */
.form-logo-container {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px solid rgba(var(--color-neon-lime-rgb), 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.01);
}

.pixel-logo-small {
    width: 82%;
    height: 82%;
    border-radius: 50%;
    object-fit: cover;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-align: center;
}

/* Rounded progress capsules */
.progress-indicator {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 320px;
}

.step-dot {
    flex-grow: 1;
    height: 5px;
    background-color: var(--color-dark-accent);
    border-radius: var(--border-radius-pill);
    transition: var(--transition-smooth);
    border: none;
}

.step-dot.active {
    background-color: var(--color-neon-lime);
    box-shadow: 0 0 10px rgba(var(--color-neon-lime-rgb), 0.5);
}

.step-dot.completed {
    background-color: rgba(var(--color-neon-lime-rgb), 0.4);
}

/* Sleek glassmorphism card */
.form-card {
    width: 100%;
    background-color: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

/* Light beam sweep effect on step transition */
.form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent
    );
    transform: skewX(-25deg);
    pointer-events: none;
}

.form-card.scanning::after {
    animation: sweep 0.75s ease-out;
}

@keyframes sweep {
    0% { left: -100%; }
    100% { left: 150%; }
}

.form-step-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fade-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-step-container.hidden {
    display: none;
}

@keyframes fade-slide-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 6. INPUTS & LABELS */
.field-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.accent-letter {
    color: var(--color-neon-lime);
}

.input-box-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: var(--bg-input);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.input-box-wrapper:focus-within {
    border-color: var(--color-neon-lime);
    box-shadow: 0 0 0 3px rgba(var(--color-neon-lime-rgb), 0.1);
}

.prefix-symbol {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    padding-left: 20px;
    color: var(--color-text-dim);
    user-select: none;
}

.retro-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    padding: 16px 20px;
}

.input-box-wrapper.no-prefix .retro-input {
    padding-left: 20px;
}

.retro-input::placeholder {
    color: var(--color-text-dim);
    opacity: 0.8;
}

.input-subtext {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: -4px;
}

.field-error-msg {
    font-size: 12px;
    font-weight: 500;
    color: #ff4a4a;
    min-height: 16px;
    margin-top: 2px;
}

/* 7. STEP 3 SPECIFICS (ENGAGEMENT) */
.step-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.tweet-link-box {
    margin: 5px 0;
}

.neon-link {
    font-weight: 600;
    font-size: 13px;
    color: var(--color-neon-lime);
    text-decoration: none;
    border: 1px solid rgba(var(--color-neon-lime-rgb), 0.2);
    background: rgba(var(--color-neon-lime-rgb), 0.04);
    padding: 12px 20px;
    display: block;
    text-align: center;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.neon-link:hover {
    border-color: var(--color-neon-lime);
    background: rgba(var(--color-neon-lime-rgb), 0.1);
    box-shadow: 0 4px 15px rgba(var(--color-neon-lime-rgb), 0.15);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.checkbox-container:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.01);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkmark {
    height: 18px;
    width: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    margin-right: 15px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.checkbox-container input:checked ~ .custom-checkmark {
    border-color: var(--color-neon-lime);
    background-color: var(--color-neon-lime);
}

.checkbox-container input:checked ~ .custom-checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
}

/* 8. STEP 6 SPECIFICS (REVIEW PANEL) */
.review-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-md);
    padding: 20px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 12px;
}

.review-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.btn-review-edit {
    background: none;
    border: none;
    color: var(--color-neon-lime);
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(204, 255, 0, 0.2);
    transition: var(--transition-smooth);
}

.btn-review-edit:hover {
    background: rgba(204, 255, 0, 0.1);
    border-color: var(--color-neon-lime);
    box-shadow: 0 0 8px rgba(204, 255, 0, 0.2);
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.review-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-neon-lime);
    word-break: break-all;
}

/* 9. BUTTONS SYSTEM */
.retro-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-block {
    width: 100%;
}

.btn-large {
    font-size: 15px;
    padding: 18px 44px;
    background-color: var(--color-neon-lime);
    color: #000000;
    border-radius: var(--border-radius-pill);
    letter-spacing: 0.5px;
}

.btn-large:hover {
    box-shadow: var(--glow-btn);
    transform: translateY(-2px);
}

.btn-primary {
    font-size: 14px;
    padding: 16px 28px;
    background-color: var(--color-neon-lime);
    color: #000000;
    border-radius: var(--border-radius-pill);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    box-shadow: var(--glow-btn);
    transform: translateY(-1px);
}

.btn-secondary {
    font-size: 14px;
    padding: 16px 28px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-primary);
    border-radius: var(--border-radius-pill);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-buttons.split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 15px;
}

/* 10. SUCCESS SCREEN / CLOUD TRANSMISSION CONSOLE */
.transmission-active .glow-ring {
    animation: transmission-pulse 1.5s infinite alternate;
}

@keyframes transmission-pulse {
    0% {
        box-shadow: 0 0 15px rgba(var(--color-neon-lime-rgb), 0.2);
        border-color: rgba(var(--color-neon-lime-rgb), 0.2);
    }
    100% {
        box-shadow: 0 0 40px rgba(var(--color-neon-lime-rgb), 0.6);
        border-color: rgba(var(--color-neon-lime-rgb), 0.6);
    }
}

.transmission-console {
    width: 100%;
    height: 220px;
    background-color: #090a0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 20px;
    overflow-y: auto;
    font-family: 'Share Tech Mono', monospace; /* Nice code style for logs */
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.9);
}

.console-line {
    word-break: break-all;
    line-height: 1.5;
}

.console-line.success {
    color: var(--color-neon-lime);
    text-shadow: 0 0 8px rgba(var(--color-neon-lime-rgb), 0.4);
}

.console-line.error {
    color: #ff4a4a;
    text-shadow: 0 0 8px rgba(255, 74, 74, 0.4);
}

.granted-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    animation: fade-slide-in 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.granted-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-neon-lime);
    text-shadow: 0 0 20px rgba(var(--color-neon-lime-rgb), 0.4);
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.granted-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 420px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 11. RESPONSIVE DESIGN Rules */
@media (max-height: 750px) {
    .terminal-wrapper {
        padding: 12px;
    }
    .logo-container {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    .brand-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .form-card {
        padding: 24px;
    }
    .transmission-console {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    .form-title {
        font-size: 22px;
    }
    .form-card {
        padding: 24px 20px;
    }
    .card-buttons.split {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .card-buttons.split button:nth-child(1) {
        order: 2; /* retreat below proceed */
    }
    .card-buttons.split button:nth-child(2) {
        order: 1;
    }
    .btn-large {
        padding: 16px 36px;
        font-size: 14px;
    }
    .btn-primary, .btn-secondary {
        font-size: 13px;
        padding: 14px 22px;
    }
}

/* 12. TOAST NOTIFICATIONS */
.terminal-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(20, 22, 28, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-neon-lime);
    color: var(--color-neon-lime);
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(204, 255, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.terminal-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.opensea-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.65;
    transition: var(--transition-smooth);
}

.social-icon:hover .opensea-icon-img {
    opacity: 1;
    filter: invert(84%) sepia(61%) saturate(1450%) hue-rotate(24deg) brightness(103%) contrast(104%);
}

/* 13. FEATHER RAIN ANIMATION */
.feather-rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.falling-feather {
    position: absolute;
    top: -50px;
    background-image: url('assets/feather_lime.png?v=1');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.12; /* Premium subtle touch */
    animation: fall-and-sway linear infinite;
}

@keyframes fall-and-sway {
    0% {
        top: -60px;
        transform: translateX(0) rotate(0deg);
    }
    30% {
        transform: translateX(40px) rotate(90deg);
    }
    60% {
        transform: translateX(-30px) rotate(220deg);
    }
    100% {
        top: 105vh;
        transform: translateX(10px) rotate(360deg);
    }
}

/* 14. RESPONSIVE FLOATING SOCIALS OVERRIDES */
@media (max-width: 768px) {
    .social-footer {
        position: fixed;
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        gap: 12px;
        background: rgba(20, 22, 28, 0.8);
    }
    .brand-indicator {
        position: fixed;
        top: 15px;
        left: 15px;
        font-size: 13px;
        padding: 8px 16px;
        background: rgba(20, 22, 28, 0.8);
    }
}

/* 15. FOLLOW TWITTER BUTTON STYLES */
.btn-follow-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    transition: var(--transition-smooth);
    margin-bottom: 8px;
    text-decoration: none;
    color: var(--color-text-primary);
    width: 100%;
    box-sizing: border-box;
}
.btn-follow-x:hover {
    background: rgba(204, 255, 0, 0.08);
    border-color: var(--color-neon-lime);
    color: var(--color-neon-lime);
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.15);
}
.btn-follow-x.followed {
    background: rgba(204, 255, 0, 0.15);
    border-color: var(--color-neon-lime);
    color: var(--color-neon-lime);
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.1);
}

/* 16. COUNTDOWN TIMER STYLES */
.countdown-container {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    background: rgba(20, 22, 28, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 300px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    text-align: center;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.timer-val {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-neon-lime);
    text-shadow: 0 0 12px rgba(204, 255, 0, 0.3);
    letter-spacing: 1px;
}

.timer-lbl {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-dim);
    text-transform: uppercase;
    margin-top: 2px;
}

.timer-colon {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: rgba(204, 255, 0, 0.6);
    margin-bottom: 12px;
    animation: flash-colon 1.5s infinite;
}

@keyframes flash-colon {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}
