:root {
  --primary-color: #2f4f70;
  --secondary-color: #5da8ca;
  --accent-color: #4a5f78;
  --reddit-color: #ff4500;
  --discord-color: #5865f2;
  --background-color: #0f1925;
  --text-color: #e8eef5;
  --light-text: #aabccd;
  --card-bg: rgba(20, 28, 40, 0.82);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  --border-radius: 14px;
  --font-primary: "Inter", "Open Sans", sans-serif;
  --font-heading: "Bebas Neue", sans-serif;
}

[data-theme="dark"] {
  --background-color: #080a12;
  --text-color: #f4f7ff;
  --card-bg: rgba(15, 17, 35, 0.9);
  --light-text: #b8c3ff;
}

body {
  font-family: var(--font-primary);
  background: linear-gradient(180deg, #0c1420 0%, #0e1826 100%);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  transition: background 0.5s ease, color 0.3s ease;
  overflow-x: hidden;
}

input[type="text"],
input[type="email"],
input[type="search"]

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.02) 1px, transparent 1px), radial-gradient(circle, rgba(170,220,255,.01) 2px, transparent 2px);
  background-size: 80px 80px, 140px 140px;
  opacity: .4;
  mix-blend-mode: soft-light;
  z-index: 1;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background-color: var(--card-bg);
  border-radius: 2px;
  margin: 20px auto;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  width: 0;
  background-color: var(--secondary-color);
  animation: load 2s forwards;
}

#loading-screen p {
  margin: 0;
  font-size: 1rem;
  color: var(--light-text);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes load {
  to { width: 100%; }
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header:not(.scrolled) {
  background-color: transparent;
  backdrop-filter: none;
}

header:not(.scrolled) nav a {
  color: white;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

header.scrolled nav a {
  color: var(--text-color);
}

/* Dark mode overrides for header */
[data-theme="dark"] header:not(.scrolled) nav a {
  color: white;
}

[data-theme="dark"] header.scrolled {
  background-color: rgba(18, 18, 18, 0.9);
}

[data-theme="dark"] header.scrolled nav a {
  color: var(--text-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

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

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

nav a:hover,
nav a.active {
  color: var(--secondary-color);
}

nav a.active {
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  z-index: 0;
  background: linear-gradient(180deg, #0c1420 0%, #0e1826 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 20, 32, 0.55), rgba(8, 13, 20, 0.75));
  z-index: 1;
  pointer-events: none;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: translate(-50%, -50%);
  filter: brightness(0.7) blur(2px) contrast(1.1);
  min-width: 100%;
  min-height: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(12, 20, 32, 0.3), rgba(15, 25, 40, 0.5), rgba(8, 13, 20, 0.6));
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 2rem;
  text-align: center;
}

.hero-content h1,
.hero-content p {
  color: #ffffff !important;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.38);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 1.7rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background-color: var(--secondary-color);
  color: #0a1021;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  background-color: #00c6db;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero .stars {
  margin-top: 0;
  font-size: 1.1rem;
  color: #f4f7ff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 3.1rem; }
  .hero-content p { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
}

/* Intro Section */
.intro {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--background-color);
}

.intro h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.intro p {
  max-width: 800px;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
}

h2 {
  font-family: var(--font-heading);
  color: var(--text-color);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 55px;
  height: 3px;
  border-radius: 99px;
  background: var(--secondary-color);
  opacity: 0.72;
}

.section-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Carousel Container */
.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 2rem auto;
  overflow: hidden;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-arrow.left {
  left: -20px;
}

.carousel-arrow.right {
  right: -20px;
}

/* Screenshots Carousel */
.screenshots-carousel,
.gallery-carousel,
.testimonials-carousel {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  padding: 1rem 0;
}

.screenshots-carousel:hover,
.gallery-carousel:hover,
.testimonials-carousel:hover {
  animation-play-state: paused;
}

/* Showcase Section */
.showcase {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--card-bg);
}

.showcase h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.screenshot-card {
  flex: 0 0 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000;
  border-radius: 30px;
  padding: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.screenshot-card:hover {
  transform: translateY(-5px);
}

.screenshot-image {
  width: 246px;
  height: 520px;
  object-fit: contain;
  border-radius: 20px;
  border: 2px solid #222;
  background-color: #111;
}

.screenshot-card p {
  margin-top: 10px;
  color: var(--text-color);
  font-weight: 600;
}

/* Gallery Section */
.gallery {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--background-color);
}

.gallery h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gallery-card {
  flex: 0 0 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: var(--background-color);
}

.features h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

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

.feature-card {
  background: linear-gradient(145deg, rgba(20, 28, 40, 0.95), rgba(20, 28, 40, 0.75) 55%);
  border: 1px solid rgba(93, 168, 202, 0.2);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 35px rgba(93, 168, 202, 0.2);
  border-color: rgba(93, 168, 202, 0.4);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--card-bg);
}

.testimonials h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  flex: 0 0 300px;
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  margin: 0 1rem;
  position: relative;
  overflow: hidden;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-card cite {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Community Section */
.community {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--background-color);
}

.community h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.community-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.community-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.community-button.reddit {
  background-color: var(--reddit-color);
}

.community-button.discord {
  background-color: var(--discord-color);
}

.community-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Download Section */
.download {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--card-bg);
}

.download h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.store-button {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.store-button:hover {
  transform: scale(1.05);
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background-color: var(--background-color);
}

.faq h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.faq-card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.faq-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

/* Footer */
footer {
  padding: 2rem 0;
  text-align: center;
  background-color: var(--card-bg);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  z-index: 1100;
  transition: width 0.2s ease;
}

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

/* Stats Section */
.stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(20, 28, 40, 0.6), rgba(15, 22, 33, 0.8));
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 2rem;
  background: rgba(93, 168, 202, 0.08);
  border: 1px solid rgba(93, 168, 202, 0.2);
  border-radius: var(--border-radius);
  animation: fadeInUp 0.6s ease-out forwards;
}

