
:root {
  --background: 0 0% 100%;
  --foreground: 20 14.3% 4.1%;
  --muted: 60 4.8% 95.9%;
  --muted-foreground: 25 5.3% 44.7%;
  --popover: 0 0% 100%;
  --popover-foreground: 20 14.3% 4.1%;
  --card: 0 0% 100%;
  --card-foreground: 20 14.3% 4.1%;
  --border: 20 5.9% 90%;
  --input: 20 5.9% 90%;
  --primary: #1E4D2B; /* Green */
  --primary-foreground: #F2FAFF;
  --secondary: #E74C3C; /* Red */
  --secondary-foreground: #1A1311;
  --accent: #F39C12; /* Orange/Yellow */
  --accent-foreground: #1A1311;
  --destructive: hsl(0 84.2% 60.2%);
  --destructive-foreground: hsl(60 9.1% 97.8%);
  --ring: #1A1311;
  --radius: 0.5rem;
}


@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
}

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

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  color: #1A1311;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 4rem 0;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.nav-desktop {
  display: none;
}

.nav-desktop a {
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: var(--secondary);
}

.nav-desktop a.active {
  color: var(--primary);
}

.nav-toggle {
  background: none;
  border: none;
  color: #1A1311;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile {
  display: none;
  background-color: #fff;
  width: 100%;
  padding: 0.5rem 1rem 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-mobile.active {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-mobile a:hover {
  color: var(--secondary);
}

.nav-mobile a.active {
  color: var(--primary);
}

.hero {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: #183d23;
}

.btn-secondary {
  background-color: var(--secondary);
  color: #fff;
}

.btn-secondary:hover {
  background-color: #c0392b;
}

.about {
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.advantages {
  background-color: #f8f9fa;
}

.advantages h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.advantage-card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.advantage-image {
  height: 200px;
  overflow: hidden;
}

.advantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-content {
  padding: 1.5rem;
}

.advantage-content h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.faq {
  background-color: #fff;
}

.faq h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 0;
}

.faq-item h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: #f8f9fa;
}

.form-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.form-card h2 {
  color: var(--primary);
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-card p {
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(30, 77, 43, 0.2);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-check input {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}

.form-check label {
  font-size: 0.875rem;
}

.form-check a {
  color: var(--primary);
  text-decoration: underline;
}

.form-check a:hover {
  text-decoration: none;
}

.form-success {
  color: #059669;
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}

.form-error {
  color: #dc2626;
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}

.points-system {
  padding: 3rem 0;
}

.points-system h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.points-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.points-section {
  margin-bottom: 2.5rem;
}

.points-section h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.points-section p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.points-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.points-table th {
  background-color: var(--primary);
  color: white;
  text-align: left;
  padding: 0.75rem;
}

.points-table th:last-child {
  text-align: right;
}

.points-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.points-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.points-table tr:hover {
  background-color: #f8f9fa;
}

.special-rules h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.how-to-play {
  padding: 3rem 0;
}

.how-to-play h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.step-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-number {
  width: 6rem;
  height: 6rem;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto;
}

.step-content h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-content p {
  margin-bottom: 1rem;
}

.step-info {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 0.375rem;
}

.step-info h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-info ul {
  list-style-position: inside;
  margin-left: 0;
}

.tips-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
}

.tips-card h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.tip-item {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 0.375rem;
}

.tip-item h3 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-page {
  padding: 3rem 0;
}

.legal-page h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.legal-content h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p, .legal-content ul {
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-date {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 2rem;
}

footer {
  background-color: var(--primary);
  color: white;
  padding: 2rem 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-copyright {
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: white;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d1d5db;
}

.footer-description {
  font-size: 0.875rem;
  color: #d1d5db;
  margin-top: 2rem;
  text-align: center;
}


.footer-links .age-icon {
  height: 40px;
  width: auto;
  opacity: 0.8;
  margin-left: auto;
}

.not-found {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.not-found h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.not-found p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Media Queries */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .about-container {
    flex-direction: row;
  }
  
  .about-image {
    width: 50%;
  }
  
  .about-content {
    width: 50%;
  }
  
  .step-card {
    flex-direction: row;
  }
  
  .step-number {
    margin: 0;
  }
  
  .step-content {
    width: calc(100% - 6rem - 1.5rem);
  }
  
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-links {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tips-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}