/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0a0a 50%, #1a0a0a 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: linear-gradient(135deg, #4a0e0e 0%, #8b1535 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 0, 85, 0.5);
  border: 2px solid rgba(255, 0, 85, 0.3);
}

.age-modal-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-modal-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.age-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.age-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-yes {
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  color: #000;
}

.age-no {
  background: linear-gradient(45deg, #ff4757, #cc3a45);
  color: #fff;
}

.age-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d0a0a 0%, #4a0e0e 100%);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(255, 0, 85, 0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #ffa500;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-btn {
  background: linear-gradient(45deg, #ffa500, #ff6b6b);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 2px solid rgba(255, 0, 85, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffa500, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 101;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #ffa500, #ff6b6b);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  background: linear-gradient(135deg, #2d0a0a 0%, #4a0e0e 100%);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 20px 20px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.burger-checkbox:checked ~ .nav {
  transform: translateX(0);
}

.nav-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ffa500;
  padding-left: 10px;
}

body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a0e0e 0%, #8b1535 50%, #4a0e0e 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffa500, #ff6b6b, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 165, 0, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.5);
  }
  to {
    text-shadow: 0 0 50px rgba(255, 165, 0, 0.8);
  }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: #ffffff;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.6;
  }
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #ffa500, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Game Overview */
.game-overview {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0a0a 100%);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.overview-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 2px solid rgba(255, 165, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  object-fit: cover;
}

.overview-img:hover {
  transform: scale(1.02);
  border-color: rgba(255, 165, 0, 0.6);
  box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
}

/* Features */
.features {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0a0a 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 165, 0, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-card {
  perspective: 1000px;
  height: 100%;
}

.feature-card-inner {
  position: relative;
  padding: 40px 30px;
  background: linear-gradient(
    135deg,
    rgba(45, 10, 10, 0.8) 0%,
    rgba(74, 14, 14, 0.8) 100%
  );
  border-radius: 20px;
  border: 2px solid rgba(255, 165, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card:hover .feature-card-inner {
  transform: translateY(-10px) rotateX(5deg);
  border-color: rgba(255, 165, 0, 0.6);
  box-shadow: 0 20px 40px rgba(255, 0, 85, 0.4), 0 0 30px rgba(255, 165, 0, 0.2);
}

.feature-icon-wrapper {
  margin-bottom: 20px;
  position: relative;
}

.feature-icon {
  font-size: 4rem;
  display: inline-block;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.3));
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotateY(15deg);
  filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.6));
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ffa500, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.feature-content p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.feature-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 165, 0, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover .feature-glow {
  opacity: 1;
}

/* Progress Timeline */
.progress-section {
  background: linear-gradient(135deg, #2d0a0a 0%, #1a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.progress-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 0, 85, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.progress-timeline {
  position: relative;
  padding: 80px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 136, 0.6) 0%,
    rgba(0, 255, 136, 0.6) 40%,
    rgba(255, 165, 0, 0.8) 40%,
    rgba(255, 165, 0, 0.8) 70%,
    rgba(150, 150, 150, 0.4) 70%,
    rgba(150, 150, 150, 0.4) 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
  z-index: 1;
}

.progress-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  z-index: 2;
}

.step-connector {
  width: 100%;
  height: 2px;
  margin: 10px 0;
  background: linear-gradient(90deg, rgba(255, 165, 0, 0.5), transparent);
  flex-shrink: 0;
}

.progress-step.completed .step-connector {
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.5), transparent);
}

.progress-step:last-child .step-connector {
  display: none;
}

.step-marker {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  z-index: 3;
  margin-bottom: 10px;
}

.marker-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}

.progress-step.completed .marker-inner {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #000;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.progress-step.active .marker-inner {
  background: linear-gradient(135deg, #ffa500 0%, #ff6b6b 100%);
  color: #000;
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.7);
  animation: markerPulse 2s ease-in-out infinite;
}

.progress-step.upcoming .marker-inner {
  background: linear-gradient(135deg, #555 0%, #777 100%);
  color: #fff;
  box-shadow: 0 0 15px rgba(150, 150, 150, 0.3);
}

@keyframes markerPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 165, 0, 0.9);
  }
}

.step-content {
  width: 100%;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(45, 10, 10, 0.9) 0%,
    rgba(74, 14, 14, 0.9) 100%
  );
  border-radius: 15px;
  border: 2px solid rgba(255, 165, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-align: center;
  margin-top: 10px;
}