.stat-card:nth-child(2) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.2s;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

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

/* How It Works */
.how-it-works {
  padding: 4rem 0;
  background-color: var(--background-color);
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 0.5rem;
}

.how-it-works > .container > p {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 3rem;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.how-card {
  position: relative;
  padding: 2.5rem;
  background: rgba(20, 28, 40, 0.6);
  border: 1px solid rgba(93, 168, 202, 0.15);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease, border-color 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
  overflow: hidden;
}

.how-card:nth-child(2) {
  animation-delay: 0.1s;
}

.how-card:nth-child(3) {
  animation-delay: 0.2s;
}

.how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 168, 202, 0.35);
}

.how-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  opacity: 0.25;
}

.how-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

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

/* Comparison Table */
.comparison-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(93, 168, 202, 0.2);
}

.comparison-section h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.comparison-section > p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: rgba(20, 28, 40, 0.5);
  border: 1px solid rgba(93, 168, 202, 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.comparison-table thead {
  background: rgba(93, 168, 202, 0.12);
  border-bottom: 2px solid rgba(93, 168, 202, 0.25);
}

.comparison-table th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.comparison-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(93, 168, 202, 0.1);
  color: var(--light-text);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(93, 168, 202, 0.06);
}

/* Testimonials Stats */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(93, 168, 202, 0.15);
}

.testimonials-stat {
  text-align: center;
  padding: 1rem;
}

.testimonials-stat .stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary-color);
  display: block;
}

.testimonials-stat .stat-text {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.feature-card, .screenshot-card, .gallery-card, .testimonial-card, .faq-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: shimmer 0.6s ease-in-out;
  border-radius: var(--border-radius);
}

.cta-button, .community-button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.external-link-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 25, 40, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOutModal {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.external-link-content {
  text-align: center;
  animation: slideUpModal 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideUpModal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.external-link-favicon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5) rotateZ(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateZ(0deg);
  }
}

.external-link-text {
  color: #e8eef5;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

#back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: rgba(14, 17, 38, 0.86);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1100;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  background: rgba(0, 229, 255, 0.22);
  color: #010f1c;
}

/* Mobile Navigation */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  position: absolute;
  transition: background-color 0.1s 0.2s ease-in-out;
}

.hamburger-inner::before,
.hamburger-inner::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  position: absolute;
  transition: transform 0.2s 0.2s ease-in-out;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  top: 8px;
}

.hamburger[aria-expanded="true"] .hamburger-inner {
  background-color: transparent;
}

.hamburger[aria-expanded="true"] .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .screenshot-card, .gallery-card, .testimonial-card {
    flex: 0 0 250px;
  }

  .hamburger {
    display: block;
  }

  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  nav.active {
    transform: translateY(0);
  }

  nav a {
    color: white;
    font-size: 1.5rem;
  }

  body.menu-open {
    overflow: hidden;
  }
}

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

  .screenshot-card, .gallery-card, .testimonial-card {
    flex: 0 0 200px;
  }
}