:root {
  --sky-light: #87ceeb;
  --sky-blue: #4a90d9;
  --sky-deep: #2e5a88;
  --sea-blue: #1e90ff;
  --simit-gold: #f5a623;
  --simit-orange: #e8912d;
  --cloud-white: #ffffff;
  --text-dark: #1a2a3a;
  --text-light: #4a5a6a;
  --success-green: #4cd964;
  --danger-red: #ff6b6b;
  --purple-power: #9b59b6;
  --cyan-shield: #00ced1;

  --font-display: "Bangers", cursive;
  --font-body: "Nunito", sans-serif;

  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 12px 60px rgba(0, 0, 0, 0.2);
}

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

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--simit-gold);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.3s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: -100px; /* Hidden - accessibility feature disabled */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  overflow-x: hidden;
  background: linear-gradient(
    180deg,
    var(--sky-light) 0%,
    var(--sky-blue) 100%
  );
  min-height: 100vh;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

/* Animated Background */
.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  filter: blur(2px);
  animation: float-cloud linear infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-1 {
  width: 200px;
  height: 60px;
  top: 10%;
  animation-duration: 45s;
}

.cloud-1::before {
  width: 80px;
  height: 80px;
  top: -40px;
  left: 30px;
}

.cloud-1::after {
  width: 100px;
  height: 100px;
  top: -50px;
  right: 30px;
}

.cloud-2 {
  width: 150px;
  height: 45px;
  top: 25%;
  animation-duration: 60s;
  animation-delay: -20s;
}

.cloud-2::before {
  width: 60px;
  height: 60px;
  top: -30px;
  left: 20px;
}

.cloud-2::after {
  width: 70px;
  height: 70px;
  top: -35px;
  right: 25px;
}

.cloud-3 {
  width: 180px;
  height: 55px;
  top: 50%;
  animation-duration: 55s;
  animation-delay: -10s;
}

.cloud-3::before {
  width: 70px;
  height: 70px;
  top: -35px;
  left: 25px;
}

.cloud-3::after {
  width: 85px;
  height: 85px;
  top: -42px;
  right: 28px;
}

@keyframes float-cloud {
  from {
    transform: translateX(-300px);
  }

  to {
    transform: translateX(calc(100vw + 300px));
  }
}

/* Seagull Animation */
.flying-seagull {
  position: absolute;
  font-size: 2rem;
  animation: fly-across 20s linear infinite;
  opacity: 0.6;
}

.seagull-1 {
  top: 15%;
  animation-delay: 0s;
}

.seagull-2 {
  top: 35%;
  animation-delay: -7s;
  font-size: 1.5rem;
}

.seagull-3 {
  top: 60%;
  animation-delay: -14s;
  font-size: 1.2rem;
}

@keyframes fly-across {
  0% {
    transform: translateX(-50px) translateY(0) rotate(0deg);
  }

  25% {
    transform: translateX(25vw) translateY(-20px) rotate(-5deg);
  }

  50% {
    transform: translateX(50vw) translateY(0) rotate(0deg);
  }

  75% {
    transform: translateX(75vw) translateY(20px) rotate(5deg);
  }

  100% {
    transform: translateX(calc(100vw + 50px)) translateY(0) rotate(0deg);
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.5rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  /* background: linear-gradient(135deg, var(--simit-gold), var(--simit-orange)); Removed for app icon style */
  background: transparent;
  border-radius: 22.37%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden; /* Clip image to border radius */
  /* box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4); Removed for app icon style */
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--text-dark), #2a3a4a);
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: 1rem;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  background: rgba(74, 144, 217, 0.1);
  border: 1px solid rgba(74, 144, 217, 0.2);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.lang-current:hover {
  background: rgba(74, 144, 217, 0.15);
  border-color: rgba(74, 144, 217, 0.3);
}

.lang-flag {
  width: 20px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  overflow: hidden;
}

.flag-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.lang-code {
  font-weight: 700;
}

.lang-arrow {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.language-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 150px;
  z-index: 1001;
  padding-top: 4px;
}

/* Bridge gap between button and dropdown to prevent closing */
.lang-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 14px;
}

