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

:root {
    --gold: #d4af37;
    --gold-light: #f0d060;
    --bg: #07070f;
    --surface: #0f0f1c;
    --border: #1c1c2e;
    --text-dim: #4a4a6a;
    --text-mid: #888;
}

body {
    background: var(--bg);
    color: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-glow {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 15% 50%, rgba(212,175,55,.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 85% 50%, rgba(212,175,55,.04) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    width: min(620px, 92vw);
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

/* ── Header ── */
header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    font-weight: 900;
    font-size: 1rem;
    padding: .35rem .75rem;
    border-radius: 6px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.header-text { flex: 1; }

h1 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ddd;
    line-height: 1.2;
}

.tagline {
    font-size: .8rem;
    color: var(--text-dim);
    margin-top: .2rem;
    letter-spacing: 1px;
}

.live-pill {
    display: flex;
    align-items: center;
    gap: .45rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: .3rem .75rem;
    font-size: .75rem;
    color: var(--text-mid);
    transition: color .3s;
    white-space: nowrap;
}

.live-pill.live    { color: #ff5555; border-color: rgba(255,85,85,.3); }
.live-pill.offline { color: var(--text-dim); }

.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.live-pill.live .dot { animation: blink 1.4s ease-in-out infinite; }

@keyframes blink {
    0%,100% { opacity: 1; }
    50%      { opacity: .3; }
}

/* ── Counter ── */
.counter-wrap { text-align: center; margin-bottom: 2.5rem; }

.counter {
    display: inline-flex;
    align-items: flex-end;
    gap: .75rem;
}

.goals {
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.goals.pop { animation: pop .45s cubic-bezier(.36,1.56,.64,1); }

@keyframes pop {
    0%   { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.counter-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: .6rem;
    gap: .1rem;
}

.slash  { font-size: 2.5rem; color: #2a2a3e; font-weight: 100; line-height: 1; }
.target { font-size: 2rem;   color: #333;    font-weight: 300; line-height: 1; }
.label  { font-size: .65rem; color: var(--text-dim); letter-spacing: 3px; text-transform: uppercase; }

/* ── Progress ── */
.progress-wrap { margin-bottom: 2rem; }

.track {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    height: 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 100px;
    box-shadow: 0 0 12px rgba(212,175,55,.5);
    transition: width 1.6s cubic-bezier(.4,0,.2,1);
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    margin-top: .6rem;
    font-size: .72rem;
    color: var(--text-dim);
}

.pct-value { color: var(--gold); font-weight: 600; }

/* ── Cards ── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: .85rem;
    margin-bottom: 2.5rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 1.4rem;
}

.card-label {
    font-size: .65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .4rem;
}

.card-value       { font-size: 1.3rem; font-weight: 700; color: #e0e0e0; }
.card-value.small { font-size: 1rem;   font-weight: 500; }

/* ── SEO text ── */
.seo-text {
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.seo-text h2 {
    font-size: .95rem;
    font-weight: 600;
    color: #bbb;
    margin-bottom: .5rem;
    margin-top: 1rem;
}

.seo-text h2:first-child { margin-top: 0; }

.seo-text p {
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.seo-text strong { color: var(--gold); }

/* ── Footer ── */
footer {
    text-align: center;
    font-size: .72rem;
    color: var(--text-dim);
    padding-top: .5rem;
}

footer a { color: var(--text-dim); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* ── Like button ── */
.like-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    border-radius: 6px;
    padding: .35rem .75rem;
    cursor: pointer;
    font-size: .8rem;
    font-weight: 700;
    color: #000;
    letter-spacing: .5px;
    transition: opacity .2s, transform .1s;
    white-space: nowrap;
    flex-shrink: 0;
}

.like-btn:hover   { opacity: .85; }
.like-btn:active  { transform: scale(.95); }
.like-btn.liked   { opacity: .9; }

.like-count {
    background: rgba(0,0,0,.2);
    border-radius: 4px;
    padding: .1rem .45rem;
    font-size: .75rem;
    font-weight: 900;
    color: #000;
}

/* ── Content sections ── */
.content-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    margin-bottom: 1rem;
}

.content-section h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ddd;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: .75rem;
}

/* ── Table ── */
.table-wrap { overflow-x: auto; }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
    margin-top: .5rem;
}

th {
    text-align: left;
    padding: .6rem .9rem;
    color: var(--gold);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
}

td {
    padding: .65rem .9rem;
    color: #ccc;
    border-bottom: 1px solid #141425;
}

tr:last-child td { border-bottom: none; }

.highlight-row td { color: var(--gold-light); }

.total-row td {
    color: #eee;
    border-top: 1px solid var(--border);
    padding-top: .85rem;
}

.club-tag {
    font-size: .65rem;
    background: #1e1e30;
    color: var(--text-dim);
    padding: .1rem .4rem;
    border-radius: 4px;
    margin-left: .3rem;
}

/* ── Milestones ── */
.milestones { display: flex; flex-direction: column; gap: .85rem; }

.milestone-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.milestone-num {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 3.5rem;
    line-height: 1.2;
}

.milestone-text strong { color: #ddd; font-size: .9rem; }
.milestone-text p { font-size: .82rem; color: var(--text-mid); margin-top: .2rem; line-height: 1.6; }

/* ── Records grid ── */
.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: .85rem;
    margin-top: .5rem;
}

.record-card {
    background: #0a0a18;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
}

.record-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.record-title { font-size: .85rem; font-weight: 700; color: #ddd; margin-bottom: .4rem; }
.record-desc { font-size: .78rem; color: var(--text-mid); line-height: 1.6; }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: .85rem; }

.faq-item {
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
}

.faq-item h3 {
    font-size: .9rem;
    font-weight: 600;
    color: #ddd;
    margin-bottom: .35rem;
}

.faq-item p {
    font-size: .83rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* ── Links section ── */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: .65rem;
    margin-top: .75rem;
}

.link-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: #0a0a18;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .75rem 1rem;
    text-decoration: none;
    color: #bbb;
    font-size: .82rem;
    transition: border-color .2s, color .2s;
}

.link-item:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.link-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ── Celebration ── */
.celebration {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

.celebration.show { animation: showCel 3.2s ease forwards; }

@keyframes showCel {
    0%  { opacity: 0; }
    8%  { opacity: 1; }
    82% { opacity: 1; }
    100%{ opacity: 0; }
}

.cel-ball {
    font-size: 5rem;
    animation: spin 1s ease;
}

@keyframes spin {
    from { transform: rotate(-360deg) scale(0); }
    to   { transform: rotate(0deg) scale(1); }
}

.cel-text {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dropIn .4s .1s cubic-bezier(.36,1.56,.64,1) both;
}

.cel-sub {
    font-size: 1.4rem;
    letter-spacing: 8px;
    color: #fff;
    animation: dropIn .4s .25s cubic-bezier(.36,1.56,.64,1) both;
}

@keyframes dropIn {
    from { transform: translateY(-30px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}
