/* ===============================
   RESET & BASE
   =============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #18181A;
  --bg-secondary: #060509;
  --bg-card: #1E1E21;
  --bg-card2: #222225;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B8;
  --text-muted: #666672;
  --btn-gold: #FAE0A0;
  --btn-gold-hover: #F5CC60;
  --btn-dark: #262627;
  --btn-dark-hover: #333336;
  --accent-gold: #C9A84C;
  --accent-green: #3DB85C;
  --border: #2A2A2E;
  --border-gold: #C9A84C;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.22s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--btn-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--btn-gold-hover); }
ul { list-style: none; }

/* ===============================
   CONTAINER
   =============================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================
   BUTTONS
   =============================== */
.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-gold);
  color: #1A1A1A;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(250,224,160,0.18);
}
.btn-register:hover {
  background: var(--btn-gold-hover);
  color: #1A1A1A;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(250,224,160,0.28);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-dark);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid #3a3a3c;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-login:hover {
  background: var(--btn-dark-hover);
  color: var(--text-primary);
  border-color: #555;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-green);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(61,184,92,0.22);
}
.btn-green:hover {
  background: #2ea84d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(61,184,92,0.32);
}

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--btn-gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid var(--btn-gold);
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--btn-gold);
  color: #1A1A1A;
}

/* ===============================
   HEADER
   =============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(24,24,26,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 66px;
}
.logo-wrap { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-wrap img { height: 38px; width: auto; object-fit: contain; }

.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: block;
  padding: 7px 14px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-link--active { color: var(--btn-gold) !important; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===============================
   HERO SECTION
   =============================== */
.hero {
  background: linear-gradient(135deg, #0A0A0C 0%, #16141F 40%, #1A1420 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--accent-gold); }
.hero-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-promo {
  background: rgba(250,224,160,0.08);
  border: 1px dashed rgba(250,224,160,0.3);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--btn-gold);
}
.hero-promo strong { font-size: 1.1rem; letter-spacing: 0.1em; }

.hero-visual { position: relative; z-index: 1; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-img-wrap img { width: 100%; border-radius: var(--radius-lg); }

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  flex: 1;
  min-width: 110px;
  text-align: center;
}
.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--btn-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===============================
   SECTION STYLES
   =============================== */
.section { padding: 72px 0; }
.section--dark { background: var(--bg-secondary); }
.section--card { background: var(--bg-card); }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--accent-gold); }
.section-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===============================
   JACKPOT BANNER
   =============================== */
.jackpot-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
}
.jackpot-banner img { width: 100%; }

/* ===============================
   BONUS CARDS
   =============================== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(201,168,76,0.3);
}
.bonus-card-img { width: 100%; aspect-ratio: 3/1; object-fit: cover; }
.bonus-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.bonus-card-title { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
.bonus-card-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; flex: 1; }
.bonus-card-footer { margin-top: 14px; }

/* ===============================
   GAME GRID
   =============================== */
