* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --forest: #0d3b2e;
  --pine: #1a5c45;
  --gold: #b8964f;
  --copper: #cd7f32;
  --charcoal: #1c1c1c;
  --ash: #2a2a2a;
  --cream: #f4f1e8;
  --silver: #c0c0c0;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(to bottom, var(--charcoal), var(--forest));
  color: var(--cream);
  line-height: 1.7;
  min-height: 100vh;
  font-weight: 400;
}

.verify-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 59, 46, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(8px);
}

.verify-modal.hidden {
  display: none;
}

.verify-content {
  background: linear-gradient(135deg, var(--forest), var(--pine));
  border: 3px solid var(--gold);
  border-radius: 15px;
  padding: 3rem 2.5rem;
  max-width: 550px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(184, 150, 79, 0.4);
}

.verify-badge {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.verify-content h2 {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.verify-content p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  font-weight: 400;
}

.verify-detail {
  font-size: 1rem;
  color: var(--silver);
}

.verify-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.verify-btn {
  padding: 1rem 2rem;
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.verify-btn.accept {
  background: var(--gold);
  color: var(--forest);
}

.verify-btn.accept:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(184, 150, 79, 0.5);
}

.verify-btn.decline {
  background: transparent;
  color: var(--gold);
}

.verify-btn.decline:hover {
  background: rgba(184, 150, 79, 0.1);
}

.main-header {
  background: rgba(26, 92, 69, 0.9);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wrap.narrow {
  max-width: 1000px;
}

.main-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 2rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--gold);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.main-menu {
  display: flex;
  gap: 2.5rem;
}

.main-menu a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.main-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-menu a:hover {
  color: var(--gold);
}

.main-menu a:hover::after {
  width: 100%;
}

.page-content {
  padding: 2rem 0;
}

.hero-area {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(26, 92, 69, 0.5), rgba(13, 59, 46, 0.7));
  border: 3px solid var(--gold);
  border-radius: 20px;
  margin: 2rem 0;
}

.hero-inner {
  text-align: center;
}

.hero-inner h1 {
  font-size: 4rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-lead {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-markers {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.marker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(13, 59, 46, 0.8);
  padding: 1rem 2rem;
  border: 2px solid var(--gold);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marker-symbol {
  color: var(--gold);
  font-size: 1.5rem;
}

.intro-area {
  padding: 4rem 0;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.intro-content h2 {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.intro-content p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.8;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-panel {
  background: rgba(26, 92, 69, 0.4);
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.panel-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-panel h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.disclosure-area {
  padding: 4rem 0;
}

.disclosure-box {
  background: linear-gradient(135deg, rgba(26, 92, 69, 0.5), rgba(13, 59, 46, 0.7));
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 3rem;
}

.disclosure-box h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.disclosure-item {
  background: rgba(13, 59, 46, 0.6);
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.disclosure-badge {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.disclosure-item h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-area {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-desc {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--silver);
}

.game-display {
  background: rgba(13, 59, 46, 0.5);
  padding: 2rem;
  border: 3px solid var(--gold);
  border-radius: 20px;
  margin: 2rem 0;
}

.game-embed {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 15px;
  background: #000;
}

.game-hint {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

.advantages-area {
  padding: 4rem 0;
}

.advantages-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.advantage-box {
  background: rgba(26, 92, 69, 0.4);
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(184, 150, 79, 0.4);
}

.advantage-num {
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: serif;
}

.advantage-box h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.responsibility-area {
  padding: 4rem 0;
}

.responsibility-panel {
  background: linear-gradient(135deg, rgba(26, 92, 69, 0.5), rgba(13, 59, 46, 0.7));
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.responsibility-panel h2 {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.responsibility-panel > p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.responsibility-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resp-item {
  background: rgba(13, 59, 46, 0.6);
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 1.5rem;
}

.resp-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.page-banner {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(26, 92, 69, 0.5), rgba(13, 59, 46, 0.7));
  border: 3px solid var(--gold);
  border-radius: 20px;
  margin: 2rem 0;
}

.page-banner h1 {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.banner-date {
  color: var(--silver);
  font-style: italic;
  font-size: 1.1rem;
}

.play-section {
  padding: 2rem 0 4rem;
}

.play-frame {
  background: rgba(13, 59, 46, 0.5);
  padding: 2rem;
  border: 3px solid var(--gold);
  border-radius: 20px;
}

.game-embed-full {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 15px;
  background: #000;
}

.guidance-section {
  padding: 2rem 0 4rem;
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.guide-card {
  background: rgba(26, 92, 69, 0.4);
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.guide-symbol {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.guide-card h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reminder-section {
  padding: 2rem 0;
}

.reminder-panel {
  background: linear-gradient(135deg, rgba(26, 92, 69, 0.5), rgba(13, 59, 46, 0.7));
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 2.5rem;
}

.reminder-panel h3 {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.reminder-panel ul {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

.reminder-panel li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  font-size: 1.15rem;
  border-bottom: 1px solid rgba(184, 150, 79, 0.3);
}

.reminder-panel li:last-child {
  border-bottom: none;
}

.reminder-panel li::before {
  content: '►';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: bold;
}

.legal-content {
  padding: 2rem 0 4rem;
}

.policy-intro {
  background: rgba(26, 92, 69, 0.4);
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.policy-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
}

.terms-section {
  background: rgba(13, 59, 46, 0.4);
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.terms-section.highlight {
  background: rgba(26, 92, 69, 0.6);
  border: 3px solid var(--gold);
}

.terms-section h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.terms-section h3 {
  color: var(--copper);
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}

.terms-section p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.terms-section ul {
  margin: 1rem 0 1rem 2rem;
  list-style-type: square;
}

.terms-section li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.terms-section strong {
  color: var(--gold);
  font-weight: 600;
}

.summary-box {
  background: linear-gradient(135deg, rgba(184, 150, 79, 0.3), rgba(26, 92, 69, 0.5));
  border: 3px solid var(--gold);
  border-radius: 15px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.summary-box h3 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.summary-box p {
  font-size: 1.15rem;
  line-height: 1.8;
}

.summary-box ul {
  list-style: none;
  margin: 1.5rem 0;
}

.summary-box li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  font-size: 1.1rem;
}

.summary-box li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.main-footer {
  background: rgba(26, 92, 69, 0.9);
  border-top: 3px solid var(--gold);
  margin-top: 4rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.footer-segment h4 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-segment p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-segment ul {
  list-style: none;
}

.footer-segment ul li {
  margin-bottom: 0.7rem;
}

.footer-segment a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-segment a:hover {
  color: var(--gold);
}

.footer-bar {
  background: var(--forest);
  text-align: center;
  padding: 1.5rem;
  border-top: 2px solid var(--gold);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(26, 92, 69, 0.98);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    border-left: 3px solid var(--gold);
  }

  .main-menu.active {
    right: 0;
  }

  .main-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184, 150, 79, 0.3);
  }

  .hero-inner h1 {
    font-size: 2.5rem;
  }

  .hero-lead {
    font-size: 1.2rem;
  }

  .intro-layout {
    grid-template-columns: 1fr;
  }

  .game-embed, .game-embed-full {
    height: 450px;
  }

  .terms-section {
    padding: 1.8rem;
  }
}
