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

:root {
    --bg: #0f1115;
    --card: rgba(22, 24, 29, .72);
    --text: #fff;
    --accent: #ff9966;
    --accent2: #ff5e62;
    --shadow: rgba(0, 0, 0, .45);
    --glass: rgba(255, 255, 255, .06);
    --sub: rgba(255, 255, 255, .72)
}

body.light {
    --bg: #fff7f2;
    --card: rgba(255, 255, 255, .72);
    --text: #1d1d1d;
    --accent: #ff8a65;
    --accent2: #ff6b6b;
    --shadow: rgba(0, 0, 0, .12);
    --glass: rgba(255, 255, 255, .45);
    --sub: rgba(0, 0, 0, .58)
}

body {
    font: 500 16px Inter, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 153, 102, .22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 94, 98, .16), transparent 36%),
        linear-gradient(135deg, #0f1115, #171923);
    transition: .3s
}

body.light {
    background:
        radial-gradient(circle at top left, rgba(255, 170, 120, .22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 120, 120, .14), transparent 38%),
        linear-gradient(135deg, #fff9f5, #fff1eb)
}

.container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 430px;
    padding: 34px 28px;
    border-radius: 34px;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(22px);
    box-shadow: 0 25px 60px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .08)
}

.container:before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 153, 102, .18), transparent 70%)
}

.new-tag {
    position: absolute;
    top: 22px;
    left: -52px;
    width: 210px;
    padding: 11px 0;
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
    background: linear-gradient(135deg, #43c97b, #1fa463);
    transform: rotate(-35deg);
    box-shadow: 0 12px 28px rgba(34, 197, 94, .35);
    border: 1px solid rgba(255, 255, 255, .12)
}

.emoji-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.emoji {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    border-radius: 20px;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    transition: .28s
}

.emoji:hover {
    transform: translateY(-5px) rotate(-6deg) scale(1.06)
}

h1 {
    margin-bottom: 10px;
    text-align: center;
    font: 700 2.5rem "Clash Display", sans-serif;
    line-height: 1.05;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(255, 120, 100, .15)
}

.subtitle {
    max-width: 300px;
    margin: 0 auto 34px;
    text-align: center;
    line-height: 1.75;
    font-size: .98rem;
    color: var(--sub)
}

.section {
    margin-bottom: 28px
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font: 600 1.08rem "Clash Display", sans-serif
}

.buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    overflow: visible;
}

.buttons a {
    position: relative;
    overflow: visible;
    padding: 15px 14px;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    font-size: .94rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #ffb088 0%, var(--accent) 45%, var(--accent2) 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow:
        0 6px 0 #d14d52,
        0 10px 20px rgba(255, 120, 100, .24),
        inset 0 2px 3px rgba(255, 255, 255, .22),
        inset 0 -2px 4px rgba(0, 0, 0, .12);
    transition: .15s;
}

.buttons a:hover:before {
    left: 120%
}

.buttons a:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 #d14d52,
        0 14px 24px rgba(255, 120, 100, .28),
        inset 0 2px 3px rgba(255, 255, 255, .24)
}

.buttons a:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #d14d52,
        0 6px 12px rgba(255, 120, 100, .18)
}

.button-label {
    position: absolute;
    top: -11px;
    left: -11px;
    padding: 5px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, #34d399, #16a34a);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .4px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow:
        0 8px 18px rgba(22, 163, 74, .35),
        inset 0 1px 2px rgba(255, 255, 255, .25);
    z-index: 5;
    pointer-events: none;
}

.button-label-green {
    background: linear-gradient(135deg, #34d399, #16a34a);
}

.button-label-yellow {
    background: linear-gradient(135deg, #d3d334, #ffcc00);
}

.button-label-red {
    background: linear-gradient(135deg, #e2613d, #ea3030);
}

.footer {
    position: fixed;
    bottom: 18px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: .86rem;
    letter-spacing: .4px;
    color: rgba(255, 255, 255, .5);
    pointer-events: none
}

body.light .footer {
    color: rgba(0, 0, 0, .42)
}

@media(max-width:480px) {
    .container {
        padding: 28px 22px
    }

    .buttons {
        grid-template-columns: 1fr;
        gap: 18px
    }

    h1 {
        font-size: 2rem
    }

    .subtitle {
        font-size: .92rem
    }

    .emoji {
        width: 54px;
        height: 54px;
        font-size: 1.8rem
    }

    .theme-toggle {
        top: 16px;
        right: 16px
    }

    .theme-toggle button {
        width: 50px;
        height: 50px
    }

    .footer {
        bottom: 12px;
        font-size: .78rem
    }
}