:root {
  --bg: #0F1B2D;
  --bg-alt: #111827;
  --card: #1B2A41;
  --card-hover: #1E2D45;
  --primary: #1E90FF;
  --primary-hover: #1A73E8;
  --secondary: #00C2FF;
  --success: #2ECC71;
  --success-dark: #27AE60;
  --gold: #F4C542;
  --text: #FFFFFF;
  --text-muted: #C9D1D9;
  --border: 1px solid rgba(201, 209, 217, 0.12);
  --radius: 12px;
  --radius-btn: 10px;
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
.font-heading { font-family: 'Poppins', sans-serif; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--secondary); }
.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container { padding: 0 24px; max-width: 900px; }
}
@media (min-width: 1024px) {
  .container { max-width: 960px; padding: 0 32px; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--card) 0%, var(--card-hover) 50%, #152238 100%);
  border-bottom: var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  height: 36px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
}
@media (min-width: 768px) { .logo { height: 42px; border-radius: 14px; } }
.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nav a {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.05);
  transition: background .2s, border-color .2s, color .2s;
}
.nav a:hover {
  background: rgba(30, 144, 255, 0.2);
  border-color: var(--primary);
  color: var(--secondary);
}

.hero {
  padding: 28px 0 36px;
  border-bottom: var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.hero-text {
  order: 1;
  text-align: center;
}
.hero-image-wrap {
  order: 2;
  width: 100%;
  max-width: 280px;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero-image-wrap img { width: 100%; }
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
  color: var(--text);
  line-height: 1.25;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 0 24px;
  }
  .hero-text {
    flex: 1;
    text-align: left;
    order: 1;
  }
  .hero-image-wrap {
    flex-shrink: 0;
    max-width: 320px;
    order: 2;
  }
  .hero h1 { font-size: 2.25rem; margin-bottom: 24px; text-align: left; }
  .hero-buttons { justify-content: flex-start; }
  .hero { padding: 36px 0 48px; }
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, filter .2s;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  filter: brightness(1.1);
}
.btn-success {
  background: linear-gradient(180deg, var(--success) 0%, var(--success-dark) 100%);
  color: #fff;
  border: 1px solid var(--success-dark);
}
.btn-success:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 24px rgba(46, 204, 113, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(0, 194, 255, 0.5);
}
.btn-secondary:hover {
  background: rgba(0, 194, 255, 0.12);
}
.btn-cta {
  background: linear-gradient(180deg, var(--success) 0%, var(--success-dark) 100%);
  color: #fff;
  border: 1px solid var(--success-dark);
}
.btn-cta:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 28px rgba(46, 204, 113, 0.55);
}
.btn {
  animation: btn-pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(30, 144, 255, 0.45), 0 0 32px rgba(30, 144, 255, 0.2);
}
.btn-cta, .btn-success {
  box-shadow: 0 0 18px rgba(46, 204, 113, 0.5), 0 0 36px rgba(46, 204, 113, 0.25);
}
.btn-cta { animation: btn-pulse-green 1.8s ease-in-out infinite; }
.btn:hover {
  transform: scale(1.03);
}
.btn {
  transform: scale(1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 0 16px rgba(30, 144, 255, 0.45), 0 0 32px rgba(30, 144, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 28px rgba(30, 144, 255, 0.7), 0 0 48px rgba(30, 144, 255, 0.35);
  }
}
@keyframes btn-pulse-green {
  0%, 100% {
    box-shadow: 0 0 18px rgba(46, 204, 113, 0.5), 0 0 36px rgba(46, 204, 113, 0.25);
  }
  50% {
    box-shadow: 0 0 32px rgba(46, 204, 113, 0.8), 0 0 56px rgba(46, 204, 113, 0.4);
  }
}

section {
  padding: 28px 0;
  border-bottom: var(--border);
}
section:last-of-type { border-bottom: none; }
.section-card {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}
h2::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
h2.h2-icon-shield::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4C542' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}
h2.h2-icon-gift::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4C542' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 12 20 22 4 22 4 12'/%3E%3Crect x='2' y='7' width='20' height='5'/%3E%3Cline x1='12' y1='22' x2='12' y2='7'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z'/%3E%3C/svg%3E");
}
h2.h2-icon-joystick::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4C542' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 11h-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2z'/%3E%3Cpath d='M6 11H4a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2z'/%3E%3Cpath d='M9 8v8'/%3E%3Cpath d='M15 8v8'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
}
@media (min-width: 768px) { h2 { font-size: 1.65rem; margin-bottom: 20px; } }
h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
p { margin: 0 0 14px; color: var(--text-muted); font-size: 14px; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

.table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 13px;
}
@media (min-width: 768px) { table { font-size: 14px; } }
th, td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: var(--border);
  color: var(--text-muted);
}
th {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(30, 144, 255, 0.15);
  color: var(--secondary);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255, 255, 255, 0.04); }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
@media (min-width: 480px) { .slot-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; } }
@media (min-width: 768px) { .slot-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 14px; } }
.slot-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border);
  background: var(--card);
  transition: transform .2s, box-shadow .2s;
}
.slot-grid a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(30, 144, 255, 0.25);
}
.slot-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.pay-icons img {
  height: 32px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity .2s;
}
.pay-icons img:hover { opacity: 1; }

ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--text-muted);
}
li { margin-bottom: 6px; }
ol { padding-left: 20px; margin: 0 0 14px; color: var(--text-muted); }
ol li { margin-bottom: 8px; }

.faq-item {
  border: var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.faq-q {
  padding: 16px 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-item .faq-a {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }
.faq-q::after { font-size: 18px; color: var(--primary); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-item:not(.open) .faq-q::after { content: '+'; }
.faq-section-wrap { overflow: hidden; transition: opacity .25s, max-height .4s ease-out; }
.faq-section-wrap.hidden { display: none; }
.faq-toggle {
  margin-bottom: 16px;
  padding: 12px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--secondary);
  background: var(--card);
  border: 1px solid rgba(0, 194, 255, 0.4);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.faq-toggle:hover { background: rgba(0, 194, 255, 0.12); box-shadow: 0 0 14px rgba(0, 194, 255, 0.3); }

.footer-cta {
  text-align: center;
  padding: 40px 16px 48px;
  background: linear-gradient(180deg, var(--card) 0%, var(--bg-alt) 100%);
  border-top: var(--border);
}
.footer-cta p {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: var(--border);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-bottom p { margin: 0 0 8px; }
.footer-bottom p:last-child { margin-bottom: 0; }
.footer-bottom a { color: var(--secondary); }
.footer-bottom a:hover { color: var(--text); }
