﻿
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0a1e;
  --bg2: #110c26;
  --card: #191032;
  --panel: #1d1340;
  --vio: #8b5cf6;
  --cyan: #22d3ee;
  --gold: #fbbf24;
  --txt: #f1f5f9;
  --sub: #94a3b8;
  --brd: rgba(139, 92, 246, 0.22);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--txt); font-family: 'Segoe UI', Arial, sans-serif; font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.shell { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sec { padding: 80px 0; }
.sec-alt { background: var(--bg2); }

.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 10, 30, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--brd);
}
.hdr-in {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto; gap: 20px;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { display: block; }
.nav-list { display: flex; gap: 4px; }
.nav-list a {
  color: var(--sub); font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-list a:hover { color: var(--cyan); background: rgba(34, 211, 238, 0.08); }
.nav-cta {
  display: inline-block; padding: 10px 22px;
  background: linear-gradient(95deg, var(--vio), var(--cyan));
  color: #0a0618; font-weight: 700; font-size: 14px;
  border-radius: 8px; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--brd);
  color: var(--txt); border-radius: 6px; padding: 6px 10px; cursor: pointer; font-size: 18px;
}
@media (max-width: 900px) {
  .nav-list { display: none; position: absolute; top: 62px; left: 0; right: 0;
    background: #110c26; flex-direction: column; padding: 16px 24px; gap: 8px; border-bottom: 1px solid var(--brd); }
  .nav-list.open { display: flex; }
  .nav-toggle { display: block; }
}

.hero {
  position: relative; padding: 104px 0 0; text-align: center; overflow: hidden;
  background:
    radial-gradient(800px 420px at 18% 0%, rgba(139, 92, 246, 0.22), transparent 60%),
    radial-gradient(700px 380px at 86% 22%, rgba(34, 211, 238, 0.14), transparent 60%),
    var(--bg);
}
.hero h1 {
  font-size: 80px; letter-spacing: 5px; text-transform: uppercase; line-height: 1.05;
  background: linear-gradient(95deg, var(--vio), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
  animation: hShift 7s linear infinite;
}
@keyframes hShift { 0%,100%{filter:hue-rotate(0deg)} 50%{filter:hue-rotate(26deg)} }
.hero-tag { font-size: 18px; color: #fff; letter-spacing: 1px; margin-bottom: 18px; }
.hero-tag b { color: var(--cyan); margin: 0 6px; }
.hero-lead { color: var(--sub); max-width: 620px; margin: 0 auto 36px; font-size: 17px; }
.hero-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 74px; }
.btn-main {
  display: inline-block; padding: 14px 34px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  background: linear-gradient(95deg, var(--vio), var(--cyan));
  color: #0a0618;
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-main:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 38px rgba(34, 211, 238, 0.55); }
.btn-ghost {
  display: inline-block; padding: 14px 34px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  border: 1px solid var(--brd); color: var(--txt);
  background: rgba(25, 16, 50, 0.6);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.ticker {
  border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd);
  background: var(--bg2); overflow: hidden; padding: 12px 0;
}
.ticker-track {
  display: flex; gap: 48px; width: max-content;
  animation: tickMove 28s linear infinite;
}
.ticker-track span {
  color: var(--cyan); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; white-space: nowrap;
}
@keyframes tickMove { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media (max-width: 980px) { .hero h1 { font-size: 54px; } }
@media (max-width: 620px) { .hero { padding-top: 64px; } .hero h1 { font-size: 38px; letter-spacing: 3px; } }

.sec-title {
  font-size: 30px; font-weight: 800; margin-bottom: 10px;
  display: flex; align-items: center; gap: 14px;
}
.sec-title::before {
  content: ''; display: inline-block; width: 4px; height: 28px;
  background: linear-gradient(var(--vio), var(--cyan)); border-radius: 2px; flex-shrink: 0;
}
.sec-sub { color: var(--sub); font-size: 16px; margin-bottom: 36px; }

.tabs-wrap { max-width: 880px; }
.t-btns { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.t-btn {
  background: var(--card); border: 1px solid var(--brd);
  color: var(--sub); padding: 10px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.t-btn:hover { color: #fff; border-color: var(--vio); }
.t-btn.on {
  background: linear-gradient(95deg, var(--vio), var(--cyan));
  color: #0a0618; border-color: transparent;
}
.t-pane {
  display: none; background: var(--card); border: 1px solid var(--brd);
  border-radius: 16px; padding: 32px 30px;
}
.t-pane.on { display: block; animation: pIn 0.35s ease; }
@keyframes pIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.t-pane h3 { font-size: 20px; color: var(--cyan); margin-bottom: 10px; }
.t-pane p { color: var(--sub); font-size: 15px; line-height: 1.7; }
.t-badge {
  display: inline-block; background: rgba(34, 211, 238, 0.12);
  color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 4px; padding: 4px 12px; margin-bottom: 12px;
}

.slots-section { background: var(--bg2); }
.slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.slot-card {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--brd);
  background: var(--card); transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.slot-card:hover { border-color: var(--cyan); box-shadow: 0 0 22px rgba(34, 211, 238, 0.38); transform: translateY(-4px); }
.slot-thumb { width: 100%; height: 150px; object-fit: cover; background: var(--panel); }
.slot-info { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; }
.slot-name { font-weight: 700; font-size: 14px; color: #fff; }
.slot-prov { font-size: 11px; color: var(--sub); }
@media (max-width: 980px) { .slots-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .slots-grid { grid-template-columns: repeat(2, 1fr); } }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: var(--card); border: 1px solid var(--brd); border-radius: 16px; padding: 26px 24px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.feat-card:hover { transform: translateY(-5px); border-color: var(--vio); box-shadow: 0 0 26px rgba(139, 92, 246, 0.22); }
.feat-ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: rgba(139, 92, 246, 0.14);
  color: var(--cyan); margin-bottom: 16px;
}
.feat-card h3 { font-size: 17px; margin-bottom: 8px; }
.feat-card p { color: var(--sub); font-size: 14px; line-height: 1.6; }
@media (max-width: 980px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feat-grid { grid-template-columns: 1fr; } }

.loyalty-section { background: var(--bg); }
.loyalty-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.loyalty-intro h2 { margin-bottom: 14px; }
.loyalty-intro p { color: var(--sub); font-size: 15px; line-height: 1.7; }
.steps-col { display: flex; flex-direction: column; gap: 14px; }
.step-item {
  display: flex; gap: 16px; background: var(--card); border: 1px solid var(--brd);
  border-radius: 14px; padding: 18px 20px; align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}
.step-item:hover { border-color: var(--vio); transform: translateX(5px); }
.step-num {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--vio), var(--cyan));
  color: #0a0618; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.step-item h3 { font-size: 16px; margin-bottom: 4px; }
.step-item p { color: var(--sub); font-size: 14px; }
@media (max-width: 960px) { .loyalty-grid { grid-template-columns: 1fr; gap: 28px; } }

.about-section { background: var(--bg2); padding: 80px 0; }
.about-head { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.about-lead { color: var(--sub); font-size: 16px; margin-bottom: 40px; max-width: 700px; }
.about-body { max-width: 880px; }
.about-col h3 { font-size: 17px; color: var(--cyan); margin: 24px 0 8px; }
.about-col h3:first-child { margin-top: 0; }
.about-col p { color: var(--sub); font-size: 15px; line-height: 1.75; margin-bottom: 8px; }


.faq-section { background: var(--bg); }
.faq-dl { max-width: 820px; }
.faq-row {
  background: var(--card); border-left: 4px solid var(--vio);
  border-radius: 0 14px 14px 0; padding: 20px 24px; margin-bottom: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.faq-row:hover { border-left-color: var(--cyan); transform: translateX(4px); }
.faq-row dt { font-weight: 700; font-size: 16px; margin-bottom: 6px; color: #fff; }
.faq-row dd { color: var(--sub); font-size: 15px; }

.ftr { background: #090717; border-top: 1px solid var(--brd); padding: 40px 0; }
.ftr-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ftr-copy { color: var(--sub); font-size: 14px; }
.ftr-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.ftr-nav a { color: var(--sub); font-size: 14px; transition: color 0.2s; }
.ftr-nav a:hover { color: var(--cyan); }
@media (max-width: 620px) { .sec { padding: 60px 0; } .ftr-in { flex-direction: column; align-items: flex-start; } }
