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

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

:root {
  --sage: #8fbc8f;
  --mint: #98d8c8;
  --cream: #faf8f5;
  --forest: #2d4a3e;
  --gold-leaf: #c9a227;
  --soft-shadow: rgba(45, 74, 62, 0.15);
}

body {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(135deg, var(--cream) 0%, #e8f5e9 50%, var(--cream) 100%);
  color: var(--forest);
  line-height: 1.8;
  min-height: 100vh;
}

.header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px var(--soft-shadow);
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold-leaf);
}

.mobile-trigger {
  display: none;
  background: none;
  border: 2px solid var(--sage);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
}

.mobile-trigger span {
  display: block;
  width: 20px;
  height: 3px;
  background: var(--forest);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 1rem 2rem;
  border-top: 1px solid var(--sage);
}

.nav-mobile.show {
  display: flex;
}

.nav-mobile a {
  color: var(--forest);
  text-decoration: none;
  padding: 0.8rem 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(143, 188, 143, 0.3);
}

.main-section {
  padding-top: 20px;
}

.welcome-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.welcome-text {
  flex: 1;
}

.welcome-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.welcome-text p {
  font-size: 1.1rem;
  color: #4a6e5a;
  margin-bottom: 2rem;
}

.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  background: linear-gradient(135deg, var(--sage), var(--mint));
  color: var(--forest);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
}

.welcome-graphic {
  flex: 0 0 300px;
  background: linear-gradient(145deg, var(--mint), var(--sage));
  border-radius: 50%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px var(--soft-shadow);
}

.welcome-graphic .big-icon {
  font-size: 6rem;
}

.game-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--forest);
  text-align: center;
  margin-bottom: 1.5rem;
}

.game-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px var(--soft-shadow);
  border: 3px solid var(--mint);
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.benefit-tile {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px var(--soft-shadow);
  transition: transform 0.3s;
}

.benefit-tile:hover {
  transform: translateY(-5px);
}

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

.benefit-tile h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.benefit-tile p {
  color: #5a7d6a;
  font-size: 0.95rem;
}

.article-section {
  max-width: 850px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.article-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--forest);
  text-align: center;
  margin-bottom: 2rem;
}

.article-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-leaf);
  margin: 2.5rem 0 1rem;
}

.article-section p {
  color: #4a6e5a;
  margin-bottom: 1rem;
}

.article-section ul {
  margin: 1rem 0 1rem 2rem;
  color: #4a6e5a;
}

.article-section li {
  margin-bottom: 0.5rem;
}

.tip-box {
  background: linear-gradient(135deg, #fff, #f0f7f4);
  border-left: 4px solid var(--sage);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 12px 12px 0;
}

.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 3rem 2rem;
  margin-top: 4rem;
  text-align: center;
}

.site-footer p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--mint);
  text-decoration: none;
  font-size: 0.85rem;
}

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

.verify-popup {
  position: fixed;
  inset: 0;
  background: rgba(45, 74, 62, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.verify-popup.hidden {
  display: none;
}

.verify-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 3rem;
  max-width: 420px;
  text-align: center;
  margin: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.verify-card h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--forest);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.verify-card p {
  color: #5a7d6a;
  margin-bottom: 2rem;
}

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

.btn-yes, .btn-no {
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.btn-yes {
  background: linear-gradient(135deg, var(--sage), var(--mint));
  color: var(--forest);
}

.btn-yes:hover {
  transform: scale(1.05);
}

.btn-no {
  background: transparent;
  border: 2px solid #999;
  color: #666;
}

.btn-no:hover {
  border-color: #c00;
  color: #c00;
}

@media (max-width: 900px) {
  .welcome-area {
    flex-direction: column;
    text-align: center;
  }
  
  .info-pills {
    justify-content: center;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-trigger {
    display: block;
  }
  
  .welcome-text h1 {
    font-size: 2.2rem;
  }
  
  .welcome-graphic {
    flex: 0 0 200px;
    height: 200px;
  }
  
  .welcome-graphic .big-icon {
    font-size: 4rem;
  }
  
  .game-wrapper iframe {
    height: 420px;
  }
  
  .verify-btns {
    flex-direction: column;
  }
}