.progress-step:hover .step-content {
  transform: translateY(-5px);
  border-color: rgba(255, 165, 0, 0.5);
  box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
}

.step-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-step.completed .step-badge {
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  color: #000;
}

.active-badge {
  background: linear-gradient(45deg, #ffa500, #ff6b6b);
  color: #000;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.upcoming-badge {
  background: linear-gradient(45deg, #666, #888);
  color: #fff;
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffa500, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.step-content p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Technology Section */
.technology-section {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0a0a 100%);
  position: relative;
}

.technology-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 165, 0, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.technology-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.tech-category {
  padding: 35px;
  background: linear-gradient(
    135deg,
    rgba(45, 10, 10, 0.8) 0%,
    rgba(74, 14, 14, 0.8) 100%
  );
  border-radius: 20px;
  border: 2px solid rgba(255, 165, 0, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.tech-category:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 165, 0, 0.5);
  box-shadow: 0 15px 35px rgba(255, 0, 85, 0.3);
}

.tech-category-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffa500, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  text-align: center;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tech-tag {
  padding: 10px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 165, 0, 0.15) 0%,
    rgba(255, 107, 107, 0.15) 100%
  );
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 25px;
  color: #ffa500;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 165, 0, 0.25) 0%,
    rgba(255, 107, 107, 0.25) 100%
  );
  border-color: rgba(255, 165, 0, 0.6);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

.tech-description {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(45, 10, 10, 0.6) 0%,
    rgba(74, 14, 14, 0.6) 100%
  );
  border-radius: 15px;
  border: 2px solid rgba(255, 165, 0, 0.2);
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.tech-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

/* Visual Sneak Peek */
.visual-sneak-peek {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0a0a 100%);
  position: relative;
  overflow: hidden;
}

.visual-sneak-peek::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 165, 0, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.visual-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 0, 85, 0.4);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffa500, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.gallery-overlay p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

/* News Section */
.news-section {
  background: linear-gradient(135deg, #2d0a0a 0%, #1a0a0a 100%);
}

.news-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ */
.faq-section {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0a0a 100%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-item {
  padding: 30px;
  background: linear-gradient(135deg, #2d0a0a 0%, #4a0e0e 100%);
  border-radius: 15px;
  border: 2px solid rgba(255, 165, 0, 0.2);
}

.faq-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffa500;
}

.faq-item p {
  font-size: 1.1rem;
  color: #f0f0f0;
  line-height: 1.7;
}

/* Contact */
.contact-section {
  background: linear-gradient(135deg, #2d0a0a 0%, #1a0a0a 100%);
}

.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.contact-content strong {
  color: #ffa500;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a0a0a 0%, #0d0505 100%);
  padding: 40px 0;
  border-top: 2px solid rgba(255, 165, 0, 0.2);
}

.footer-content {
  text-align: center;
}

.footer-links {
  margin-bottom: 20px;
}

.site-name {
  color: #ffa500;
  font-weight: bold;
}

.separator {
  color: #ffa500;
  margin: 0 10px;
}

.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffa500;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: #f0f0f0;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffa500;
}

.footer-info p {
  margin: 5px 0;
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .overview-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .progress-timeline {
    padding: 60px 10px 30px;
    gap: 15px;
  }

  .timeline-line {
    top: 30px;
    left: 5%;
    right: 5%;
  }

  .step-connector {
    display: none;
  }

  .step-marker {
    width: 60px;
    height: 60px;
  }

  .marker-inner {
    font-size: 1.5rem;
  }

  .progress-step {
    min-width: 150px;
    max-width: 100%;
  }

  .step-content {
    padding: 15px;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .technology-content {
    grid-template-columns: 1fr;
  }

  .visual-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 100%
    );
  }

  .nav {
    width: 200px;
  }

  .age-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links,
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-links a,
  .footer-nav a {
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-icon {
    font-size: 3rem;
  }

  .progress-timeline {
    padding: 50px 5px 20px;
    gap: 10px;
  }

  .timeline-line {
    top: 25px;
    left: 3%;
    right: 3%;
    height: 3px;
  }

  .step-marker {
    width: 50px;
    height: 50px;
  }

  .marker-inner {
    font-size: 1.2rem;
  }

  .progress-step {
    min-width: 120px;
  }

  .step-content {
    padding: 12px;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.8rem;
  }
}
