:root {
  --gold: #f5c518;
  --gold-dark: #d4a800;
  --gold-light: #ffe066;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #181818;
  --border: rgba(255,255,255,0.08);
  --text: #ededed;
  --text-muted: #9ca3af;
  --radius: 16px;
  --radius-lg: 24px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; min-height: 100vh; display: flex; flex-direction: column; line-height: 1.6; }
.header { position: sticky; top: 0; z-index: 100; background: rgba(0,0,0,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 40px; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; white-space: nowrap; }
.nav a:hover, .nav a.active { color: var(--gold); }
.btn-gold { background: var(--gold); color: #000; font-weight: 700; font-size: 14px; padding: 10px 24px; border-radius: 50px; text-decoration: none; transition: background .2s, transform .1s; white-space: nowrap; display: inline-block; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); font-weight: 700; font-size: 14px; padding: 8px 20px; border-radius: 50px; text-decoration: none; transition: all .2s; white-space: nowrap; display: inline-block; }
.btn-outline:hover { background: var(--gold); color: #000; }
.page-hero { background: linear-gradient(135deg, #0a0a0a 0%, #1a1000 50%, #0a0a0a 100%); padding: 60px 20px 50px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.1) 0%, transparent 70%); pointer-events: none; }
.page-hero__badge { display: inline-block; background: rgba(245,197,24,0.15); border: 1px solid rgba(245,197,24,0.3); color: var(--gold); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(24px,4vw,44px); font-weight: 900; line-height: 1.2; margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); font-size: clamp(14px,2vw,17px); max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.section { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.section__title { font-size: clamp(20px,3vw,32px); font-weight: 800; margin-bottom: 12px; }
.section__title span { color: var(--gold); }
.section__sub { color: var(--text-muted); font-size: 15px; margin-bottom: 36px; }
.card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: border-color .2s, transform .2s; }
.card:hover { border-color: rgba(245,197,24,0.3); transform: translateY(-3px); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { padding: 18px 24px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '▾'; color: var(--gold); transition: transform .2s; font-size: 18px; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.faq-item a { color: var(--gold); }
.seo-block { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 20px; }
.seo-inner { max-width: 1000px; margin: 0 auto; }
.seo-inner h2 { font-size: 24px; font-weight: 800; margin-bottom: 14px; }
.seo-inner h3 { font-size: 17px; font-weight: 700; margin: 26px 0 8px; color: var(--gold); }
.seo-inner p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 10px; }
.seo-inner a { color: var(--gold); text-decoration: none; }
.seo-inner a:hover { text-decoration: underline; }
footer { background: #000; border-top: 1px solid var(--border); padding: 48px 20px 24px; margin-top: auto; }
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand p { color: var(--text-muted); font-size: 13px; margin-top: 12px; line-height: 1.7; }
.footer__col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer__col ul li a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__license { color: var(--text-muted); font-size: 12px; }
.footer__pplx { color: var(--text-muted); font-size: 12px; text-decoration: none; }
.footer__pplx:hover { color: var(--gold); }
@media(max-width:900px) { .grid-3 { grid-template-columns: 1fr 1fr; } .footer__grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px) { .nav { display: none; } .grid-3, .grid-2 { grid-template-columns: 1fr; } .footer__grid { grid-template-columns: 1fr; } }
