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

:root {
  --bg: #f5f5f7;
  --white: #ffffff;
  --dark: #1a1a2e;
  --gold: #f5a623;
  --gold2: #e8951a;
  --text: #2d2d2d;
  --muted: #666;
  --border: #e0e0e0;
  --green: #27ae60;
}

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

/* HEADER */
.header {
  background: var(--dark);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 960px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo img { height: 36px; }
.header-nav { display: flex; align-items: center; gap: 20px; }
.header-nav a { color: #aaa; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.header-nav a:hover { color: #fff; }
.header-btns { display: flex; gap: 10px; }
.btn-play {
  background: var(--gold);
  color: var(--dark); padding: 10px 22px;
  border-radius: 8px; font-weight: 700;
  font-size: 14px; text-decoration: none;
  transition: background 0.2s;
}
.btn-play:hover { background: var(--gold2); }
.btn-reg {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold); padding: 8px 20px;
  border-radius: 8px; font-weight: 700;
  font-size: 14px; text-decoration: none;
  transition: all 0.2s;
}
.btn-reg:hover { background: var(--gold); color: var(--dark); }

/* HERO */
.hero {
  background: var(--dark);
  padding: 48px 0 40px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/fon_bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.hero-inner {
  max-width: 960px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  position: relative; z-index: 1;
}
.hero-text { max-width: 480px; }
.hero-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold);
  margin-bottom: 12px; font-weight: 600;
}
.hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 42px; font-weight: 800;
  color: #fff; line-height: 1.1;
  margin-bottom: 16px;
}
.hero-title span { color: var(--gold); }
.hero-desc { color: #aaa; font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.hero-bonus {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 12px; padding: 16px 20px;
  margin-bottom: 24px;
  display: flex; gap: 24px;
}
.hero-bonus-item { text-align: center; }
.hero-bonus-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 32px; font-weight: 800; color: var(--gold);
}
.hero-bonus-label { font-size: 11px; color: #aaa; margin-top: 2px; }
.hero-btns { display: flex; gap: 12px; }
.btn-hero {
  background: var(--gold);
  color: var(--dark); padding: 14px 32px;
  border-radius: 10px; font-weight: 700;
  font-size: 16px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.5); }
.hero-img img {
  max-width: 340px; width: 100%;
  filter: drop-shadow(0 8px 32px rgba(245,166,35,0.3));
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* MAIN */
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.section { padding: 40px 0; }
.section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px; font-weight: 800;
  margin-bottom: 16px; color: var(--dark);
}
.section-text { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }

/* CARDS */
.card {
  background: var(--white);
  border-radius: 16px; padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 10px; color: var(--dark);
}

