:root {
    --bg: #050607;
    --card: rgba(10, 12, 14, 0.72);
    --card-border: rgba(255, 255, 255, 0.12);
    --text: #f5f6f7;
    --muted: #c9d0d6;
    --discord: #5865F2;
    --discord-hover: #4752c4;
    --paypal: #ffc439;
    --paypal-hover: #f2b930;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
    background:
            radial-gradient(circle at top, rgba(84, 255, 134, 0.15), transparent 30%),
            radial-gradient(circle at left, rgba(50, 140, 255, 0.12), transparent 28%),
            radial-gradient(circle at right, rgba(255, 130, 40, 0.12), transparent 28%),
            var(--bg);
    color: var(--text);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.page {
    width: min(1200px, 100%);
}

.hero {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
            var(--card);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    padding: clamp(28px, 4vw, 54px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.42)),
            radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
}

.art-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.art {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
    user-select: none;
    pointer-events: none;
}

.panel {
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: clamp(24px, 3vw, 34px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(107, 255, 151, 0.12);
    color: #b7ffc4;
    border: 1px solid rgba(129, 255, 167, 0.2);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
}

p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.7;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    appearance: none;
    border: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 15px 22px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-discord {
    background: var(--discord);
    color: white;
}

.btn-discord:hover {
    background: var(--discord-hover);
}

.btn-paypal {
    background: var(--paypal);
    color: #111;
}

.btn-paypal:hover {
    background: var(--paypal-hover);
}

.note {
    margin-top: 18px;
    font-size: 0.92rem;
    color: #9aa7b2;
}

.note code {
    background: rgba(255,255,255,0.08);
    padding: 0.2rem 0.45rem;
    border-radius: 8px;
    color: #e8edf2;
}

@media (max-width: 920px) {
    .content {
        grid-template-columns: 1fr;
    }

    .panel {
        order: 2;
    }

    .art-wrap {
        order: 1;
    }

    .btn {
        width: 100%;
    }
}