:root {
  --bg-main: #1F0F2E;
  --bg-section: #2A123A;
  --bg-card: #34174A;
  --green-main: #6CFF3D;
  --green-hover: #4CD137;
  --green-gradient: linear-gradient(180deg, #7CFF4F, #3FD02A);
  --yellow-main: #FFC83D;
  --yellow-dark: #E0A800;
  --text-white: #FFFFFF;
  --text-light: #CFC7D9;
  --text-muted: #9B8FA8;
  --bg: var(--bg-main);
  --bg-alt: var(--bg-section);
  --card: var(--bg-card);
  --card-hover: #3d1a58;
  --primary: var(--green-main);
  --primary-hover: var(--green-hover);
  --secondary: var(--yellow-main);
  --success: var(--green-main);
  --success-dark: #3FD02A;
  --gold: var(--yellow-main);
  --text: var(--text-white);
  --border: 1px solid rgba(155, 143, 168, 0.2);
  --radius: 12px;
  --radius-btn: 8px;
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--bg-main);
  -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: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 480px) {
  .container { padding: 0 20px; }
}
@media (min-width: 768px) {
  .container { padding: 0 24px; }
}
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-section);
  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: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 8px;
}
@media (min-width: 768px) {
  .header-inner { padding: 14px 24px; }
}
.logo {
  height: 32px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
}
@media (min-width: 768px) { .logo { height: 42px; border-radius: 14px; } }
.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.nav a {
  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;
}
@media (min-width: 768px) {
  .nav a { padding: 10px 16px; font-size: 13px; }
}
.nav a:hover {
  background: rgba(108, 255, 61, 0.15);
  border-color: var(--green-main);
  color: var(--yellow-main);
}
.nav .btn-login {
  background: transparent;
  text-transform: none;
  letter-spacing: normal;
}
.nav .btn-login:hover {
  background: rgba(255, 200, 61, 0.1);
  border-color: var(--yellow-main);
  color: var(--yellow-main);
}

.hero {
  padding: 32px 16px 40px;
  border-bottom: var(--border);
  background: linear-gradient(90deg, var(--bg-main) 0%, var(--bg-section) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}
.hero-text {
  order: 1;
  text-align: center;
  width: 100%;
}
.hero-lead {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 16px;
  max-width: 100%;
}
.hero-image-wrap {
  order: 2;
  width: 100%;
  max-width: 320px;
  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: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
  color: var(--text-white);
  line-height: 1.25;
}
.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 480px) {
  .hero { padding: 40px 20px 48px; }
  .hero h1 { font-size: 28px; }
  .hero-lead { font-size: 15px; }
}
@media (min-width: 768px) {
  .hero { padding: 56px 32px 64px; }
  .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-lead { font-size: 16px; margin-bottom: 20px; max-width: 560px; }
  .hero-image-wrap {
    flex-shrink: 0;
    max-width: 400px;
    order: 2;
  }
  .hero h1 { font-size: 38px; margin-bottom: 20px; text-align: left; }
  .hero-buttons { justify-content: flex-start; }
}
@media (min-width: 1024px) {
  .hero { padding: 72px 40px 80px; }
  .hero h1 { font-size: 48px; margin-bottom: 24px; }
  .hero-image-wrap { max-width: 440px; }
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, filter .2s;
}
@media (min-width: 768px) {
  .btn { padding: 14px 28px; font-size: 14px; }
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.08); }
  28% { transform: scale(1); }
  42% { transform: scale(1.05); }
  70% { transform: scale(1); }
}
@keyframes neon-glow {
  0%, 100% {
    box-shadow: 0 0 16px rgba(108, 255, 61, 0.6), 0 0 32px rgba(108, 255, 61, 0.35), inset 0 0 12px rgba(108, 255, 61, 0.1);
  }
  50% {
    box-shadow: 0 0 28px rgba(108, 255, 61, 0.9), 0 0 56px rgba(108, 255, 61, 0.5), inset 0 0 16px rgba(108, 255, 61, 0.15);
  }
}
@keyframes neon-glow-yellow {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 200, 61, 0.4); }
  50% { box-shadow: 0 0 24px rgba(255, 200, 61, 0.7); }
}