.lang-dropdown-inner {
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.language-switcher.open .lang-dropdown {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.lang-option:hover {
  background: rgba(74, 144, 217, 0.08);
}

.lang-option.active {
  background: rgba(74, 144, 217, 0.12);
  font-weight: 700;
}

.lang-option .lang-name {
  font-weight: 500;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero-content {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  animation: slide-in-left 1s ease-out;
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--simit-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--cloud-white);
  text-shadow:
    4px 4px 0 var(--sky-deep),
    6px 6px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.hero h1 span {
  color: var(--simit-gold);
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--cloud-white);
  line-height: 1.8;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--text-dark);
  color: white;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.btn-primary svg {
  width: 28px;
  height: 28px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  animation: slide-in-right 1s ease-out;
  overflow: hidden;
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.phone-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.phone-frame {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 45px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.4),
    inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.phone-screen {
  background: linear-gradient(180deg, var(--sky-light), var(--sky-blue));
  border-radius: 35px;
  aspect-ratio: 1206/2622;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  background: #1a1a1a;
  border-radius: 20px;
}

.game-preview {
  text-align: center;
  padding: 2rem;
}

.game-preview .marti-char {
  font-size: 5rem;
  animation: bob 2s ease-in-out infinite;
  display: block;
  margin-bottom: 1rem;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.game-preview .score-display {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--success-green);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.game-items {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.game-items span {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.game-items span:nth-child(2) {
  animation-delay: -1s;
}

.game-items span:nth-child(3) {
  animation-delay: -2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-simit {
  position: absolute;
  font-size: 3rem;
  animation: rotate-float 8s linear infinite;
}

.float-simit-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.float-simit-2 {
  bottom: 30%;
  right: -5%;
  animation-delay: -3s;
}

@keyframes rotate-float {
  from {
    transform: rotate(0deg) translateY(0);
  }

  to {
    transform: rotate(360deg) translateY(-20px);
  }
}

/* Stats Bar */
.stats-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  margin: -2rem 2rem 0;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 10;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-dark);
  letter-spacing: 2px;
}

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

/* Features Section */
.features {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--sky-blue) 0%, #3a7bc8 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: white;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--simit-gold), var(--simit-orange));
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--sky-light), var(--sky-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 8px 25px rgba(74, 144, 217, 0.3);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

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

/* Power-ups Section */
.powerups {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, #3a7bc8 0%, var(--sky-deep) 100%);
}

.powerups-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.powerup-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.powerup-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.powerup-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.powerups .powerup-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.powerup-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Screenshots Section */
.screenshots {
  padding: 8rem 2rem;
  background: white;
}

.screenshots .section-title {
  color: var(--text-dark);
  text-shadow: none;
}

.screenshots .section-subtitle {
  color: var(--text-light);
}

.screenshot-carousel {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 1.5rem;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

.screenshot-carousel::-webkit-scrollbar {
  height: 8px;
}

.screenshot-carousel::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.screenshot-carousel::-webkit-scrollbar-thumb {
  background: var(--sky-blue);
  border-radius: 4px;
}

.screenshot-item {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: center;
}

.screenshot-frame {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 30px;
  padding: 8px;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .screenshot-frame:hover {
    transform: scale(1.05);
  }
}

.screenshot-inner {
  background: linear-gradient(180deg, var(--sky-light), var(--sky-blue));
  border-radius: 24px;
  aspect-ratio: 1206/2622;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}

.screenshot-inner img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.screenshot-label {
  text-align: center;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* CTA Section */
.cta {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--sky-deep) 0%, #1a3a5a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: rotate-bg 30s linear infinite;
}

@keyframes rotate-bg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: white;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.cta p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.app-store-btn {
  background: white;
  color: var(--text-dark);
  padding: 1rem 2rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.app-store-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.app-store-btn svg {
  width: 35px;
  height: 35px;
}

.app-store-btn .btn-text {
  text-align: left;
}

.app-store-btn .btn-text small {
  font-size: 0.75rem;
  display: block;
  opacity: 0.7;
}

.app-store-btn .btn-text strong {
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: #0a1a2a;
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  border-radius: 22.37%;
  overflow: hidden;
}

.footer-brand .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--simit-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--simit-gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

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

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.75rem 1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    box-shadow: var(--shadow-medium);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .language-switcher {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .lang-current {
    width: 100%;
    justify-content: center;
  }

  .lang-dropdown {
    position: static;
    margin-top: 0.5rem;
    padding-top: 0;
  }

  .lang-dropdown-inner {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  .phone-mockup {
    max-width: 260px;
  }

  .stats-bar {
    margin: -1rem 1rem 0;
    padding: 1.5rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .features,
  .powerups,
  .screenshots,
  .cta {
    padding: 5rem 1rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .app-store-btn {
    width: 100%;
    justify-content: center;
  }
}

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

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

/* Anchor offset for fixed navbar */
section {
  scroll-margin-top: 90px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Rendering optimization */
@supports (content-visibility: auto) {
  .features,
  .powerups,
  .screenshots,
  .cta,
  footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}
