@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0a1628;
  --bg2: #0d1f3c;
  --bg3: #112244;
  --accent: #f47d20;
  --accent2: #e06910;
  --blue: #1e5cad;
  --blue2: #1a4d96;
  --text: #ffffff;
  --text2: #b0c4de;
  --border: #1e3a5f;
  --green: #2ecc71;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: 'Montserrat', sans-serif; }

/* HEADER */
.header {
  background: var(--blue);
  padding: 12px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo img { height: 32px; }
.header-nav { display: flex; gap: 4px; }
.header-nav a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 6px;
  transition: all 0.2s;
}
.header-nav a:hover, .header-nav a.active {
  background: rgba(255,255,255,0.15); color: #fff;
}
.header-btns { display: flex; gap: 10px; }
.btn-reg {
  background: var(--accent);
  color: #fff; padding: 10px 24px;
  border-radius: 8px; font-weight: 700;
  font-size: 14px; text-decoration: none;
  transition: background 0.2s;
}
.btn-reg:hover { background: var(--accent2); }
.btn-login {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff; padding: 8px 20px;
  border-radius: 8px; font-weight: 600;
  font-size: 14px; text-decoration: none;
  transition: all 0.2s;
}
.btn-login:hover { border-color: #fff; }

/* HERO BANNER */
.hero {
  background: linear-gradient(135deg, #0a2a5e 0%, #0d1f3c 60%, #1a1040 100%);
  position: relative; overflow: hidden;
}
.hero-banner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 20px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; min-height: 220px;
}
.hero-banner-text { padding: 40px 0; }
.hero-banner-label {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text2);
  margin-bottom: 10px;
}
.hero-banner-title {
  font-size: 42px; font-weight: 800;
  line-height: 1.1; margin-bottom: 8px;
}
.hero-banner-title .accent { color: var(--accent); }
.hero-banner-sub { font-size: 16px; color: var(--text2); margin-bottom: 24px; }
.hero-banner-img img {
  height: 220px; object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(244,125,32,0.3));
}

/* BANNER 2 */
.banner2 {
  background: linear-gradient(90deg, #1a3a7a, #0d2a5c);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.banner2-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 24px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.banner2-text h2 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.banner2-text h2 .accent { color: var(--accent); }
.banner2-text p { color: var(--text2); font-size: 14px; }
.banner2-img img { height: 140px; object-fit: contain; }

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 40px 0; }

/* TABLE */
.info-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg2); border-radius: 12px;
  overflow: hidden; margin: 20px 0;
}
.info-table tr:nth-child(even) { background: var(--bg3); }
.info-table td {
  padding: 14px 20px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.info-table td:first-child {
  color: var(--text2); font-weight: 600;
  width: 200px; white-space: nowrap;
}
.info-table td:last-child { color: var(--text); }
.info-table tr:last-child td { border-bottom: none; }

/* SECTION TITLE */
.section-title {
  font-size: 22px; font-weight: 800;
  margin-bottom: 16px; text-align: center;
  position: relative; padding-bottom: 12px;
}
.section-title::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--accent); border-radius: 2px;
}

/* ORANGE LIST */
.orange-list { list-style: none; margin: 16px 0; }
.orange-list li {
  padding: 6px 0 6px 28px;
  position: relative; font-size: 14px;
  color: var(--text2); line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.orange-list li:last-child { border-bottom: none; }
.orange-list li::before {
  content: '●';
  position: absolute; left: 0;
  color: var(--accent); font-size: 10px;
  top: 10px;
}

/* SLOTS TABLE */
.slots-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg2); border-radius: 12px;
  overflow: hidden; margin: 16px 0;
}
.slots-table th {
  background: var(--blue2); padding: 12px 16px;
  font-size: 13px; font-weight: 700;
  text-align: center; color: var(--text2);
}
.slots-table td {
  padding: 12px 16px; font-size: 13px;
  border-bottom: 1px solid var(--border);
  text-align: center; color: var(--text);
}
.slots-table tr:last-child td { border-bottom: none; }
.slots-table tr:hover td { background: rgba(255,255,255,0.03); }
.slots-table td:nth-child(2) { text-align: left; font-weight: 600; }
.slot-num {
  width: 28px; height: 28px;
  background: var(--accent); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
}
.rtp-badge {
  background: rgba(46,204,113,0.15);
  color: var(--green); padding: 4px 10px;
  border-radius: 20px; font-weight: 700;
  font-size: 12px;
}