.btn-primary {
  background: var(--green-gradient);
  color: #0b0b0b;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 14px 28px;
  box-shadow: 0 0 20px rgba(108, 255, 61, 0.5), 0 0 40px rgba(108, 255, 61, 0.25);
  animation: heartbeat 1.15s ease-in-out infinite, neon-glow 2s ease-in-out infinite;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #8CFF5F, #4CD137);
  filter: brightness(1.08);
  animation-duration: 1s, 1.2s;
}
.btn-login {
  border: 2px solid var(--yellow-main);
  color: var(--yellow-main);
  background: transparent;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  animation: neon-glow-yellow 2.5s ease-in-out infinite;
}
@media (min-width: 768px) {
  .btn-login { padding: 10px 20px; }
}
.btn-login:hover {
  background: rgba(255, 200, 61, 0.1);
  box-shadow: 0 0 20px rgba(255, 200, 61, 0.6);
}
.btn-success {
  background: var(--green-gradient);
  color: #0b0b0b;
  border: none;
  animation: heartbeat 1.15s ease-in-out infinite, neon-glow 2s ease-in-out infinite;
}
.btn-success:hover {
  filter: brightness(1.08);
}
.btn-secondary {
  background: transparent;
  color: var(--yellow-main);
  border: 1px solid rgba(255, 200, 61, 0.5);
}
.btn-secondary:hover {
  background: rgba(255, 200, 61, 0.1);
}
.btn-cta {
  background: var(--green-gradient);
  color: #0b0b0b;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 14px 28px;
  box-shadow: 0 0 20px rgba(108, 255, 61, 0.5), 0 0 40px rgba(108, 255, 61, 0.25);
  animation: heartbeat 1.15s ease-in-out infinite, neon-glow 2s ease-in-out infinite;
}
.btn-cta:hover {
  filter: brightness(1.08);
  animation-duration: 1s, 1.2s;
}
.btn:hover {
  filter: brightness(1.05);
}
.btn {
  transition: filter 0.2s ease, background 0.2s ease;
}
/* primary/cta use animation for pulse, no extra hover transform */

section {
  padding: 28px 0;
}
@media (min-width: 480px) {
  section { padding: 36px 0; }
}
@media (min-width: 768px) {
  section { padding: 44px 0; }
}
@media (min-width: 1024px) {
  section { padding: 52px 0; }
}
.section-card,
.card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .section-card, .card { padding: 24px; margin-bottom: 20px; }
}
.section-card {
  border: var(--border);
}
h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-white);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
h2::before,
h2::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--yellow-main);
  flex-shrink: 0;
}
@media (min-width: 480px) {
  h2 { font-size: 24px; margin-bottom: 14px; }
  h2::before, h2::after { width: 40px; }
}
@media (min-width: 768px) {
  h2 { font-size: 34px; margin-bottom: 20px; gap: 14px; }
  h2::before, h2::after { width: 48px; }
}
h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: var(--yellow-main);
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  h3 { font-size: 22px; margin: 20px 0 10px; }
}
p { margin: 0 0 12px; color: var(--text-light); font-size: 15px; line-height: 1.6; }
@media (min-width: 768px) { p { margin: 0 0 14px; font-size: 16px; } }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

.table-wrap {
  overflow-x: auto;
  margin: 12px 0;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) { .table-wrap { margin: 16px 0; } }
table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 12px;
}
@media (min-width: 480px) { table { font-size: 13px; min-width: 320px; } }
@media (min-width: 768px) { table { font-size: 14px; } }
th, td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: var(--border);
  color: var(--text-muted);
}
@media (min-width: 768px) { th, td { padding: 12px 14px; } }
th {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 200, 61, 0.12);
  color: var(--yellow-main);
}
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(72px, 1fr));
  gap: 8px;
  margin: 16px 0;
}
@media (min-width: 380px) { .slot-grid { grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 10px; } }
@media (min-width: 480px) { .slot-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 12px; margin: 20px 0; } }
@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(108, 255, 61, 0.25);
}
.slot-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.pay-methods-intro {
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-white);
}
.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
}
@media (min-width: 768px) { .pay-icons { gap: 12px; margin: 20px 0; } }
.pay-icons img {
  height: 28px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity .2s;
}
@media (min-width: 768px) { .pay-icons img { height: 32px; max-width: 56px; } }
.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-q::after { color: var(--yellow-main); }
.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(255, 200, 61, 0.12); box-shadow: 0 0 14px rgba(255, 200, 61, 0.25); }
.faq-toggle { color: var(--yellow-main); border-color: rgba(255, 200, 61, 0.4); }

.footer-cta {
  text-align: center;
  padding: 28px 16px 36px;
  background: var(--bg-section);
  border-top: var(--border);
}
@media (min-width: 768px) {
  .footer-cta { padding: 40px 24px 48px; }
}
.footer-cta p {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
@media (min-width: 768px) { .footer-cta p { margin-bottom: 24px; font-size: 16px; } }
.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: var(--border);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .footer-bottom { margin-top: 32px; padding-top: 24px; font-size: 13px; }
}
.footer-bottom p { margin: 0 0 8px; }
.footer-bottom p:last-child { margin-bottom: 0; }
.footer-bottom a { color: var(--yellow-main); }
.footer-bottom a:hover { color: var(--text-white); }
