@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

:root {
  --bg-primary: #13111c;
  --bg-secondary: #1e1b2e;
  --bg-tertiary: #2a2640;
  --violet-main: #a855f7;
  --violet-light: #c084fc;
  --violet-dark: #7c3aed;
  --pink-accent: #ec4899;
  --text-white: #faf5ff;
  --text-gray: #a1a1aa;
  --border-violet: rgba(168, 85, 247, 0.2);
  --shadow-violet: rgba(168, 85, 247, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
}

.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(19, 17, 28, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-violet);
  z-index: 1000;
  padding: 1rem 2rem;
}

.header-content {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: 'Fira Code', monospace;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--violet-main);
  text-decoration: none;
  letter-spacing: 2px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--violet-main);
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--violet-main);
  margin: 4px 0;
  transition: 0.3s;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.site-nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.3s;
  padding: 0.5rem 0;
}

.site-nav a:hover {
  color: var(--violet-light);
}

.page-body {
  padding-top: 80px;
}

.welcome-section {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
}

.welcome-box {
  max-width: 850px;
}

.welcome-box h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.welcome-box h1 .brand-name {
  background: linear-gradient(135deg, var(--violet-main), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-box p {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.info-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.info-tag {
  background: var(--bg-secondary);
  border: 1px solid var(--border-violet);
  padding: 0.7rem 1.3rem;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--violet-main);
  border-radius: 50%;
}

.main-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--violet-dark), var(--violet-main));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 8px 25px var(--shadow-violet);
}

.main-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--shadow-violet);
}

.wheel-showcase {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--violet-light);
  margin-bottom: 2rem;
}

.wheel-container {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-violet);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.wheel-frame {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
}

.wheel-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.benefits-section {
  padding: 5rem 2rem;
}

.benefits-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-header h2 {
  font-size: 2rem;
  color: var(--violet-light);
  margin-bottom: 0.5rem;
}

.benefits-header p {
  color: var(--text-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-violet);
  border-radius: 16px;
  padding: 2rem;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--violet-main), var(--pink-accent));
  opacity: 0;
  transition: 0.3s;
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: var(--violet-main);
}

.benefit-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.benefit-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.story-section {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  padding: 5rem 2rem;
}

.story-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.story-content h2 {
  font-size: 2rem;
  color: var(--violet-light);
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-violet);
  padding: 3rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

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

.gambling-help {
  border-top: 1px solid var(--border-violet);
  padding-top: 2rem;
  text-align: center;
}

.gambling-help h4 {
  color: var(--violet-main);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.help-orgs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.help-orgs a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border-violet);
  border-radius: 25px;
  transition: 0.3s;
}

.help-orgs a:hover {
  border-color: var(--violet-main);
  color: var(--violet-light);
}

.footer-copy {
  color: var(--text-gray);
  font-size: 0.85rem;
  text-align: center;
}

.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 17, 28, 0.97);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.age-card {
  background: var(--bg-secondary);
  border: 2px solid var(--violet-main);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 460px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

.age-card h2 {
  color: var(--violet-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.age-card p {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.age-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-yes, .age-no {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.age-yes {
  background: linear-gradient(135deg, var(--violet-dark), var(--violet-main));
  color: white;
}

.age-no {
  background: transparent;
  border: 1px solid var(--text-gray);
  color: var(--text-gray);
}

.age-yes:hover, .age-no:hover {
  transform: scale(1.05);
}

.hidden {
  display: none !important;
}

.inner-content {
  padding: 110px 2rem 4rem;
  max-width: 950px;
  margin: 0 auto;
}

.inner-content h1 {
  font-size: 2.3rem;
  color: var(--violet-light);
  margin-bottom: 2rem;
}

.inner-content h2 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin: 2rem 0 1rem;
}

.inner-content p, .inner-content li {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.inner-content ul {
  padding-left: 1.5rem;
}

.note-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-violet);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.note-box h3 {
  color: var(--violet-light);
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .site-nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(19, 17, 28, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
    transform: translateY(-150%);
    transition: 0.4s;
    border-bottom: 1px solid var(--border-violet);
  }

  .site-nav ul.show {
    transform: translateY(0);
  }

  .site-nav a {
    display: block;
    padding: 0.75rem;
    text-align: center;
  }

  .info-tags {
    flex-direction: column;
    align-items: center;
  }

  .age-btns {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
