/* Neon Plinko theme 2025 */
:root {
  --bg: #070f2b;
  --bg-alt: #0d1b3f;
  --panel: #0f1f4d;
  --card: #0c1636;
  --primary: #1ac8ff;
  --primary-strong: #0f9bdd;
  --accent: #ff3edd;
  --accent-strong: #d824b7;
  --gold: #ffc542;
  --text: #e8ecff;
  --muted: #9fb0d9;
  --shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --container-pad: 24px;
  --gradient-hero: radial-gradient(circle at 20% 20%, rgba(255, 62, 221, 0.35), transparent 35%), radial-gradient(circle at 80% 30%, rgba(26, 200, 255, 0.35), transparent 35%), linear-gradient(135deg, #071234 0%, #0b2b6b 50%, #0a3f9f 100%);
  --gradient-cta: linear-gradient(135deg, #ff3edd, #1ac8ff);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  padding-inline: var(--container-pad);
  margin: 0 auto;
}

.section {
  padding: 50px 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 24px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 48px;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 10px 35px rgba(255, 62, 221, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 62, 221, 0.12), transparent 35%), radial-gradient(circle at 80% 0%, rgba(26, 200, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 15, 43, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}

.logo img {
  width: 140px;
  height: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.main-nav a {
  color: var(--text);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
}


.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--gradient-hero);
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 28px;
}

.stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.board-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.board-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255, 197, 66, 0.12), transparent 35%), radial-gradient(circle at 80% 20%, rgba(255, 62, 221, 0.15), transparent 30%);
  pointer-events: none;
}

.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.board-chip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe3ff, #ff3edd 45%, #a819c0 100%);
  box-shadow: 0 12px 30px rgba(255, 62, 221, 0.35);
}

.plinko-board {
  background: linear-gradient(180deg, rgba(12, 22, 54, 0.9) 0%, rgba(8, 15, 36, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.peg-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.peg {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #7be4ff 0%, #1ac8ff 80%);
  box-shadow: 0 8px 14px rgba(26, 200, 255, 0.35);
}

.peg.alt {
  background: radial-gradient(circle, #ffd7ff 0%, #ff3edd 80%);
  box-shadow: 0 8px 14px rgba(255, 62, 221, 0.35);
}

.payouts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 8px;
}

.payout {
  text-align: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-weight: 700;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  margin-bottom: 12px;
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 8px;
  box-shadow: 0 0 14px rgba(255, 62, 221, 0.5);
}

.table-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  color: var(--text);
}

th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

tbody tr:nth-child(every) {
  background: rgba(255, 255, 255, 0.02);
}

tbody tr + tr td {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta {
  background: var(--gradient-cta);
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 22px 60px rgba(255, 62, 221, 0.35);
}

.cta h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 10px;
}

.cta p {
  color: #f8eaff;
  margin-bottom: 18px;
}

.cta-section {
  background: var(--gradient-cta);
  border-radius: 28px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 22px 60px rgba(255, 62, 221, 0.35);
}

.cta-title {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 16px;
  font-weight: 700;
}

.mb-4 {
  margin-bottom: 24px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px;
  background: transparent;
  color: var(--text);
  border: none;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.footer {
  padding: 48px 0 28px;
  background: #060b1f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-desc {
  margin-top: 16px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 960px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .main-nav {
    width: 100%;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 8px;
  }

  .main-nav a {
    font-size: 14px;
    padding: 8px 12px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 16px;
  }

  .board-wrap {
    padding: 18px;
  }

  .plinko-board {
    gap: 8px;
  }

  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
}