.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top, rgba(76, 175, 80, 0.14), transparent 45%), linear-gradient(180deg, #0c1016 0%, #090b0f 65%, #050709 100%);
}

.landing-header {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 15, 0.85);
  backdrop-filter: blur(14px);
}

.landing-header-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
}

.landing-brand img {
  height: 58px;
  width: auto;
  display: block;
}

.landing-top-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(245, 247, 250, 0.85);
}

.lang-select {
  background: rgba(17, 20, 24, 0.85);
  color: #f5f7fa;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.35rem 0.9rem;
  font-size: 0.92rem;
  cursor: pointer;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.lang-select:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.35);
}

.landing-main {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(17, 20, 24, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.hero-content h1 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.2;
  margin: 0 0 0.8rem;
  max-width: 30ch;
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  color: rgba(245, 247, 250, 0.75);
  max-width: 40ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-play-main,
.btn-secondary {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary {
  background: transparent;
  color: #f5f7fa;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-play-main {
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #0b0f10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-play-main:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.45);
}

.btn-play-main:hover {
  transform: translateY(-1px);
}

.hero-slider-wrap {
  width: 100%;
}

.hero-slider {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  aspect-ratio: 16 / 9;
}

.hero-slider-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slider-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(5, 5, 5, 0.85), rgba(255, 255, 255, 0) 40%, rgba(5, 5, 5, 0.9));
  pointer-events: none;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0.75;
  transition: width 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.slider-dot.active {
  width: 22px;
  background: var(--accent);
  opacity: 1;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin: 0;
}

.section-heading {
  color: var(--accent);
}

.value-card h3 {
  font-size: 1.35rem;
}

.faq-item h3 {
  font-size: 1.1rem;
}

.gameflow .section-heading h2 {
  color: var(--accent);
}

.value-props,
.gameflow,
.feature-grid,
.faq {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.value-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(12, 14, 21, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.value-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.value-card h3,
.faq-item h3 {
  color: var(--accent);
}

.value-card:hover,
.gameflow-step:hover,
.faq-item:hover,
.feature-list li:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: rgba(76, 175, 80, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.value-card,
.gameflow-step,
.faq-item,
.feature-list li {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.gameflow-step h3 {
  color: rgba(245, 247, 250, 0.85);
  font-size: 1rem;
}

.value-card p {
  margin: 0;
  color: rgba(245, 247, 250, 0.7);
}

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

.gameflow-step {
  padding: 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 22, 33, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.gameflow-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.gameflow-step p {
  margin: 0;
  color: rgba(245, 247, 250, 0.75);
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.feature-list li {
  background: rgba(17, 20, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 1.25rem;
  border-radius: 0.9rem;
  font-size: 0.95rem;
  color: rgba(245, 247, 250, 0.8);
}

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

.faq-item {
  background: rgba(12, 14, 21, 0.85);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.2rem;
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: rgba(245, 247, 250, 0.75);
  font-size: 0.93rem;
}

.landing-footer {
  margin-top: auto;
  padding: 1.5rem 1.5rem 2rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 13, 0.8);
}

.landing-footer p {
  margin: 0;
  color: rgba(245, 247, 250, 0.65);
  font-size: 0.92rem;
}

.footer-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.footer-language {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: rgba(245, 247, 250, 0.85);
}

footer .btn-play-main {
  padding: 0.65rem 1.5rem;
  font-size: 0.88rem;
}

@media (max-width: 768px) {
  .landing-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section {
    padding: 1.75rem;
  }

  .hero-slider {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .landing-main {
    padding: 1.25rem 1rem 2.5rem;
  }

  .hero-section {
    gap: 1.25rem;
  }

  .hero-slider {
    aspect-ratio: 3 / 4;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