.games-section-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.games-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.35); }
.game-card img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.game-card-label {
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* ===============================
   FEATURES LIST
   =============================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(201,168,76,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ===============================
   CONTENT ARTICLE (SEO TEXT)
   =============================== */
.article-content { max-width: 900px; margin: 0 auto; }
.article-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  margin: 40px 0 16px;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--btn-gold);
  line-height: 1.3;
}
.article-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.article-content ul, .article-content ol {
  margin: 16px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-content ul { list-style: none; margin-left: 0; }
.article-content ul li {
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.article-content ul li::before {
  content: '▸';
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  font-size: 0.85rem;
  top: 3px;
}
.article-content ol { list-style: decimal; padding-left: 20px; }
.article-content ol li { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.article-content strong { color: var(--text-primary); font-weight: 700; }
.article-content a { color: var(--accent-gold); }

/* Info boxes */
.info-box {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box p { margin: 0; color: var(--text-primary); font-size: 0.95rem; }

.highlight-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  text-align: center;
}
.highlight-box .big-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--btn-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.highlight-box p { color: var(--text-secondary); margin: 0; font-size: 0.9rem; }

/* ===============================
   PROMO CODE BLOCK
   =============================== */
.promo-block {
  background: linear-gradient(135deg, #1C1A12, #201D14);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin: 40px 0;
}
.promo-block h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.promo-block p { color: var(--text-secondary); margin-bottom: 24px; }
.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.4);
  border: 2px dashed rgba(201,168,76,0.5);
  border-radius: var(--radius);
  padding: 12px 24px;
  margin-bottom: 24px;
}
.promo-code-display .code {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--btn-gold);
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

/* ===============================
   FAQ
   =============================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ===============================
   CRYPTO BLOCK
   =============================== */
.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.crypto-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.crypto-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.crypto-icon { font-size: 2.2rem; margin-bottom: 10px; }
.crypto-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.crypto-desc { font-size: 0.8rem; color: var(--text-muted); }

/* ===============================
   STEPS / HOW TO
   =============================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: steps;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  counter-increment: steps;
  transition: transform var(--transition), border-color var(--transition);
}
.step-card:hover { transform: translateY(-2px); border-color: rgba(201,168,76,0.25); }
.step-number {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-gold), #F5CC60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #1A1A1A;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ===============================
   PROVIDERS
   =============================== */
.providers-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
}
.providers-banner img { width: 100%; }

/* ===============================
   APP SECTION
   =============================== */
.app-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.app-banner img { width: 100%; }

/* ===============================
   TABLE
   =============================== */
.table-wrap { overflow-x: auto; margin: 24px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th {
  background: rgba(201,168,76,0.1);
  color: var(--btn-gold);
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(201,168,76,0.2);
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
tr:hover td { background: rgba(255,255,255,0.02); }

/* ===============================
   BREADCRUMB
   =============================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--btn-gold); }
.breadcrumb-sep { color: var(--text-muted); }

/* ===============================
   BANNER CTA
   =============================== */
.cta-banner {
  background: linear-gradient(135deg, #16141F 0%, #1C1A26 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 14px; }
.cta-banner p { color: var(--text-secondary); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===============================
   FOOTER
   =============================== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-top: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-link:hover { color: var(--btn-gold); }

.promo-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promo-label { font-size: 0.8rem; color: var(--text-muted); }
.promo-code {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--btn-gold);
  letter-spacing: 0.1em;
  background: rgba(250,224,160,0.08);
  border: 1px dashed rgba(250,224,160,0.3);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: inline-block;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-legal { font-size: 0.76rem; color: var(--text-muted); line-height: 1.6; max-width: 900px; }
.footer-nav-bottom { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-link-sm { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; }
.footer-link-sm:hover { color: var(--btn-gold); }

/* ===============================
   PAGE HERO (inner pages)
   =============================== */
.page-hero {
  background: linear-gradient(135deg, #0A0A0C 0%, #16141F 100%);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.page-hero h1 span { color: var(--accent-gold); }
.page-hero p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 640px;
  line-height: 1.7;
}

/* ===============================
   BADGE / CHIPS
   =============================== */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-gold { background: rgba(201,168,76,0.15); color: var(--accent-gold); border: 1px solid rgba(201,168,76,0.25); }
.badge-green { background: rgba(61,184,92,0.15); color: var(--accent-green); border: 1px solid rgba(61,184,92,0.25); }
.badge-new { background: rgba(61,100,220,0.15); color: #6B8CFF; border: 1px solid rgba(61,100,220,0.2); }

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .burger-btn { display: flex; }
  .main-nav { position: relative; }
  .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1C1C1F;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    gap: 2px;
    z-index: 999;
  }
  .nav-list--open { display: flex; }
  .nav-link { width: 100%; }
  .header-cta .btn-login { display: none; }

  .hero { padding: 48px 0 40px; }
  .section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .promo-block { padding: 24px 20px; }
  .cta-banner { padding: 36px 20px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .crypto-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-box { padding: 22px 18px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .hero-cta { flex-direction: column; }
  .cta-banner .cta-btns { flex-direction: column; align-items: center; }
  .crypto-grid { grid-template-columns: 1fr; }
}
