* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom, #0a1f4a, #1e3a8a);
    color: #ffffff;
    font-family: 'Press Start 2P', system-ui;
    line-height: 1.6;
    image-rendering: pixelated;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15), transparent 70%);
    z-index: 0;
}

.logo-container {
    margin-bottom: 25px;
    filter: drop-shadow(0 0 55px #ffcc00);
    z-index: 1;
}

.logo {
    width: 280px;
}

/* TEXT */
.title {
    font-size: 3.2rem;
    color: #ffcc00;
    text-shadow: 0 0 25px #ff6600;
    margin-bottom: 8px;
    z-index: 1;
}

.subtitle {
    font-size: 1.5rem;
    color: #ffdd88;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

/* HYPE */
.hype-text {
    margin: 30px 0 50px;
    z-index: 1;
    overflow-x: hidden;
}

.born {
    font-size: 2rem;
    color: #ffcc00;
    text-shadow: 0 0 20px #ff6600;
    margin-bottom: 25px;
    letter-spacing: 4px;
}

/* WARNING */
.warning-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.warning-icon {
    width: 45px;
    height: 45px;
}

.warning-text {
    font-size: 1.15rem;
    color: #ffdd88;
    letter-spacing: 2px;
    text-shadow: 0 0 12px #ff6600;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.btn {
    padding: 18px 34px;
    border-radius: 8px;
    font-family: 'Press Start 2P', system-ui;
    font-size: 1rem;
    cursor: pointer;
}

.btn.primary {
    background: #ff6600;
    color: #000;
    box-shadow: 0 0 30px #ffcc00;
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 3px solid #ffcc00;
}

/* LIVE NOW */
.live-now {
    font-size: 2.3rem;
    color: #ffcc00;
    text-shadow: 0 0 30px #ff6600;
    letter-spacing: 4px;
    background: rgba(255,255,255,0.08);
    padding: 22px 60px;
    border: 3px solid #ffcc00;
    border-radius: 12px;
    display: inline-block;
    white-space: nowrap;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 80px 20px;
    background: #0a1f4a;
}

.section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: #ffcc00;
}

.box {
    background: rgba(255,255,255,0.08);
    border: 2px solid #ff6600;
    border-radius: 12px;
    padding: 45px 40px;
    max-width: 820px;
    margin: 0 auto;
}

.box p, .box li {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 1rem;
}

.how-to-buy-list {
    padding-left: 25px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.how-to-buy-list li::marker {
    color: #ffcc00;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

/* ==================== MOBILE ==================== */
@media (max-width: 768px) {

    .logo { width: 210px; }

    .title { font-size: 2.3rem; }
    .subtitle { font-size: 1rem; }

    .born {
        font-size: 1.3rem;
        white-space: nowrap;
    }

    /* BUTTON SMALLER */
    .btn {
        font-size: 0.75rem;
        padding: 12px 18px;
    }

    /* SECTION SPACING */
    .section {
        padding: 50px 16px;
    }

    .section h2 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .box {
        padding: 25px 20px;
    }

    /* TEXT */
    .box p,
    .box li {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    /* WARNING */
    .warning-line {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        margin-bottom: 30px;
    }

    .warning-icon {
        width: 28px;
        height: 28px;
    }

    .warning-text {
        font-size: 0.75rem;
        text-align: center;
    }

    /* LIVE NOW */
    .live-now {
        font-size: 1.1rem;
        padding: 10px 20px;
        letter-spacing: 2px;
        display: inline-flex;
        gap: 8px;
    }

    /* FOOTER SIZE MATCH */
    footer {
        font-size: 0.8rem;
        opacity: 0.7;
    }
}

/* EXTRA SMALL */
@media (max-width: 480px) {

    .logo { width: 180px; }

    .title { font-size: 1.9rem; }

    .section {
        padding: 40px 14px;
    }

    .section h2 {
        font-size: 1rem;
    }

    .box p,
    .box li {
        font-size: 0.7rem;
    }

    .btn {
        font-size: 0.65rem;
        padding: 10px 14px;
    }

    .live-now {
        font-size: 0.95rem;
        padding: 8px 14px;
    }

    footer {
        font-size: 0.7rem;
    }
}
