@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

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

:root {
  --forest: #1a472a;
  --emerald: #2ecc71;
  --leaf: #27ae60;
  --moss: #1e8449;
  --bark: #5d4e37;
  --cream: #f5f5dc;
  --sage: #9dc183;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--forest);
  color: var(--cream);
  line-height: 1.75;
}

.age-wall {
  position: fixed;
  inset: 0;
  background: rgba(26, 71, 42, 0.98);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.age-panel {
  background: linear-gradient(145deg, #1e5631, var(--forest));
  border: 3px solid var(--emerald);
  border-radius: 20px;
  padding: 48px 42px;
  max-width: 500px;
  text-align: center;
}

.age-panel h2 {
  color: var(--emerald);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.age-panel p {
  color: var(--sage);
  margin-bottom: 14px;
  font-weight: 400;
}

.age-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 30px;
}

.age-btns button {
  padding: 14px 36px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.age-btns .confirm-btn {
  background: linear-gradient(135deg, var(--emerald), var(--leaf));
  color: var(--forest);
}

.age-btns .deny-btn {
  background: transparent;
  border: 2px solid var(--sage);
  color: var(--sage);
}

.age-btns button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.25);
}

.vanish {
  display: none !important;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(180deg, var(--forest), transparent);
  z-index: 900;
}

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

.brand-name {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--emerald);
  text-decoration: none;
  letter-spacing: 2px;
}

.ham-btn {
  display: none;
  background: none;
  border: 2px solid var(--emerald);
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
}

.ham-btn span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--emerald);
  margin: 4px 0;
  border-radius: 2px;
}

.main-menu ul {
  display: flex;
  list-style: none;
  gap: 38px;
}

.main-menu a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.main-menu a:hover {
  color: var(--emerald);
}

.welcome-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 130px 25px 70px;
  background: radial-gradient(ellipse at center bottom, rgba(46, 204, 113, 0.12), transparent 65%);
}

.welcome-section h1 {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.2;
}

.welcome-section h1 span {
  color: var(--emerald);
}

.welcome-section > p {
  max-width: 800px;
  font-size: 1.15rem;
  color: var(--sage);
  margin-bottom: 45px;
  font-weight: 400;
}

.info-tags {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-tag {
  background: rgba(46, 204, 113, 0.15);
  border: 2px solid var(--leaf);
  border-radius: 30px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-tag .icon {
  font-size: 1.5rem;
}

.info-tag .label {
  font-weight: 700;
  font-size: 0.9rem;
}

.game-zone {
  padding: 85px 25px;
  background: linear-gradient(180deg, transparent, rgba(30, 84, 49, 0.5), transparent);
}

.game-zone h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 45px;
  color: var(--emerald);
}

.game-holder {
  max-width: 920px;
  margin: 0 auto;
  border: 4px solid var(--leaf);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(46, 204, 113, 0.15);
}

.game-holder iframe {
  width: 100%;
  height: 620px;
  border: none;
  display: block;
}

.benefits-area {
  padding: 95px 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.benefits-area h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 55px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: linear-gradient(180deg, rgba(30, 84, 49, 0.6), rgba(26, 71, 42, 0.8));
  border: 2px solid rgba(46, 204, 113, 0.3);
  border-radius: 16px;
  padding: 38px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.benefit-card:hover {
  border-color: var(--emerald);
  transform: translateY(-6px);
}

.card-emoji {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.benefit-card h3 {
  color: var(--emerald);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.benefit-card p {
  color: var(--sage);
  font-size: 0.92rem;
}

.about-grove {
  padding: 95px 25px;
  background: rgba(30, 84, 49, 0.4);
}

.grove-inner {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.grove-inner h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: var(--emerald);
}

.grove-inner p {
  color: var(--sage);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.footer-section {
  background: var(--forest);
  padding: 50px 25px;
  text-align: center;
  border-top: 2px solid var(--moss);
}

.support-links {
  margin-bottom: 22px;
}

.support-links h4 {
  color: var(--emerald);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.support-links a {
  color: var(--sage);
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.support-links a:hover {
  color: var(--cream);
}

.footer-section > p {
  color: var(--sage);
  opacity: 0.6;
  font-size: 0.85rem;
}

.page-title-area {
  padding: 155px 25px 55px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(46, 204, 113, 0.1), transparent);
}

.page-title-area h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--emerald);
}

.text-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 55px 25px;
}

.text-area h2 {
  color: var(--emerald);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 45px 0 18px;
}

.text-area p {
  color: var(--sage);
  margin-bottom: 15px;
}

.text-area ul {
  color: var(--sage);
  margin: 0 0 18px 26px;
}

.text-area ul li {
  margin-bottom: 9px;
}

.play-tips {
  max-width: 680px;
  margin: 30px auto;
  background: rgba(46, 204, 113, 0.1);
  border: 2px solid var(--leaf);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.play-tips h3 {
  color: var(--emerald);
  margin-bottom: 14px;
  font-weight: 700;
}

.play-tips p {
  color: var(--sage);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ham-btn {
    display: block;
  }
  
  .main-menu ul {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--forest);
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    border-bottom: 3px solid var(--leaf);
  }
  
  .main-menu ul.expanded {
    display: flex;
  }
  
  .welcome-section h1 {
    font-size: 2.2rem;
  }
  
  .info-tags {
    flex-direction: column;
    align-items: center;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .game-holder iframe {
    height: 420px;
  }
  
  .age-panel {
    padding: 38px 28px;
  }
}
