/* EzyShare design tokens + layout primitives (from ezyshare.html) */

:root {
    --bg: #08070D;
    --bg-2: #0D0B15;
    --surface: #110F1A;
    --surface-2: #16131F;
    --line: rgba(244, 241, 234, 0.09);
    --line-strong: rgba(244, 241, 234, 0.16);
    --gold: #F3C969;
    --gold-deep: #D49B33;
    --gold-soft: rgba(243, 201, 105, 0.14);
    --violet: #7C6BF5;
    --violet-soft: rgba(124, 107, 245, 0.14);
    --text: #F4F1EA;
    --muted: #9A95AD;
    --muted-2: #6E697E;
    --green: #5FD2A0;
    --green-soft: rgba(95, 210, 160, 0.12);
    --maxw: 1180px;
    --display: 'Sora', 'Noto Sans SC', sans-serif;
    --body: 'Manrope', 'Noto Sans SC', sans-serif;
    --mono: 'Space Mono', 'Noto Sans SC', monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(243, 201, 105, 0.45) var(--surface-2);
}

/* Dark theme scrollbars (WebKit + Firefox) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface-2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(243, 201, 105, 0.35);
    border-radius: 4px;
    border: 2px solid var(--surface-2);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

::-webkit-scrollbar-corner {
    background: var(--bg);
}

body.ezyshare-shell,
body.event-classes-page,
body.ezyshare-landing,
body.ezyshare-payment {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.ezyshare-shell::before,
body.event-classes-page::before,
body.ezyshare-landing::before,
body.ezyshare-payment::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(60vw 50vw at 78% 8%, rgba(243, 201, 105, 0.10), transparent 60%),
        radial-gradient(55vw 45vw at 12% 38%, rgba(124, 107, 245, 0.10), transparent 60%),
        radial-gradient(50vw 50vw at 60% 95%, rgba(243, 201, 105, 0.06), transparent 60%);
}

::selection {
    background: var(--gold);
    color: #1a1405;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    position: relative;
    z-index: 2;
}

.scene {
    padding: clamp(56px, 10vw, 100px) 0;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: attr(data-no);
    color: var(--muted-2);
    font-weight: 700;
}

.eyebrow.v {
    color: var(--violet);
}

h1, h2, h3 {
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.03;
}

.h-lg {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    color: var(--muted);
    max-width: 62ch;
}

.gold-text {
    background: linear-gradient(100deg, var(--gold), #ffe6a8 55%, var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 26px;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
    white-space: nowrap;
    max-width: 100%;
    text-align: center;
    justify-content: center;
}

.btn-gold {
    background: var(--gold) !important;
    color: #15110a !important;
    box-shadow: 0 10px 30px rgba(243, 201, 105, 0.32);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(243, 201, 105, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-strong);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

input.btn {
    appearance: none;
    -webkit-appearance: none;
}
