*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --gold: #d4a843; --gold-light: #f0d078; --gold-dark: #a07830;
    --red: #c41e3a; --bg-dark: #0a0a0f; --bg-card: #12121a;
    --bg-card-hover: #1a1a28; --text: #e0ddd5; --text-muted: #8a8780;
    --border: #2a2a35; --green: #5fc46e;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg-dark); color: var(--text); line-height: 1.65; }
nav {
    position: sticky; top: 0; z-index: 100; background: rgba(10,10,15,0.94);
    backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 2rem;
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; min-height: 60px; gap: 1rem; }
.logo { font-family: 'Cinzel', serif; font-weight: 900; font-size: 1.4rem; color: var(--gold); text-decoration: none; letter-spacing: 2px; white-space: nowrap; }
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 1.1rem; list-style: none; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.84rem; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-light); }
.nav-cta { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #0a0a0f !important; padding: 0.45rem 0.9rem; border-radius: 6px; }
.notice {
    background: rgba(212,168,67,0.08); border-bottom: 1px solid var(--border);
    text-align: center; padding: 0.45rem 1rem; font-size: 0.72rem; color: var(--text-muted);
}
.hero {
    padding: 3.2rem 2rem 2.2rem; text-align: center;
    background: radial-gradient(ellipse at 50% 20%, rgba(212,168,67,0.08), transparent 62%), var(--bg-dark);
}
.kicker { color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-size: 0.76rem; font-weight: 700; margin-bottom: 0.65rem; }
h1, h2, h3 { font-family: 'Cinzel', serif; line-height: 1.2; }
h1 {
    max-width: 900px; margin: 0 auto 0.75rem; font-size: clamp(2rem, 5vw, 3.3rem);
    color: var(--gold-light); font-weight: 900;
}
.hero p { max-width: 760px; margin: 0 auto 1.2rem; color: var(--text-muted); font-size: 1rem; }
.discord-order {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
    flex-wrap: wrap; margin-top: 0.2rem;
}
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.2rem;
    border-radius: 8px; font-size: 0.95rem; font-weight: 700; text-decoration: none;
    border: none; background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0a0a0f; box-shadow: 0 4px 20px rgba(212,168,67,0.22);
}
.discord-label { pointer-events: none; }
.discord-handle { color: var(--gold-light); font-weight: 800; user-select: text; }
.copy-discord {
    padding: 0.5rem 0.85rem; border-radius: 6px; border: 1px solid var(--gold-dark);
    background: rgba(212,168,67,0.08); color: var(--gold-light); font-weight: 800;
    font-size: 0.8rem; cursor: pointer; transition: all 0.2s;
}
.copy-discord:hover { background: rgba(212,168,67,0.16); border-color: var(--gold); }
main { padding-bottom: 2rem; }
.section { padding: 2.4rem 2rem; }
.section-inner { max-width: 920px; margin: 0 auto; }
.section h2 { color: var(--text); font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: 0.8rem; text-align: center; }
.section-copy { color: var(--text-muted); max-width: 780px; margin: 0 auto 1.2rem; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.2rem; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
    padding: 1rem; min-height: 100%;
}
.card:hover { border-color: var(--gold-dark); background: var(--bg-card-hover); }
.card h3 { color: var(--gold-light); font-size: 1rem; margin-bottom: 0.4rem; }
.card p, .card li { color: var(--text-muted); font-size: 0.9rem; }
.card ul { margin: 0.5rem 0 0 1rem; }
.card a { color: var(--gold-light); }
.rune-card { display: flex; align-items: center; gap: 0.85rem; }
.rune-card img { width: 46px; height: 46px; object-fit: contain; border-radius: 6px; background: rgba(212,168,67,0.08); }
.price-table {
    width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
}
.price-table th {
    background: rgba(212,168,67,0.08); color: var(--gold); font-family: 'Cinzel', serif;
    font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; text-align: left;
    padding: 0.8rem 1rem; border-bottom: 1px solid var(--gold-dark);
}
.price-table th:nth-child(2), .price-table td:nth-child(2) { text-align: center; }
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.price-table tr:last-child td { border-bottom: none; }
.price-table a { color: var(--text); text-decoration: none; font-weight: 700; }
.price-table a:hover { color: var(--gold-light); }
.price { color: var(--green); font-weight: 800; }
.hr { color: var(--gold-light); font-family: 'Cinzel', serif; font-weight: 700; }
.link-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; margin-top: 1rem; }
.link-list a {
    color: var(--gold-light); border: 1px solid var(--border); background: rgba(212,168,67,0.05);
    border-radius: 6px; padding: 0.55rem 0.8rem; text-decoration: none; font-weight: 700; font-size: 0.85rem;
}
.link-list a:hover { border-color: var(--gold-dark); background: rgba(212,168,67,0.1); }
.faq { background: var(--bg-card); }
.faq-item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--gold-light); font-size: 1rem; margin-bottom: 0.35rem; }
.faq-item p { color: var(--text-muted); font-size: 0.92rem; }
footer { padding: 2rem; border-top: 1px solid var(--border); text-align: center; }
footer p { color: var(--text-muted); font-size: 0.82rem; }
.disclaimer { max-width: 760px; margin: 0.65rem auto 0; line-height: 1.55; }
.breadcrumb { max-width: 920px; margin: 0 auto; padding: 0.8rem 2rem 0; color: var(--text-muted); font-size: 0.78rem; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.prose { max-width: 780px; margin: 0 auto; color: var(--text-muted); }
.prose p + p { margin-top: 0.9rem; }
.meta-line { color: var(--text-muted); font-size: 0.82rem; margin-top: 0.7rem; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.7rem; list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.84rem; }
.footer-links a:hover { color: var(--gold); }
@media (max-width: 820px) {
    nav { padding: 0 1rem; }
    .nav-inner { align-items: flex-start; flex-direction: column; padding: 0.8rem 0; }
    .nav-links { justify-content: flex-start; gap: 0.75rem; }
    .hero, .section { padding-left: 1rem; padding-right: 1rem; }
    .grid, .grid.two { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .price-table th:nth-child(2), .price-table td:nth-child(2) { display: none; }
    .discord-order { display: flex; }
}
