* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gamma-dark: #0b0b0b;
  --gamma-blue: rgba(20, 35, 25, 0.774);
  --gamma-purple: #74b632;
  --gamma-accent: #73d425;
  --gamma-gray: #8A898C;
  --gamma-light: #f3f4f6;
  --gamma-light-green: #c1f17b;
  
  --radius: 0.5rem;
  --transition: all 0.3s ease;
}

@font-face {
  font-family: 'Kallisto Bold';
  src: url('public/kallistobold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Kallisto Light';
  src: url('public/kallistolight.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--gamma-dark);
  color: var(--gamma-light);
  line-height: 1.6;
  overflow-x: hidden; 
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; 
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: 'Kallisto Bold';
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.75rem; 
}

h2 {
  font-family: 'Kallisto Light';
  font-size: 1.5rem; 
}

h3 {
  font-size: 1.25rem; 
  font-family: 'Kallisto Bold';
}

p {
  font-family: 'Kallisto Bold';
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.accent {
  color: var(--gamma-accent);
}
.accenttitle {
  font-family: 'Kallisto Light';
  color: var(--gamma-accent);
}

section {
  padding: 3rem 0; 
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.divider {
  width: 5rem;
  height: 0.25rem;
  background-color: var(--gamma-accent);
  margin: 1.5rem auto;
}

button {
  cursor: pointer;
  border: none;
  font-weight: 600;
  font-family: inherit;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(90deg, var(--gamma-accent), var(--gamma-purple));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  display: inline-flex;
  font-family: 'Kallisto Bold';
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%; 
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(115, 212, 37, 0.2);
}

.btn-primary i {
  margin-right: 8px; 
  font-size: 18px; 
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--gamma-purple);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  width: 100%; 
  text-align: center;
}

.btn-outline:hover {
  background-color: rgba(116, 182, 50, 0.1);
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  width: 100%; 
  justify-content: center;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.05);
}


.button-group {
  display: flex;
  flex-direction: column; 
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  width: 100%; 
}

.navbar {
  font-family: 'Kallisto Bold';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(21, 21, 21, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(116, 182, 50, 0.2);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo-image {
  height: 70px;
  margin-right: 8px;
  border-radius: 4px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}
.desktop-nav {
  display: none;
}

.mobile-nav {
  display: none;
  width: 100%;
  background-color: var(--color-gamma-blue);
  padding: 1.5rem;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 49;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  height: auto;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav .nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: block;
}

.mobile-nav .nav-link:hover {
  color: var(--gamma-accent);
}

.mobile-nav .btn-primary {
  margin-top: 0.5rem;
  width: 100%;
}

.hero {
  padding-top: 6rem;
  padding-bottom: 3rem; 
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('public/map.png');
  opacity: 18%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--gamma-dark) 0%, rgba(18, 22, 33, 0.8) 50%, var(--gamma-dark) 100%);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem; 
}

.hero h1 {
  font-family: 'Kallisto Bold';
  font-size: 2rem; 
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1rem; 
  font-family: 'Kallisto Bold';
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  margin-top: 3rem;
  animation: float 2s infinite ease-in-out;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

.about {
  background: linear-gradient(to bottom, var(--gamma-dark), var(--gamma-blue));
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(116, 182, 50, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem; 
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(116, 182, 50, 0.5);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(90deg, var(--gamma-accent), var(--gamma-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  color: white;
}

.features {
  bottom: 220px;
  background-color: var(--gamma-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon-small {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(90deg, var(--gamma-accent), var(--gamma-purple));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.8);
}

.features-image {
  position: relative;
  margin-top: 2rem;
}

.image-container {
  width: 100%;
  height: 300px; 
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(116, 182, 50, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.players-counter {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem; 
  background: linear-gradient(90deg, var(--gamma-accent), var(--gamma-purple));
  padding: 0.75rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.players-count {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.players-text {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.features-cta {
  text-align: center;
  margin-top: 3rem;
}

.stats {
  position: relative;
  background-color: var(--gamma-blue);
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.stats-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--gamma-blue) 0%, rgba(30, 38, 57, 0.9) 50%, rgba(30, 38, 57, 0.95) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; 
}

.stat-card {
  background-color: rgba(193, 241, 123, 0.3);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.25rem; 
  text-align: center;
  border: 1px solid rgba(116, 182, 50, 0.2);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(90deg, var(--gamma-accent), var(--gamma-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-card h3 {
  font-size: 1.75rem; 
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.faq {
  background-color: var(--gamma-dark);
}

.accordion {
  max-width: 48rem;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid rgba(116, 182, 50, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  width: 100%;
}

.accordion-header {
  background-color: rgba(116, 182, 50, 0.1);
  position: relative;
}

.accordion-button {
  width: 100%;
  background: none;
  color: white;
  text-align: left;
  padding: 1rem 3rem 1rem 1rem; 
  font-size: 1rem; 
  position: relative;
  transition: background-color 0.3s;
}

.accordion-button:hover {
  background-color: rgba(116, 182, 50, 0.1);
}

.accordion-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.accordion-button.active .accordion-icon {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background-color: rgba(30, 38, 57, 0.2);
  transition: all 0.3s ease-out;
}

.accordion-content.active {
  padding: 1rem 1.25rem;
  max-height: 1000px;
}

.accordion-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-size: 0.95rem; 
}

.cta {
  position: relative;
  padding: 4rem 0; 
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.cta-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.cta-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem; 
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem; 
  margin-top: 2rem; 
  flex-wrap: wrap; 
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s, transform 0.3s;
}

.social-link:hover {
  color: white;
  transform: scale(1.1);
}

.footer {
  background-color: var(--gamma-dark);
  border-top: 1px solid rgba(116, 182, 50, 0.2);
  padding: 2rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); 
  transition: transform 0.2s;
}

.footer-social a img:hover {
  transform: scale(1.1);
}


.footer-title {
  font-size: 1.25rem; 
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--gamma-gray);
  margin-bottom: 1rem;
}

.footer-copyright {
  color: var(--gamma-gray);
  font-size: 0.875rem;
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 1rem; 
}

.footer-list {
  list-style: none;
}

.footer-link {
  color: var(--gamma-gray);
  transition: color 0.3s;
  display: block;
  padding: 0.375rem 0;
}

.footer-link:hover {
  color: white;
}

.footer-disclaimer {
  margin-top: 2rem; 
  padding-top: 1rem; 
  border-top: 1px solid rgba(116, 182, 50, 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: var(--gamma-gray);
}

@media (min-width: 375px) {
  .container {
      padding: 0 1.25rem;
  }
  
  h1 {
      font-size: 2rem;
  }
  
  .hero h1 {
      font-size: 2.25rem;
  }
}

@media (min-width: 480px) {
  .container {
      padding: 0 1.5rem;
  }
  
  .button-group {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .btn-primary, .btn-outline, .btn-outline-white {
      width: auto;
  }
}

@media (min-width: 640px) {
  h1 {
      font-size: 2.5rem;
  }
  
  h2 {
      font-size: 1.75rem;
  }
  
  section {
      padding: 4rem 0;
  }
  
  .feature-cards {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .image-container {
      height: 400px;
  }
  
  .button-group {
      flex-direction: row;
  }
}

@media (min-width: 768px) {
  .container {
      padding: 0 2rem;
  }
  
  h1 {
      font-size: 3rem;
  }
  
  h2 {
      font-size: 2rem;
  }
  
  .hero h1 {
      font-size: 3.5rem;
  }
  
  .hero p {
      font-size: 1.125rem;
  }
  
  .desktop-nav {
      display: flex;
      align-items: center;
      gap: 2rem;
  }
  
  .mobile-menu-btn {
      display: none;
  }
  
  .stats-grid {
      grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-content {
      grid-template-columns: repeat(4, 1fr);
  }
  
  .accordion-button {
      font-size: 1.125rem;
  }
  
  .image-container {
      height: 450px;
  }
  
  .features-image {
      margin-top: 0;
  }
}

@media (min-width: 1024px) {
  h1 {
      font-size: 4rem;
  }
  
  .feature-cards {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
      grid-template-columns: 1fr 1fr;
  }
  
  .accordion-content.active {
      padding: 1.5rem;
  }
  
  .image-container {
      height: 500px;
  }
}

@media (min-width: 1280px) {
  .container {
      padding: 0;
  }
  
  .hero h1 {
      font-size: 4rem;
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .mobile-nav.active {
      max-height: calc(100vh - 4rem);
      overflow-y: auto;
  }
}