/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Medieval Color Palette */
  --primary-gold: #d4af37;
  --dark-gold: #b8941f;
  --deep-red: #8b0000;
  --royal-blue: #1e3a8a;
  --stone-gray: #6b7280;
  --dark-stone: #374151;
  --parchment: #f5f5dc;
  --dark-brown: #3c2415;
  --light-brown: #8b4513;
  --forest-green: #228b22;

  /* Typography */
  --font-medieval: "Cinzel", serif;
  --font-body: "Open Sans", sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  --border-radius: 8px;

  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.25);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark-stone);
  background-color: var(--parchment);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-medieval);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--dark-brown);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
}

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

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--dark-brown);
}

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

.btn img {
  width: 24px;
  height: 24px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-brown);
  color: var(--parchment);
  padding: 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-link {
  color: var(--primary-gold);
  text-decoration: underline;
  margin-left: 15px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(60, 36, 21, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: all 0.3s ease;
}

.navbar {
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo {
  width: 40px;
  height: 40px;
}

.brand-text {
  font-family: var(--font-medieval);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--parchment);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-gold);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--parchment);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(60, 36, 21, 0.6),
    rgba(139, 0, 0, 0.6)
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--parchment);
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, var(--primary-gold), var(--parchment));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-medieval);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

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

/* About Game Section */
.about-game {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--parchment), #f0f0e6);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  color: var(--deep-red);
  margin-bottom: 1.5rem;
}

.about-text h4 {
  color: var(--dark-brown);
  margin: 2rem 0 1rem 0;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.about-text li::before {
  content: "⚔️";
  position: absolute;
  left: 0;
  top: 0;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
}

/* Features Section */
.features {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--dark-stone), var(--stone-gray));
  color: var(--parchment);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.features .container {
  position: relative;
  z-index: 1;
}

.features .section-header h2,
.features .section-header p {
  color: var(--parchment);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(245, 245, 220, 0.95);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid var(--primary-gold);
  box-shadow: var(--shadow-medium);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-heavy);
}

.feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.feature-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Fallback icons when images are not available */
.feature-icon::before {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.feature-card:nth-child(1) .feature-icon::before {
  content: "🏰";
}
.feature-card:nth-child(2) .feature-icon::before {
  content: "⚔️";
}
.feature-card:nth-child(3) .feature-icon::before {
  content: "💰";
}
.feature-card:nth-child(4) .feature-icon::before {
  content: "🏹";
}
.feature-card:nth-child(5) .feature-icon::before {
  content: "📜";
}
.feature-card:nth-child(6) .feature-icon::before {
  content: "🗺️";
}

/* Hide fallback when image loads successfully */
.feature-icon img {
  position: relative;
  z-index: 2;
}

.feature-icon:has(img) ::before {
  display: none;
}

.feature-card h3 {
  color: var(--deep-red);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--dark-stone);
}

/* Target Audience Section */
.target-audience {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f5f5dc, #e6e6d4);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.audience-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-gold);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.audience-card h3 {
  color: var(--deep-red);
  margin-bottom: 1rem;
}

/* Screenshots Section */
.screenshots {
  padding: var(--section-padding);
  background: var(--dark-brown);
  color: var(--parchment);
}

.screenshots .section-header h2,
.screenshots .section-header p {
  color: var(--parchment);
}

.screenshots-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.screenshot-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.screenshot-item:hover {
  transform: scale(1.05);
}

.screenshot-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.screenshot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1.5rem 1.5rem;
  color: white;
}

.screenshot-overlay h4 {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

/* Screenshot Modal Styles */
.screenshot-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  background: var(--dark-brown);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  width: 100%;
  animation: modalSlideIn 0.3s ease;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-info h4 {
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-info p {
  color: var(--parchment);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--parchment);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-gold);
  transform: scale(1.1);
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.8) translateY(-20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Responsive modal styles */
@media (max-width: 768px) {
  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
    max-width: calc(100vw - 2rem);
  }

  .modal-info h4 {
    font-size: 1.25rem;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }
}

