/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
}

/* Smooth scrolling for navigation */
html {
  scroll-behavior: smooth;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Age Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.age-modal-content {
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
  border: 2px solid #ff6b6b;
}

.age-modal h2 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.8);
}

.age-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.age-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.age-yes {
  background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.age-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 0, 0.5);
}

.age-no {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.age-no:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 68, 68, 0.5);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #dc143c;
  max-width: 350px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cookie-banner p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner a {
  color: #dc143c;
  text-decoration: none;
  font-weight: bold;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-accept {
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 100%;
}

.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 2px solid #dc143c;
  box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #dc143c;
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
}

.burger-label span {
  width: 25px;
  height: 3px;
  background: #dc143c;
  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 span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #ff6b6b;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(2) {
  opacity: 0;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: #ff6b6b;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  border-left: 2px solid #dc143c;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.burger-checkbox:checked ~ .nav {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.nav ul {
  list-style: none;
}

.nav li {
  margin-bottom: 20px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: #dc143c;
  border-bottom-color: #dc143c;
  transform: translateX(5px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 50%, #2d2d2d 100%);
  opacity: 0.8;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
  background: linear-gradient(45deg, #ffffff, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* About page hero (different design from mechanics) */
.hero-about {
  padding: 140px 0 80px;
  background: radial-gradient(circle at top left, #dc143c 0%, #1a1a1a 50%, #000000 100%);
}

.hero-about-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.hero-about-text {
  text-align: left;
}

.hero-about .hero-title {
  text-align: left;
}

.hero-about .hero-subtitle {
  text-align: left;
  margin-bottom: 20px;
}

.hero-about-lead {
  font-size: 18px;
  color: #f5f5dc;
  line-height: 1.8;
  max-width: 520px;
}

.hero-about-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 16px;
  border: 2px solid #dc143c;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(220, 20, 60, 0.35);
}

.hero-about-card h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-about-card li {
  font-size: 16px;
  color: #f5f5dc;
  margin-bottom: 10px;
}

.hero-about-card li strong {
  color: #dc143c;
  margin-right: 8px;
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 40px;
  text-align: center;
  color: #dc143c;
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

/* Overview Section */
.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-text p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #f5f5dc;
}

.overview-text strong {
  color: #dc143c;
}

.image-placeholder {
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  border: 2px solid #dc143c;
}

.image-placeholder::before {
  content: "16:9";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #dc143c;
  font-size: 24px;
  font-weight: bold;
}

.overview-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 2px solid #dc143c;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
  transition: transform 0.3s ease;
}

.overview-img:hover {
  transform: scale(1.02);
}

/* Features Section */
.features {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  border: 2px solid #dc143c;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(220, 20, 60, 0.3);
}

.feature-icon {
  font-size: 48px;
  min-width: 60px;
  text-align: center;
}

.feature-content h3 {
  font-size: 24px;
  color: #dc143c;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 16px;
  color: #f5f5dc;
  line-height: 1.6;
}

/* Progress Section */
.progress-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  border: 2px solid #444444;
  transition: all 0.3s ease;
}

.progress-item.completed {
  border-color: #00ff00;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.progress-item.active {
  border-color: #dc143c;
  box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.progress-item.upcoming {
  border-color: #ffaa00;
  box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
}

.progress-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #444444;
  position: relative;
  flex-shrink: 0;
}

.progress-item.completed .progress-dot {
  background: #00ff00;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.progress-item.active .progress-dot {
  background: #dc143c;
  box-shadow: 0 0 15px rgba(220, 20, 60, 0.8);
  animation: pulse 2s infinite;
}

.progress-item.upcoming .progress-dot {
  background: #ffaa00;
  box-shadow: 0 0 15px rgba(255, 170, 0, 0.8);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.progress-content h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.progress-content p {
  color: #f5f5dc;
  font-size: 16px;
}

/* Community Section */
.community {
  position: relative;
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
  text-align: center;
  color: #ffffff;
}

.community-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="3" fill="white" opacity="0.5"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.4"/></svg>');
  pointer-events: none;
  z-index: 1;
}

.community .container {
  position: relative;
  z-index: 2;
}

.community h2 {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.community p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sneak Peek Section */
.sneak-peek {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.sneak-peek h2 {
  text-align: center;
}

.sneak-peek p {
  text-align: center;
  font-size: 24px;
  color: #f5f5dc;
  max-width: 800px;
  margin: 0 auto;
}

.sneak-peek-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #dc143c;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Visual Sections */
.visual-section {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.visual-section-alt {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.visual-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.visual-content-reverse {
  direction: rtl;
}

.visual-content-reverse > * {
  direction: ltr;
}

.visual-image {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #dc143c;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
}

.visual-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.visual-image:hover img {
  transform: scale(1.02);
}

.visual-text h3 {
  color: #dc143c;
  font-size: 28px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.visual-text p {
  font-size: 18px;
  color: #f5f5dc;
  line-height: 1.8;
}

/* Updates Section */
.updates {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.updates-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #f5f5dc;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.updates-content strong {
  color: #dc143c;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #dc143c;
}

.faq-item h3 {
  color: #dc143c;
  font-size: 22px;
  margin-bottom: 15px;
}

.faq-item p {
  color: #f5f5dc;
  font-size: 16px;
  line-height: 1.7;
}

.faq-item strong {
  color: #dc143c;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  color: #dc143c;
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-info p {
  color: #f5f5dc;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details p {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-details strong {
  color: #dc143c;
}

.contact-form {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #dc143c;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #f5f5dc;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #444444;
  border-radius: 8px;
  background: #2d2d2d;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #dc143c;
  box-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 14px;
}

.checkbox-group a {
  color: #dc143c;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 40px 0;
  border-top: 2px solid #dc143c;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #f5f5dc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #dc143c;
}

.footer-nav span {
  color: #dc143c;
  font-weight: bold;
}

.footer-text {
  color: #f5f5dc;
  font-size: 14px;
  margin: 0;
}

.footer-security {
  color: #dc143c;
  font-size: 12px;
  margin: 0;
}

/* Legal Pages Styles */
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #f5f5dc;
  line-height: 1.8;
}

.legal-container h1 {
  color: #dc143c;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.legal-container h2 {
  color: #dc143c;
  font-size: 1.8rem;
  margin: 40px 0 20px 0;
  border-bottom: 2px solid #dc143c;
  padding-bottom: 10px;
}

.legal-container h3 {
  color: #ff6b6b;
  font-size: 1.4rem;
  margin: 30px 0 15px 0;
}

.legal-container p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #f5f5dc;
}

.legal-container ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-container li {
  margin-bottom: 10px;
  color: #f5f5dc;
}

.legal-container strong {
  color: #dc143c;
}

.back-link {
  margin-top: 50px;
  text-align: center;
}

.back-link a {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.back-link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

/* Mechanics Section */
.mechanics {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.mechanics-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mechanics-content p {
  font-size: 18px;
  color: #f5f5dc;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 18px;
  color: #f5f5dc;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Page Content Styles */
.page-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  text-align: center;
  margin-bottom: 30px;
}

.page-content h3 {
  color: #dc143c;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-content h4 {
  color: #dc143c;
  font-size: 22px;
  margin-bottom: 15px;
}

.page-content p {
  font-size: 18px;
  color: #f5f5dc;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-content ul li {
  font-size: 18px;
  color: #f5f5dc;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #dc143c;
  font-weight: bold;
  font-size: 20px;
}

.mechanics-list,
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.mechanics-item,
.value-item {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #dc143c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mechanics-item:hover,
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(220, 20, 60, 0.3);
}

.mechanics-item h4,
.value-item h4 {
  margin-bottom: 15px;
  font-size: 20px;
}

.mechanics-item p,
.value-item p {
  font-size: 16px;
  margin-bottom: 0;
}

.features-advanced,
.team-list {
  text-align: left;
  max-width: 700px;
  margin: 30px auto;
}

.features-advanced li,
.team-list li {
  margin-bottom: 12px;
}

.features-advanced li strong,
.team-list li strong {
  color: #dc143c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav {
    width: 280px;
    padding: 70px 20px 20px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .overview-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .progress-item {
    flex-direction: column;
    text-align: center;
  }

  .progress-dot {
    margin-bottom: 20px;
  }

  .sneak-peek-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mechanics-list,
  .values-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mechanics-content,
  .about-content {
    padding: 0 15px;
  }

  .cookie-banner {
    left: 15px;
    right: 15px;
    max-width: none;
    bottom: 15px;
  }

  .age-modal-content {
    margin: 20px;
    padding: 30px;
  }

  .age-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .feature-icon {
    font-size: 36px;
  }

  .feature-content h3 {
    font-size: 20px;
  }

  .progress-content h3 {
    font-size: 20px;
  }

  .visual-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visual-content-reverse {
    direction: ltr;
  }
}
