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

:root {
  --sky: #0ea5e9;
  --sky-dark: #0284c7;
  --sky-light: #7dd3fc;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fdba74;
  --purple: #8b5cf6;
  --purple-dark: #7c3aed;
  --purple-light: #c4b5fd;
  --yellow: #eab308;
  --yellow-dark: #ca8a04;
  --yellow-light: #fde047;
  --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 50%, #f97316 100%);
  --gradient-2: linear-gradient(135deg, #f97316 0%, #eab308 100%);
  --gradient-3: linear-gradient(135deg, #8b5cf6 0%, #0ea5e9 100%);
  --gradient-bg: linear-gradient(180deg, #f0f9ff 0%, #faf5ff 50%, #fff7ed 100%);
  --background: #ffffff;
  --surface: #f8fafc;
  --text: #0f172a;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--gradient-bg);
  min-height: 100vh;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo img {
  filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.3));
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a:hover {
  color: var(--sky-dark);
}

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

.download-btn {
  background: var(--gradient-1);
  color: white;
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
  text-decoration: none;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.hero {
  padding: 10rem 0 6rem;
  background: var(--gradient-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text .badge {
  display: inline-block;
  background: var(--gradient-2);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-features span {
  background: rgba(14, 165, 233, 0.1);
  color: var(--sky-dark);
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

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

.btn-primary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1.125rem 2.25rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: white;
  color: var(--sky);
}

.btn-primary.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

.download-link {
  display: inline-block;
  margin-top: 1rem;
}

.btn-secondary {
  background: white;
  color: var(--purple);
  border: 2px solid var(--purple);
  padding: 1.125rem 2.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--sky);
  border: 2px solid var(--sky);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--sky);
  color: white;
  transform: translateY(-2px);
}

.phone-mockup {
  background: white;
  border-radius: 3rem;
  padding: 1rem;
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.phone-screen {
  background: var(--gradient-3);
  border-radius: 2.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: white;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.phone-screen::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.app-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.phone-screen h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.phone-screen p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  font-weight: 500;
}

.dice-indicator {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.dice {
  font-size: 2.5rem;
  animation: roll 1.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.dice:nth-child(1) {
  animation-delay: 0s;
}
.dice:nth-child(2) {
  animation-delay: 0.3s;
}
.dice:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes roll {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(90deg) scale(1.1);
  }
  50% {
    transform: rotate(180deg) scale(1);
  }
  75% {
    transform: rotate(270deg) scale(1.1);
  }
}

.features {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.features h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:nth-child(2):hover {
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}
.feature-card:nth-child(3):hover {
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}
.feature-card:nth-child(4):hover {
  box-shadow: 0 20px 40px rgba(234, 179, 8, 0.2);
}
.feature-card:nth-child(5):hover {
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}
.feature-card:nth-child(6):hover {
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border-radius: 1rem;
}

.feature-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text);
}

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

.preview {
  padding: 6rem 0;
  background: linear-gradient(180deg, white 0%, #f8fafc 100%);
}

.preview h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.preview-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border);
}

.preview-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.preview-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.preview-card:hover img {
  transform: scale(1.05);
}

.game-modes {
  padding: 6rem 0;
  background: white;
}

.game-modes h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.game-mode-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.game-mode-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.game-mode-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.game-mode-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.game-mode-card p {
  color: var(--text-light);
  transition: color 0.3s ease;
  line-height: 1.6;
}

.themes {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.themes h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.themes-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.theme-card {
  height: 220px;
  border-radius: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.theme-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.theme-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

.theme-card:hover::before {
  opacity: 1;
}

.theme-blue {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%);
}

.theme-purple {
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-dark) 100%
  );
}

.theme-yellow {
  background: linear-gradient(
    135deg,
    var(--yellow) 0%,
    var(--yellow-dark) 100%
  );
}

.theme-orange {
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-dark) 100%
  );
}

.pricing {
  padding: 6rem 0;
  background: white;
}

.pricing h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid var(--border);
}

.pricing-card.featured {
  border: 2px solid var(--purple);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sky);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  border-color: var(--purple);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--gradient-2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
}

.pricing-name {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--sky);
  font-weight: bold;
  font-size: 1.25rem;
}

.reviews {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 100%);
}

.reviews h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.review-stars {
  color: var(--yellow);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-content {
  margin-bottom: 1.5rem;
}

.review-content p {
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
}

.review-info h4 {
  font-weight: 700;
  color: var(--text);
}

.review-info span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.final-cta {
  padding: 7rem 0;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.final-cta::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

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

.final-cta h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.final-cta p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-qr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.qr-code {
  background: white;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.qr-code:hover {
  transform: scale(1.05);
}

.qr-code img {
  width: 150px;
  height: 150px;
  display: block;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

.qr-code span {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 0.875rem;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.footer-section h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

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

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

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

.footer-section a:hover {
  color: var(--sky-light);
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .hero-text h1 {
    font-size: 2.5rem;
  }

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

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

  .features h2,
  .preview h2,
  .game-modes h2,
  .themes h2,
  .pricing h2,
  .reviews h2,
  .final-cta h2 {
    font-size: 2.25rem;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

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

  .footer-section p {
    max-width: 400px;
    margin: 0 auto;
  }

  .download-buttons {
    align-items: center;
  }
}
