/* Beluga — Playfair Display gold luxury theme */
:root {
    --gold: #C9A84C;
    --gold-light: #DFC06A;
    --gold-dim: rgba(201,168,76,0.5);
    --accent: #C9A84C;
    --accent-hover: #DFC06A;
    --bg: #0c0c0e;
    --bg2: #141416;
    --surface: rgba(201,168,76,0.03);
    --surface-hover: rgba(201,168,76,0.06);
    --border: rgba(201,168,76,0.1);
    --border-hover: rgba(201,168,76,0.2);
    --text: #d8d4cc;
    --text2: rgba(216,212,204,0.55);
    --text3: rgba(216,212,204,0.28);
    --silver: #b8b8be;
}

.page-bg {
    background:
        linear-gradient(180deg, #18181c 0%, #0c0c0e 35%),
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

/* Gold line across page */
.page-bg::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 1;
}

/* ── Header ── */
header { padding: 52px 0 32px; }

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--gold);
    letter-spacing: 5px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.25);
}

.header-body { padding-top: 22px; }

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 5.5vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: #e8e4dc;
}
h1 .hl { color: var(--gold); }

.subtitle { font-size: 15px; max-width: 440px; line-height: 1.7; }

/* ── Sections ── */
.section-tag {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dim);
    letter-spacing: 3px;
}
h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(21px, 4.5vw, 28px);
}

/* ── Alert ── */
.alert {
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.1);
    border-left: 2px solid var(--gold);
}
.alert h3 { color: var(--gold-light); }

/* ── Button ── */
.btn-big {
    background: linear-gradient(135deg, #C9A84C, #A8882E);
    color: #0c0c0e;
    font-family: inherit;
}
.btn-big:hover {
    background: linear-gradient(135deg, #DFC06A, #C9A84C);
    box-shadow: 0 6px 20px rgba(201,168,76,0.15);
}

/* ── Tabs ── */
.tab.active { background: rgba(201,168,76,0.06); color: var(--gold); }

/* ── Steps ── */
.step:hover { border-color: var(--border-hover); }
.step-n {
    background: transparent;
    border: 1.5px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
}
.step a { color: var(--gold); }
.step-arrow {
    background: rgba(201,168,76,0.04);
    color: var(--gold) !important;
}
.step-arrow:hover { background: rgba(201,168,76,0.08); }

.remark strong { color: var(--gold-dim); }

/* ── VPN grid ── */
.badge-free { background: rgba(201,168,76,0.08); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.15); }
.badge-bot { background: rgba(255,255,255,0.04); }
.vpn-link { color: var(--gold); }

.vpn-bot-label {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    letter-spacing: 3px;
}
.vpn-bot-btn { font-family: inherit; }

/* ── Divider ── */
.sep { margin: 36px 0; }
.sep::before {
    left: 10%; right: 10%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}
.sep span {
    padding: 0 16px;
    color: var(--gold-dim);
    font-size: 14px;
    letter-spacing: 6px;
    background: var(--bg);
}

/* ── Footer ── */
.footer-logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 4px;
}

/* ── Toast ── */
.toast {
    background: var(--gold);
    color: #0c0c0e;
}

/* ── Responsive: Tablet ── */
@media (max-width: 768px) {
    header { padding: 44px 0 28px; }
}

/* ── Responsive: Phone ── */
@media (max-width: 520px) {
    .logo-text { font-size: 14px; letter-spacing: 3px; }
    h1 { font-size: 24px; }
    .section-tag { font-size: 11px; letter-spacing: 2px; }
    h2 { font-size: 20px; }
    .sep span { font-size: 12px; }
    .footer-logo { font-size: 12px; letter-spacing: 3px; }
}

/* ── Responsive: Small phone ── */
@media (max-width: 360px) {
    .logo-text { font-size: 12px; letter-spacing: 2px; }
    h1 { font-size: 20px; }
}
