
:root {
  --bg-main: #0B0E14;
  --bg-surface: #121824;
  --bg-card: #182232;
  --bg-card-hover: #202D42;
  --accent-red: #E01D38;
  --accent-red-hover: #FF2E4D;
  --accent-mint: #00E5B3;
  --accent-gold: #F59E0B;
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --border-color: #243247;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --container-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-logo img { height: 38px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 24px; align-items: center; }
.nav-menu a { font-size: 15px; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.nav-menu a:hover { color: var(--accent-mint); }
.header-actions { display: flex; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.btn-login { background: transparent; border-color: var(--border-color); color: var(--text-main); }
.btn-login:hover { background: var(--bg-card); border-color: var(--accent-mint); color: var(--accent-mint); }
.btn-reg { background: var(--accent-red); color: #fff; box-shadow: 0 4px 16px rgba(224, 29, 56, 0.35); }
.btn-reg:hover { background: var(--accent-red-hover); transform: translateY(-1px); }
.btn-mint { background: var(--accent-mint); color: #0B0E14; font-weight: 800; }
.btn-mint:hover { background: #1affa3; box-shadow: 0 4px 18px rgba(0, 229, 179, 0.4); }

.hero-section {
  position: relative;
  padding: 60px 0 50px;
  background: radial-gradient(circle at 80% 20%, rgba(224, 29, 56, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(0, 229, 179, 0.08) 0%, transparent 40%);
}
.hero-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(224, 29, 56, 0.12);
  border: 1px solid rgba(224, 29, 56, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #FF5A70;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-title { font-size: 40px; font-weight: 900; line-height: 1.15; margin-bottom: 16px; color: #fff; }
.hero-title span { color: var(--accent-red); }
.hero-lead { font-size: 17px; color: var(--text-muted); margin-bottom: 26px; max-width: 540px; }
.hero-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero-feat-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-main); }
.hero-feat-icon { width: 20px; height: 20px; fill: var(--accent-mint); flex-shrink: 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-widget-card {
  background: linear-gradient(145deg, #182232 0%, #121824 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
.widget-tag {
  background: var(--accent-mint);
  color: #0B0E14;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}
.widget-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; color: #fff; }
.widget-bonus { font-size: 30px; font-weight: 900; color: var(--accent-mint); margin-bottom: 14px; }
.widget-countdown {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.countdown-label { font-size: 13px; color: var(--text-muted); }
.countdown-timer { font-family: monospace; font-size: 18px; font-weight: 800; color: #FF5A70; }
.widget-form { display: flex; flex-direction: column; gap: 12px; }
.widget-input {
  width: 100%;
  padding: 12px 16px;
  background: #0B0E14;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 15px;
}
.widget-btn { width: 100%; padding: 14px; font-size: 16px; }

.ticker-section { background: var(--bg-surface); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 12px 0; overflow: hidden; }
.ticker-wrap { display: flex; gap: 30px; white-space: nowrap; animation: ticker 28s linear infinite; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.ticker-win { color: var(--accent-mint); font-weight: 700; }

.slots-section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-title { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.slots-filter-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover { background: var(--accent-red); color: #fff; border-color: var(--accent-red); }

.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.slot-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.slot-card:hover { transform: translateY(-6px); border-color: var(--accent-red); box-shadow: 0 12px 28px rgba(224, 29, 56, 0.2); }
.slot-thumb { position: relative; aspect-ratio: 4/3; width: 100%; overflow: hidden; background: #000; }
.slot-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.slot-card:hover .slot-thumb img { transform: scale(1.08); }
.slot-badge-hot {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #FF2E4D 0%, #E01D38 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 20, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}
.slot-card:hover .slot-overlay { opacity: 1; }
.slot-btn-play {
  padding: 12px 28px;
  background: var(--accent-red);
  color: #fff;
  font-weight: 800;
  border-radius: var(--radius-sm);
  transform: translateY(10px);
  transition: transform 0.25s, background 0.2s;
  box-shadow: 0 4px 16px rgba(224, 29, 56, 0.5);
}
.slot-card:hover .slot-btn-play { transform: translateY(0); }
.slot-btn-play:hover { background: var(--accent-red-hover); }
.slot-info { padding: 16px; display: flex; justify-content: space-between; align-items: center; }
.slot-title { font-size: 16px; font-weight: 700; color: #fff; }
.slot-provider { font-size: 13px; color: var(--accent-mint); font-weight: 600; }

.bonuses-section { padding: 70px 0; background: var(--bg-surface); }
.bonuses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}
.bonus-card:hover { border-color: var(--accent-mint); transform: translateY(-4px); }
.bonus-card-top { margin-bottom: 20px; }
.bonus-card-type { font-size: 12px; text-transform: uppercase; font-weight: 800; color: var(--accent-mint); margin-bottom: 8px; }
.bonus-card-title { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.bonus-card-desc { font-size: 14px; color: var(--text-muted); }
.bonus-card-btn { width: 100%; text-align: center; }

.advantages-section { padding: 70px 0; }
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.adv-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.adv-icon-box {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  background: rgba(224, 29, 56, 0.1);
  border: 1px solid rgba(224, 29, 56, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adv-icon-box svg { width: 28px; height: 28px; fill: var(--accent-red); }
.adv-card-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.adv-card-desc { font-size: 14px; color: var(--text-muted); }

.about-section { padding: 80px 0; background: var(--bg-surface); }
.about-wrapper { max-width: 900px; margin: 0 auto; }
.about-title { font-size: 32px; font-weight: 800; margin-bottom: 24px; color: #fff; text-align: center; }
.about-body p { font-size: 16px; color: #cbd5e1; margin-bottom: 18px; line-height: 1.7; }
.about-body h3 { font-size: 22px; font-weight: 700; color: #fff; margin: 28px 0 14px; }
.about-body ul { margin-left: 20px; margin-bottom: 20px; color: #cbd5e1; }
.about-body li { margin-bottom: 8px; }
.table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--border-color); border-radius: var(--radius-sm); }
.seo-table { width: 100%; border-collapse: collapse; text-align: left; }
.seo-table th, .seo-table td { padding: 12px 18px; border-bottom: 1px solid var(--border-color); }
.seo-table th { background: #0B0E14; color: var(--accent-mint); font-size: 14px; }
.seo-table td { font-size: 14px; color: #cbd5e1; }

.faq-section { padding: 80px 0; }
.faq-container { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item-num {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-red);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item-num.active { border-left-color: var(--accent-mint); background: var(--bg-card); }
.faq-q-btn {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.faq-q-left { display: flex; align-items: center; gap: 16px; }
.faq-number { font-size: 16px; font-weight: 800; color: var(--accent-red); font-family: monospace; }
.faq-item-num.active .faq-number { color: var(--accent-mint); }
.faq-q-text { font-size: 17px; font-weight: 700; color: #fff; }
.faq-icon-toggle { width: 22px; height: 22px; fill: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item-num.active .faq-icon-toggle { transform: rotate(45deg); fill: var(--accent-mint); }
.faq-ans-body { padding: 0 24px 20px 56px; display: none; color: #94A3B8; font-size: 15px; line-height: 1.6; }
.faq-item-num.active .faq-ans-body { display: block; }

.footer { background: #07090D; border-top: 1px solid var(--border-color); padding: 50px 0 30px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; margin-bottom: 30px; }
.footer-logo img { height: 32px; width: auto; }
.footer-nav { display: flex; gap: 20px; list-style: none; }
.footer-nav a { font-size: 14px; color: var(--text-muted); }
.footer-nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #64748B; flex-wrap: wrap; gap: 14px; }
.payments-strip { display: flex; gap: 12px; align-items: center; font-weight: 600; color: var(--text-muted); font-size: 13px; }

@media (max-width: 992px) {
  .hero-split { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { display: none; }
}
@media (max-width: 600px) {
  .slots-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
}
