:root {
  --primary-green-1: #D2FF72;
  --primary-green-2: #73EC8B;
  --primary-green-3: #54C392;
  --primary-green-4: #15B392;
  --background-dark: #0a0f0a;
  --background-light: #1a1f1a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-dark: #333333;
  --border-color: #2a3a2a;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, var(--primary-green-1), var(--primary-green-3));
  --gradient-secondary: linear-gradient(135deg, var(--primary-green-2), var(--primary-green-4));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background-light);
  border-top: 2px solid var(--primary-green-3);
  padding: 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-link {
  color: var(--primary-green-2);
  text-decoration: underline;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 15, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand-text {
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: var(--primary-green-4);
  color: white;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--primary-green-2);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(210, 255, 114, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green-2);
  border: 2px solid var(--primary-green-2);
}

.btn-secondary:hover {
  background: var(--primary-green-2);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 20% 50%, var(--primary-green-4) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, var(--primary-green-3) 0%, transparent 50%),
              var(--background-dark);
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background: url('./img/game_screenshot_1.webp') center/cover;
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green-2);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.age-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
}

.rating-badge {
  background: var(--primary-green-4);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
}

.rating-text {
  color: var(--text-secondary);
  font-size: 14px;
}

.hero-game-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow-color);
  transition: transform 0.3s ease;
}

.hero-game-image:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Game Overview */
.game-overview {
  padding: 100px 0;
  background: var(--background-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.game-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--background-dark);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(115, 236, 139, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-green-3);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-green-2);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 100px 0;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-text h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-green-2);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary-green-2);
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow-color);
}

/* Screenshots */
.screenshots {
  padding: 100px 0;
  background: var(--background-light);
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.screenshot-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.screenshot-item:hover {
  transform: translateY(-10px) scale(1.02);
}

.screenshot-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.screenshot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
  transform: translateY(0);
}

.screenshot-title {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.modal-prev,
.modal-next {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  pointer-events: all;
  transition: background 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
  background: var(--primary-green-4);
}

/* Social Proof */
.social-proof {
  padding: 60px 0;
  background: var(--primary-green-4);
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.social-stat {
  color: white;
}

.social-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.social-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* FAQ */
.faq {
  padding: 100px 0;
}

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 25px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-green-2);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-green-2);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 25px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background: var(--background-light);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.newsletter-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-green-2);
}

.newsletter-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.newsletter-form {
  text-align: right;
}

.newsletter-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Contact */
.contact {
  padding: 100px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 5px;
}

.contact-details h4 {
  color: var(--primary-green-2);
  margin-bottom: 5px;
}

.contact-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-green-2);
}

address {
  color: var(--text-secondary);
  font-style: normal;
  line-height: 1.5;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--primary-green-2);
}

.contact-form-element {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--background-dark);
  color: var(--text-primary);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green-3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Trust and Security */
.trust-security {
  padding: 100px 0;
  background: var(--background-light);
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.security-item {
  text-align: center;
  padding: 30px;
}

.security-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.security-item h4 {
  color: var(--primary-green-2);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.security-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--background-dark);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-brand-text {
  font-size: 20px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-section h4 {
  color: var(--primary-green-2);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-green-2);
}

.footer-address {
  color: var(--text-secondary);
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-rating {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Legal Pages */
.legal-content {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-dark);
  padding: 40px;
  margin: 100px 0 60px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-color);
  line-height: 1.7;
}

.legal-content h1 {
  color: var(--primary-green-4);
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.legal-content h2 {
  color: var(--primary-green-4);
  margin: 30px 0 20px;
  font-size: 1.5rem;
}

.legal-content h3 {
  color: var(--primary-green-3);
  margin: 25px 0 15px;
  font-size: 1.2rem;
}

.legal-content p {
  margin-bottom: 15px;
}

.legal-content ul {
  margin: 15px 0 15px 30px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary-green-4);
  text-decoration: underline;
}

.legal-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--background-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .newsletter-form {
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .game-features-grid {
    grid-template-columns: 1fr;
  }
  
  .screenshot-gallery {
    grid-template-columns: 1fr;
  }
  
  .social-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .legal-content {
    padding: 25px;
    margin: 80px 0 40px;
  }
}