*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #0a0e1a;
  color: #c4cdd8;
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
:root {
  --gold: #e8a917;
  --gold-hover: #f5c142;
  --gold-dark: #c48d0e;
  --teal: #2dd4bf;
  --green: #22c55e;
  --violet: #a78bfa;
  --bg: #0a0e1a;
  --bg-card: #111827;
  --bg-card-alt: #161f30;
  --text: #e2e8f0;
  --text-muted: #8898aa;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 14px;
  --max-w: 1200px;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 50px;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.btn-gold {
  background: var(--gold);
  color: #0a0e1a;
  box-shadow: 0 2px 12px rgba(232, 169, 23, 0.25);
}
.btn-gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 4px 20px rgba(232, 169, 23, 0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== AGE GATE ===== */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(14px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
.age-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.age-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 36px;
  max-width: 440px;
  width: 92%;
  text-align: center;
  animation: fadeUp 0.5s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.age-box .age-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.age-box h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.age-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.age-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== COOKIE ===== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  z-index: 99999;
  padding: 18px 24px;
  animation: slideUp 0.4s ease both;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 600px;
}
.cookie-inner p a {
  color: var(--teal);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 8px;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s;
}
.cookie-accept {
  background: var(--gold);
  color: #0a0e1a;
}
.cookie-decline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.site-header.scrolled {
  background: rgba(10, 14, 26, 0.96);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
}
.brand-logo {
  height: 38px;
  width: auto;
  border-radius: 8px;
}
.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.brand-text span:first-child {
  background: linear-gradient(135deg, var(--teal), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-text span:last-child {
  color: var(--gold);
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--gold);
}
.mobile-toggle {
  display: none;
  background: none;
  color: var(--text);
  font-size: 1.4rem;
  padding: 8px;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero.webp") center/cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 14, 26, 0.35) 0%,
    rgba(10, 14, 26, 0.15) 40%,
    rgba(10, 14, 26, 0.75) 80%,
    #0a0e1a 100%
  );
  pointer-events: none;
}
.hero-grid {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  font-size: 1.05rem;
  color: #c4d0dc;
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.hero-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--violet));
}
.hero-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.hero-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.stat-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-bar-row span {
  font-size: 0.8rem;
  color: var(--text-muted);
  min-width: 100px;
}
.stat-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.stat-bar i {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

/* ===== GAMES SECTION ===== */
.games-section {
  padding: 80px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.section-head p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.game-card:hover {
  border-color: rgba(45, 212, 191, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #080c16;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.game-card:hover .game-card-img img {
  transform: scale(1.06);
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.game-card:hover .game-card-overlay {
  opacity: 1;
}
.play-btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 169, 23, 0.3);
  transition: transform 0.3s;
}
.game-card:hover .play-btn-icon {
  transform: scale(1.08);
}
.play-btn-icon svg {
  width: 20px;
  height: 20px;
  fill: #0a0e1a;
  margin-left: 2px;
}
.game-card-info {
  padding: 14px 16px;
}
.game-card-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-provider {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin: 0 auto;
}
.about-copy h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
}
.about-copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.about-feat .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feat .dot svg {
  width: 12px;
  height: 12px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 3;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active {
  border-color: rgba(45, 212, 191, 0.2);
}
.faq-question {
  width: 100%;
  background: var(--bg-card);
  color: var(--text);
  padding: 18px 22px;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}
.faq-question:hover {
  background: var(--bg-card-alt);
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--teal);
  transition: transform 0.3s;
  font-weight: 700;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.contact-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail strong {
  color: var(--text);
}
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.contact-form-box h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text);
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-input::placeholder {
  color: rgba(136, 152, 170, 0.5);
}
.form-input:focus {
  border-color: var(--teal);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-consent input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-consent a {
  color: var(--teal);
  text-decoration: underline;
}
.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: #0a0e1a;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  transition: all 0.25s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}
.form-message {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #4ade80;
}
.form-message.error {
  display: block;
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.25);
  color: #fb7185;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 56px 0 0;
  border-top: 1px solid var(--border);
  background: #070a13;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-top: 14px;
  line-height: 1.65;
}
.footer-col h4 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text);
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  padding: 4px 0;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-legal {
  font-size: 0.76rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
}
.footer-badges {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-badge {
  padding: 5px 12px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 700;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 32px 24px;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu a {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ===== POLICY PAGES ===== */
.policy-page {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}
.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.policy-content h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.policy-content .policy-date {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 36px;
}
.policy-content h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--text);
}
.policy-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text);
}
.policy-content p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-content ul {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 14px;
  padding-left: 22px;
  list-style: disc;
}
.policy-content a {
  color: var(--teal);
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    margin: 0 auto 28px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 14px;
  }
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