/* SLOTS SCREENSHOT */
.slots-img {
  border-radius: 12px; overflow: hidden;
  margin: 16px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.slots-img img { width: 100%; display: block; }

/* BONUSES */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
.bonus-card {
  background: var(--white); border-radius: 16px;
  padding: 20px; text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.bonus-card:hover { transform: translateY(-4px); }
.bonus-card img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 12px; }
.bonus-card-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.bonus-card-amount { font-family: 'Exo 2', sans-serif; font-size: 22px; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.bonus-card-desc { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.btn-bonus {
  display: block; background: var(--gold);
  color: var(--dark); padding: 10px;
  border-radius: 8px; font-weight: 700;
  font-size: 13px; text-decoration: none;
  transition: background 0.2s;
}
.btn-bonus:hover { background: var(--gold2); }

/* LEVELS */
.levels-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 16px 0; }
.level-card {
  background: var(--white); border-radius: 12px;
  padding: 16px 10px; text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.level-card img { width: 50px; height: 50px; object-fit: contain; margin-bottom: 8px; }
.level-name { font-weight: 700; font-size: 12px; margin-bottom: 4px; }
.level-cashback { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.level-btn {
  display: block; background: var(--gold);
  color: var(--dark); padding: 6px;
  border-radius: 6px; font-weight: 700;
  font-size: 11px; text-decoration: none;
}

/* SUPPORT */
.support-img { border-radius: 12px; overflow: hidden; margin: 16px 0; }
.support-img img { width: 100%; display: block; }

/* PROS CONS */
.pros-list { list-style: none; }
.pros-list li {
  padding: 8px 0 8px 28px;
  position: relative; font-size: 14px;
  color: var(--text); border-bottom: 1px solid var(--border);
}
.pros-list li:last-child { border-bottom: none; }
.pros-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green); font-weight: 700;
}

/* PAYMENTS */
.payments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 16px 0; }
.payment-card {
  background: var(--white); border-radius: 12px;
  padding: 16px; text-align: center;
  border: 1px solid var(--border);
}
.payment-card-title { font-weight: 700; font-size: 13px; margin-bottom: 6px; }
.payment-card-amount { font-family: 'Exo 2', sans-serif; font-size: 18px; font-weight: 800; color: var(--gold); }
.payment-card-label { font-size: 11px; color: var(--muted); }
.payment-btn {
  display: block; margin-top: 10px;
  background: var(--gold); color: var(--dark);
  padding: 8px; border-radius: 6px;
  font-weight: 700; font-size: 12px;
  text-decoration: none;
}

/* CTA SECTION */
.cta-section {
  background: var(--dark); padding: 48px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/fon_bg.jpg') center/cover;
  opacity: 0.1;
}
.cta-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 32px; font-weight: 800;
  color: #fff; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.cta-title span { color: var(--gold); }
.cta-desc { color: #aaa; margin-bottom: 24px; position: relative; z-index: 1; }
.btn-cta {
  display: inline-block;
  background: var(--gold); color: var(--dark);
  padding: 16px 48px; border-radius: 12px;
  font-weight: 800; font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(245,166,35,0.5);
  transition: transform 0.2s;
  position: relative; z-index: 1;
}
.btn-cta:hover { transform: translateY(-2px); }

/* FOOTER */
.footer { background: var(--dark); padding: 24px 0; }
.footer-inner {
  max-width: 960px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo img { height: 28px; opacity: 0.7; }
.footer-text { color: #555; font-size: 12px; line-height: 1.6; max-width: 500px; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: #555; text-decoration: none; font-size: 12px; }
.footer-links a:hover { color: #aaa; }

/* REGISTER PAGE */
.reg-wrapper {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center;
  justify-content: center; padding: 40px 20px;
}
.reg-box {
  background: var(--white);
  border-radius: 20px; padding: 40px;
  max-width: 480px; width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  text-align: center;
}
.reg-logo { margin-bottom: 24px; }
.reg-logo img { height: 44px; }
.reg-bonus-block {
  background: linear-gradient(135deg, #1a1a2e, #2d2d50);
  border-radius: 16px; padding: 24px;
  margin-bottom: 28px;
}
.reg-bonus-title { color: #fff; font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.reg-bonus-nums { display: flex; justify-content: center; gap: 32px; }
.reg-bonus-num { font-family: 'Exo 2', sans-serif; font-size: 40px; font-weight: 800; color: var(--gold); }
.reg-bonus-label { font-size: 11px; color: #aaa; margin-top: 2px; }
.btn-reg-big {
  display: block; width: 100%;
  background: var(--gold); color: var(--dark);
  padding: 16px; border-radius: 12px;
  font-weight: 800; font-size: 17px;
  text-decoration: none; margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(245,166,35,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: 12px; font-weight: 600;
  font-size: 15px; text-decoration: none;
  transition: all 0.2s;
}
.btn-login-big:hover { border-color: var(--gold); color: var(--gold); }
.reg-note { font-size: 11px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

@media (max-width: 768px) {
  .hero-inner { flex-direction: column; }
  .hero-img { display: none; }
  .hero-title { font-size: 30px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: repeat(3, 1fr); }
  .payments-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .header-nav { display: none; }
}
