* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #ffffff;
    --fg: #00e676;
    --fg-dark: #111111;
    --accent: #00e676;
    --muted: rgba(0, 230, 118, 0.6);
    --border: rgba(0, 230, 118, 0.2);
    --glow: rgba(0, 230, 118, 0.3);
    --card-bg: rgba(0, 230, 118, 0.05);
    --card-border: rgba(0, 230, 118, 0.15);
}

body {
    background: linear-gradient(160deg, #ffffff 0%, #e8fff0 40%, #c8f7dc 70%, #a8f0c6 100%);
    color: var(--fg);
    font-family: 'Inter', system-ui, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ─── Tech Grid Background (disabled) ─── */
.tech-grid {
    display: none;
}

/* ─── Main Layout ─── */
main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 48px 24px;
    gap: 32px;
}

/* ─── Banner ─── */
.banner-img {
    width: 80%;
    max-width: 700px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 24px -4px rgba(0, 230, 118, 0.12);
}

/* ─── Title ─── */
.title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1;
    background: linear-gradient(135deg, #00e676 0%, #00c965 40%, #006d3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 109, 58, 0.3)) drop-shadow(0 4px 12px rgba(0, 230, 118, 0.2));
}

.title-divider {
    opacity: 0.35;
    margin: 0 0.05em;
}

.subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
    background: linear-gradient(135deg, #00e676 0%, #00a854 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-top: -16px;
    filter: drop-shadow(0 1px 2px rgba(0, 109, 58, 0.2));
}

/* ─── Challenge Text ─── */
.challenge {
    font-size: clamp(15px, 2.5vw, 18px);
    font-weight: 600;
    color: #008744;
    text-align: center;
    max-width: 480px;
    line-height: 1.6;
    margin-top: -12px;
    text-shadow: 0 1px 2px rgba(0, 109, 58, 0.1);
}

/* ─── Status ─── */
.status {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    min-height: 20px;
}

.status.ended {
    color: #009e50;
    font-weight: 700;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ─── Countdown ─── */
.countdown {
    display: flex;
    align-items: center;
    gap: 16px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.time-value {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
    min-width: 2ch;
    text-align: center;
    background: linear-gradient(180deg, #00e676 0%, #007a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 109, 58, 0.25));
}

.time-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: #00a854;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.time-separator {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    background: linear-gradient(180deg, #00e676 0%, #007a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    align-self: flex-start;
}

/* ─── Market Cap ─── */
.mcap-section {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(0, 230, 118, 0.06));
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 4px 12px -2px rgba(0, 230, 118, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 230, 118, 0.05);
}

.mcap-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mcap-bar-bg {
    width: 100%;
    height: 40px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.mcap-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00e676, #00c965, #00a854);
    border-radius: 10px;
    transition: width 1.5s ease;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    position: relative;
}

.mcap-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
    border-radius: 10px 10px 0 0;
}

.mcap-bar-pct {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0b0e11;
}

.mcap-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #009e50;
    letter-spacing: 0.1em;
}

.mcap-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.mcap-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mcap-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #00b85e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.mcap-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #009e50;
}

/* ─── CA Box ─── */
.ca-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(0, 230, 118, 0.06));
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', system-ui, monospace;
    color: #009e50;
    position: relative;
    max-width: 100%;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 4px 12px -2px rgba(0, 230, 118, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 230, 118, 0.05);
}

.ca-box:hover {
    border-color: var(--accent);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 20px -4px rgba(0, 230, 118, 0.15),
        0 0 0 3px var(--glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.ca-label {
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.ca-address {
    font-size: 14px;
    letter-spacing: 0.05em;
    word-break: break-all;
}

.copy-icon {
    color: var(--muted);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.ca-box:hover .copy-icon {
    color: var(--fg);
}

.copied-toast {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--muted);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ca-box.copied .copied-toast {
    opacity: 1;
}

/* ─── Socials ─── */
.socials {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(0, 230, 118, 0.06));
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 2px 4px -1px rgba(0, 230, 118, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.social-button:hover {
    color: #009e50;
    border-color: var(--accent);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 20px -4px rgba(0, 230, 118, 0.15),
        0 0 0 3px var(--glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ─── Mobile ─── */
@media (max-width: 480px) {
    main {
        gap: 24px;
        padding: 32px 16px;
    }

    .countdown {
        gap: 8px;
    }

    .ca-box {
        padding: 12px 14px;
        gap: 8px;
    }

    .ca-address {
        font-size: 11px;
    }

    .ca-label {
        font-size: 12px;
    }

    .mcap-section {
        max-width: 100%;
        padding: 16px;
    }

    .mcap-stats {
        gap: 16px;
    }

    .mcap-stat-value {
        font-size: 15px;
    }

    .mcap-bar-bg {
        height: 32px;
    }
}