/* Game Mechanics Section */
.game-mechanics {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--parchment), #f0f0e6);
}

.mechanics-content {
  max-width: 900px;
  margin: 0 auto;
}

.mechanic-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.mechanic-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.mechanic-number {
  font-family: var(--font-medieval);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  min-width: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mechanic-info h3 {
  color: var(--deep-red);
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
  padding: var(--section-padding);
  background: var(--royal-blue);
  color: var(--parchment);
}

.reviews .section-header h2,
.reviews .section-header p {
  color: var(--parchment);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(245, 245, 220, 0.95);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-gold);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-heavy);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stars {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.rating-text {
  font-weight: 600;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-weight: 600;
  color: var(--deep-red);
}

.reviewer-location {
  font-size: 0.9rem;
  color: var(--stone-gray);
  opacity: 0.9;
}

.review-text {
  color: var(--dark-stone);
} /* Sy
stem Requirements Section */
.system-requirements {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #e6e6d4, var(--parchment));
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.requirement-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
  border-top: 4px solid var(--primary-gold);
}

.requirement-card h3 {
  color: var(--deep-red);
  margin-bottom: 1.5rem;
}

.requirement-card ul {
  list-style: none;
  text-align: left;
}

.requirement-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.requirement-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: bold;
}

.requirement-card li:last-child {
  border-bottom: none;
}

/* FAQ Section */
.faq {
  padding: var(--section-padding);
  background: var(--stone-gray);
  color: var(--parchment);
}

.faq .section-header h2,
.faq .section-header p {
  color: var(--parchment);
}

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

.faq-item {
  background: rgba(245, 245, 220, 0.95);
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-gold);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.3);
}

.faq-question h3 {
  color: var(--primary-gold);
  margin: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

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

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--parchment), #f0f0e6);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary-gold);
}

.contact-item h3 {
  color: var(--deep-red);
  margin-bottom: 1rem;
}

.contact-item a {
  color: var(--royal-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.contact-form-container h3 {
  color: var(--deep-red);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

/* Consent Checkbox Styles */
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
}

.consent-checkbox input[type="checkbox"] {
  margin: 0;
  margin-top: 2px;
  width: auto;
  min-width: 18px;
  height: 18px;
  cursor: pointer;
}

.consent-checkbox label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-color);
  cursor: pointer;
  user-select: none;
}

.consent-checkbox label a {
  color: var(--primary-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.consent-checkbox label a:hover {
  color: var(--deep-red);
}

/* CTA Final Section */
.cta-final {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--dark-brown), var(--deep-red));
  color: var(--parchment);
  text-align: center;
}

.cta-content h2 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 3rem;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.cta-note {
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--dark-brown);
  color: var(--parchment);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

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

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

.footer-brand-text {
  font-family: var(--font-medieval);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

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

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

.footer-section a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-gold);
  transform: translateY(-2px);
}

.social-links img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--dark-brown);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-gallery {
    grid-template-columns: 1fr;
  }

  .mechanic-item {
    flex-direction: column;
    text-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .consent-checkbox {
    flex-direction: row;
    align-items: flex-start;
  }

  .consent-checkbox label {
    font-size: 0.85rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-gold);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} /* Legal
 Pages Styles */
.legal-page {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--parchment), #f0f0e6);
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.legal-content h1 {
  color: var(--deep-red);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary-gold);
  padding-bottom: 1rem;
}

.last-updated {
  color: var(--stone-gray);
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

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

.legal-section h2 {
  color: var(--dark-brown);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-gold);
  padding-left: 1rem;
}

.legal-section h3 {
  color: var(--deep-red);
  font-size: 1.3rem;
  margin: 1.5rem 0 0.8rem 0;
}

.legal-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-section a {
  color: var(--royal-blue);
  text-decoration: none;
  font-weight: 600;
}

.legal-section a:hover {
  text-decoration: underline;
  color: var(--deep-red);
}

.legal-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 40px;
  }

  .legal-content {
    padding: 2rem 1.5rem;
    margin: 0 15px;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-section h3 {
    font-size: 1.2rem;
  }
}
