* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #d4511e;
  --secondary: #2d5016;
  --cream: #f5deb3;
  --warm-bg: #fff8e7;
  --dark-text: #2c1810;
  --light-text: #6b5449;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--warm-bg);
  color: var(--dark-text);
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 80, 22, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.age-gate-content {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  border: 3px solid var(--primary);
}
.age-gate-content i {
  font-size: 64px;
  color: var(--primary);
  margin-bottom: 20px;
}
.age-gate-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--secondary);
}
.age-gate-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--light-text);
}
.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.age-buttons button {
  padding: 15px 40px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: #b83d10;
  transform: translateY(-3px);
}
.btn-secondary {
  background: #f0f0f0;
  color: var(--dark-text);
  border: 2px solid var(--primary);
}

.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  padding: 15px 0;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary);
}
.logo i {
  color: var(--primary);
  font-size: 32px;
}
.logo-text .accent {
  color: var(--primary);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}
.btn-nav {
  padding: 8px 20px;
  border-radius: 8px;
  border: 2px solid var(--primary);
}
.btn-nav-primary {
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--primary);
  color: white !important;
}
.btn-nav-primary:hover {
  background: #b83d10;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.hero {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  padding: 100px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.95;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}
.btn-hero-primary,
.btn-hero-secondary {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-hero-primary {
  background: white;
  color: var(--primary);
}
.btn-hero-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-hero-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-box {
  text-align: center;
}
.stat-box i {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}
.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 5px;
}
.stat-label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
}

.impact-tracker {
  padding: 80px 20px;
  background: white;
}
.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.section-title i {
  color: var(--primary);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.impact-card {
  background: var(--cream);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--primary);
  transition: all 0.3s;
}
.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.impact-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 15px;
}
.impact-card h3 {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 10px;
}
.progress-bar {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 10px;
  margin: 15px 0;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 10px;
}
.progress-label {
  font-size: 12px;
  color: var(--light-text);
}

.lottery-games {
  padding: 80px 20px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.game-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--cream);
  transition: all 0.3s;
}
.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.game-card.featured {
  border-color: var(--primary);
}
.game-header {
  padding: 30px;
  text-align: center;
  background: var(--cream);
  position: relative;
}
.game-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.game-badge.community {
  background: var(--secondary);
}
.game-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 15px;
}
.game-header h3 {
  font-size: 28px;
  color: var(--secondary);
}
.game-body {
  padding: 30px;
}
.game-description {
  margin-bottom: 20px;
  color: var(--light-text);
}
.game-details {
  margin-bottom: 20px;
}
.detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--dark-text);
}
.detail-row i {
  color: var(--primary);
}
.detail-row.highlight {
  background: #fffaed;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
}
.winner-story {
  display: flex;
  gap: 15px;
  background: var(--warm-bg);
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}
.winner-placeholder {
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
}
.winner-name {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 5px;
}
.winner-quote {
  font-size: 14px;
  color: var(--light-text);
  font-style: italic;
}
.game-footer {
  padding: 0 30px 30px;
}
.btn-game {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-game:hover {
  background: #b83d10;
  transform: translateY(-3px);
}

.local-impact {
  padding: 80px 20px;
  background: white;
}
.province-impact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.province-card {
  background: var(--cream);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid var(--primary);
}
.province-card h4 {
  color: var(--secondary);
  margin-bottom: 10px;
}
.province-card p {
  color: var(--light-text);
  font-size: 14px;
  margin-bottom: 5px;
}

.testimonials {
  padding: 80px 20px;
  background: var(--cream);
}
.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto 30px;
}
.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 3px solid var(--primary);
  display: none;
}
.testimonial-card.active {
  display: flex;
  gap: 30px;
  align-items: center;
}
.testimonial-photo-placeholder {
  width: 100px;
  height: 100px;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-quote {
  font-size: 18px;
  margin-bottom: 15px;
  font-style: italic;
  color: var(--dark-text);
}
.testimonial-name {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}
.testimonial-location {
  color: var(--light-text);
  margin-bottom: 10px;
}
.testimonial-rating i {
  color: #ffd700;
}
.carousel-controls {
  text-align: center;
}
.carousel-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s;
}
.carousel-btn:hover {
  background: #b83d10;
}

.events-calendar {
  padding: 80px 20px;
  background: white;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.event-card {
  background: var(--cream);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  border: 2px solid var(--primary);
}
.event-date {
  text-align: center;
  background: var(--primary);
  color: white;
  padding: 15px;
  border-radius: 10px;
  min-width: 70px;
}
.event-date .month {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.event-date .day {
  display: block;
  font-size: 32px;
  font-weight: 900;
}
.event-details h4 {
  color: var(--secondary);
  margin-bottom: 10px;
}
.event-details p {
  color: var(--light-text);
  font-size: 14px;
  margin-bottom: 5px;
}

.footer {
  background: var(--secondary);
  color: white;
  padding: 60px 20px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--cream);
  font-size: 20px;
  margin-bottom: 20px;
}
.footer-col p {
  opacity: 0.9;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s;
}
.footer-col ul li a:hover {
  opacity: 1;
  color: var(--cream);
}
.footer-col ul li i {
  color: var(--primary);
  margin-right: 10px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}
.social-links a:hover {
  background: #b83d10;
  transform: translateY(-5px);
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 30px 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    gap: 30px;
  }
  .testimonial-card.active {
    flex-direction: column;
    text-align: center;
  }
}

.footer-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-imgs img {
  padding: 12px;
  margin: 12px;
  height: 55px;
  background: white;
  border-radius: 10px;
}