/* BONUS CARDS */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
.bonus-card {
  background: var(--bg2); border-radius: 16px;
  border: 1px solid var(--border); padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.bonus-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.bonus-card-icon { font-size: 32px; margin-bottom: 12px; }
.bonus-card-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.bonus-card-amount { font-size: 24px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.bonus-card-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* PAYMENTS */
.payments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 16px 0; }
.payment-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; text-align: center;
}
.payment-card-label { font-size: 12px; color: var(--text2); margin-bottom: 4px; }
.payment-card-value { font-size: 20px; font-weight: 800; color: var(--accent); }
.payment-card-sub { font-size: 11px; color: var(--text2); margin-top: 4px; }

/* FAQ */
.faq { margin: 20px 0; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 8px; overflow: hidden;
}
.faq-question {
  padding: 16px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; transition: background 0.2s;
}
.faq-question:hover { background: var(--bg3); }
.faq-question::after { content: '+'; font-size: 20px; color: var(--accent); font-weight: 300; }
.faq-question.open::after { content: '−'; }
.faq-answer {
  padding: 0 20px; max-height: 0; overflow: hidden;
  font-size: 13px; color: var(--text2); line-height: 1.7;
  transition: max-height 0.3s, padding 0.3s;
}
.faq-answer.open { max-height: 200px; padding: 0 20px 16px; }

/* APP SECTION */
.app-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center; margin: 20px 0;
}
.app-img img { width: 100%; border-radius: 12px; }
.app-steps { counter-reset: steps; }
.app-step {
  display: flex; gap: 16px; margin-bottom: 16px;
  align-items: flex-start;
}
.app-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.app-step-text { font-size: 14px; color: var(--text2); line-height: 1.6; padding-top: 4px; }

/* CTA */
.cta {
  background: linear-gradient(135deg, #1a3a7a, #0a2a5e);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0; text-align: center;
}
.cta h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.cta h2 span { color: var(--accent); }
.cta p { color: var(--text2); margin-bottom: 24px; }
.btn-cta {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: 16px 48px; border-radius: 10px;
  font-weight: 800; font-size: 17px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(244,125,32,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(244,125,32,0.5); }

/* REGISTER PAGE */
.reg-page {
  min-height: calc(100vh - 56px);
  background: linear-gradient(135deg, #0a1628, #0d2a5c);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.reg-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
  max-width: 480px; width: 100%; text-align: center;
}
.reg-logo { margin-bottom: 24px; }
.reg-logo img { height: 40px; }
.reg-bonus {
  background: linear-gradient(135deg, #1a3a7a, #112244);
  border: 1px solid var(--accent);
  border-radius: 16px; padding: 24px;
  margin-bottom: 28px;
}
.reg-bonus-title {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text2);
  margin-bottom: 16px;
}
.reg-bonus-nums { display: flex; justify-content: center; gap: 32px; }
.reg-bonus-num { font-size: 40px; font-weight: 800; color: var(--accent); line-height: 1; }
.reg-bonus-label { font-size: 11px; color: var(--text2); margin-top: 4px; }
.btn-reg-big {
  display: block; width: 100%;
  background: var(--accent); color: #fff;
  padding: 16px; border-radius: 10px;
  font-weight: 800; font-size: 17px;
  text-decoration: none; margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(244,125,32,0.4);
  transition: transform 0.2s;
}
.btn-reg-big:hover { transform: translateY(-2px); }
.btn-login-big {
  display: block; width: 100%;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text); padding: 14px;
  border-radius: 10px; font-weight: 600;
  font-size: 15px; text-decoration: none;
  transition: all 0.2s;
}
.btn-login-big:hover { border-color: var(--accent); color: var(--accent); }
.reg-note { font-size: 11px; color: var(--text2); margin-top: 16px; line-height: 1.6; }

/* CARD */
.card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; margin-bottom: 20px;
}

/* FOOTER */
.footer { background: #060f1e; padding: 24px 0; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-logo img { height: 28px; opacity: 0.6; }
.footer-text { font-size: 11px; color: #446; line-height: 1.7; max-width: 600px; }

@media (max-width: 768px) {
  .hero-banner { grid-template-columns: 1fr; }
  .hero-banner-img { display: none; }
  .hero-banner-title { font-size: 28px; }
  .banner2-img { display: none; }
  .bonus-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .info-table td:first-child { width: 120px; }
}
