﻿:root {
  /* --bg-main: #0f1726;
  --bg-soft: #101b2d;
  --card-bg: #1b2435; */

  --border-soft: rgba(255, 255, 255, 0.06);
  --text-main: #f2f5fb;
  --text-muted: #8f9bb2;
  --brand: #35cf67;
  --brand-hover: #2fb85b;
  --font-main: 'Inter', sans-serif;
  --font-brand: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: #000;
  color: var(--text-main);
}

.site-header {
  /* background: rgba(9, 16, 29, 0.9); */
  background: black;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.navbar {
  min-height: 88px;
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
}

.site-header .brand-box {
  padding: 12px 22px;
}

.site-header .brand-line {
  font-size: 18px;
  letter-spacing: 6.2px;
}

.site-header .navbar-brand {
  padding: 0;
  margin-right: 24px;
}

.site-logo {
  display: block;
  height: auto;
  width: min(210px, 26vw);
  max-width: 100%;
}

.footer-logo {
  display: block;
  height: 58px;
  width: auto;
}

.brand-box {
  display: inline-block;
  background: rgba(31, 44, 66, 0.65);
  padding: 8px 14px;
  border-radius: 4px;
}

.brand-line {
  display: block;
  font-family: var(--font-brand);
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 5px;
  color: #f4f7ff;
  font-weight: 700;
}

.dot {
  color: var(--brand);
}

.nav-link {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #8d96ab;
  margin: 0 12px;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #d7deec;
}

.nav-link:hover::after,
.nav-link:focus::after {
  transform: scaleX(1);
}

.btn-book {
  background: var(--brand);
  color: #07111d;
  font-size: 16px;
  font-weight: 700;
  border-radius: 18px;
  padding: 12px 32px;
}

.btn-book:hover {
  background: var(--brand-hover);
  color: #07111d;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  padding-top: 88px;
  padding-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(53, 207, 103, 0.16), rgba(53, 207, 103, 0) 35%),
    radial-gradient(circle at 82% 68%, rgba(68, 142, 255, 0.18), rgba(68, 142, 255, 0) 30%),
    linear-gradient(180deg, #091221 0%, #0d1729 55%, #0f1726 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.42) 0%, rgba(7, 12, 22, 0.62) 100%);
  pointer-events: none;
}

.hero-section > .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero-shell {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(7, 14, 25, 0.72);
  box-shadow: none;
  height: calc(100vh - 88px);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(53, 207, 103, 0.48);
  background: linear-gradient(90deg, rgba(53, 207, 103, 0.12), rgba(53, 207, 103, 0.03));
  color: #57e184;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px rgba(53, 207, 103, 0.1), 0 10px 20px rgba(1, 8, 16, 0.35);
}

.hero-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(53, 207, 103, 0.85);
}

.hero-row {
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero-content-col {
  background:
    linear-gradient(100deg, rgba(4, 9, 16, 0.86) 0%, rgba(4, 9, 16, 0.72) 45%, rgba(4, 9, 16, 0.46) 100%),
    url('https://images.unsplash.com/photo-1587280501635-68a0e82cd5ff?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  position: relative;
}

.hero-copy-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 54px;
}

.hero-media-col {
  background: #0b1629;
}

.hero-title {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 22px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  max-width: 580px;
  margin: 0;
  color: #c7d2e5;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.hero-video-wrap {
  height: 100%;
  background: #091426;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.btn-hero-primary,
.btn-hero-outline {
  font-size: 16px;
  font-weight: 700;
  border-radius: 18px;
  padding: 16px 42px;
}

.btn-hero-primary {
  background: var(--brand);
  color: #081521;
}

.btn-hero-primary:hover {
  background: var(--brand-hover);
  color: #081521;
}

.btn-hero-outline {
  border: 1px solid rgba(141, 150, 171, 0.25);
  color: #f7fbff;
  background: transparent;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero-stats {
  max-width: 980px;
  margin: 96px auto 0;
}

.stat-value {
  color: var(--brand);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  color: #97a3b8;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.section-space {
  padding: 110px 0;
}

.about-section,
.services-section {
  /* background: linear-gradient(180deg, #111a2a 0%, #0f1726 100%); */
  background: black;
}

.how-play-section,
.gallery-section {
  /* background: linear-gradient(180deg, #1b2334 0%, #131c2d 100%); */
  background: black;
}

.play-step-card {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.5), rgba(17, 24, 39, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.play-step-card:hover {
  border-color: rgba(53, 207, 103, 0.65);
  transform: translateY(-4px);
}

.step-number {
  display: inline-block;
  color: #07111d;
  background: var(--brand);
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}

.play-step-card h3 {
  color: #f1f6ff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 10px;
}

.play-step-card p {
  color: #9aa7bf;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.play-note {
  border: 1px solid rgba(53, 207, 103, 0.3);
  background: rgba(53, 207, 103, 0.08);
  border-radius: 16px;
  padding: 18px 22px;
}

.play-note-title {
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
}

.play-note p {
  color: #d5deef;
  font-size: 16px;
  line-height: 1.6;
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #101726;
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.03);
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.testimonials-section,
.contact-section,
.site-footer {
  /* background: linear-gradient(180deg, #1d2536 0%, #131c2d 100%); */
  background: black;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.45), rgba(17, 24, 39, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px;
}

.testimonial-stars {
  color: var(--brand);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #d4dbe9;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-name {
  color: #f1f5ff;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-role {
  color: #8795af;
  font-size: 14px;
}

.contact-card {
  background: linear-gradient(180deg, rgba(23, 33, 51, 0.8), rgba(17, 24, 39, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 30px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 16px;
  height: 100%;
}

.contact-label {
  color: var(--brand);
  font-size: 14px;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.contact-label i {
  margin-right: 6px;
}

.contact-value {
  color: #d7deec;
  font-size: 15px;
  line-height: 1.55;
}

.contact-map-wrap {
  overflow: hidden;
}

.contact-map {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  height: 100%;
  min-height: 320px;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #eff4ff;
  font-size: 15px;
  padding: 12px 14px;
}

.contact-form .form-control::placeholder {
  color: #8a97af;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(53, 207, 103, 0.45);
  box-shadow: 0 0 0 0.15rem rgba(53, 207, 103, 0.15);
  color: #eff4ff;
}

.contact-submit {
  background: var(--brand);
  color: #07111d;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 16px;
}

.contact-submit:hover {
  background: var(--brand-hover);
  color: #07111d;
}

.site-footer {
  padding: 88px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer .footer-logo {
  margin-left: auto;
  margin-right: auto;
}

.footer-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-text {
  color: #92a0b8;
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 14px;
  max-width: 320px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #b5c0d5;
  font-size: 16px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social a {
  color: #9aa8c0;
  font-size: 28px;
  line-height: 1;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-newsletter {
  display: grid;
  gap: 10px;
}

.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #edf3ff;
  border-radius: 12px;
  font-size: 16px;
  padding: 12px 14px;
}

.footer-subscribe {
  background: #4bd17a;
  color: #07121f;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 16px;
}

.footer-subscribe:hover {
  background: #3fc46d;
  color: #07121f;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #7e8ca5;
  font-size: 16px;
}

.about-image {
  border-radius: 24px;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-row {
  --bs-gutter-x: 4rem;
}

.about-image-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 36px rgba(53, 207, 103, 0.16);
}

.about-badge {
  position: absolute;
  right: -14px;
  bottom: -14px;
  background: var(--brand);
  color: #07131f;
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  min-width: 102px;
}

.about-content {
  padding-top: 6px;
}

.about-kicker {
  color: var(--brand);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}

.about-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 24px;
}

.about-text {
  color: #8f9bb2;
  font-size: 16px;
  line-height: 1.62;
  margin-bottom: 24px;
  max-width: 700px;
}

.feature-list {
  margin-top: 22px;
}

.about-content .feature-title {
  color: #f0f4ff;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 2px;
  font-weight: 700;
}

.feature-dot {
  color: var(--brand);
  margin-right: 6px;
}

.about-feature-text {
  color: #8f9bb2;
  font-size: 16px;
  margin-bottom: 0;
  padding-left: 20px;
}

.section-kicker {
  color: var(--brand);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.section-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 980px;
}

.feature-title {
  color: #ebf1ff;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 2px;
  font-weight: 700;
}

.feature-text {
  color: #8f9bb2;
  font-size: 16px;
  margin-bottom: 0;
}

.services-head .section-title {
  margin-bottom: 18px;
}

.services-head .section-text {
  max-width: 870px;
}

.service-card {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.45), rgba(17, 24, 39, 0.68));
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 38px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: rgba(53, 207, 103, 0.75);
  box-shadow: 0 0 0 1px rgba(53, 207, 103, 0.25);
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(53, 207, 103, 0.12);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 1399.98px) {
  .nav-link,
  .btn-book { font-size: 16px; }
  .hero-title { font-size: 52px; }
  .hero-subtitle { font-size: 18px; }
  .btn-hero-primary,
  .btn-hero-outline { font-size: 16px; }
  .stat-value { font-size: 36px; }
  .stat-label { font-size: 16px; }
  .section-kicker { font-size: 18px; }
  .section-title { font-size: 40px; }
  .section-text { font-size: 16px; }
  .feature-title { font-size: 22px; }
  .feature-text { font-size: 16px; }
  .service-card h3 { font-size: 24px; }
  .service-card p { font-size: 16px; }
  .about-title { font-size: 24px; }
  .about-badge { font-size: 18px; }
  .footer-title { font-size: 24px; }
  .footer-social a { font-size: 24px; }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #121b2b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
  }

  .nav-link {
    font-size: 16px;
    margin: 2px 0;
  }

  .site-logo {
    width: min(170px, 45vw);
  }

  .contact-map {
    height: 320px;
    min-height: 320px;
  }

  .btn-book {
    font-size: 16px;
    padding: 10px 20px;
  }

  .hero-section {
    min-height: 92vh;
    padding-top: 88px;
    padding-bottom: 0;
  }

  .hero-row {
    height: 100%;
  }

  .hero-copy-panel {
    padding: 42px 26px 30px;
  }

  .hero-chip {
    margin-left: auto;
    margin-right: auto;
    font-size: 10px;
    letter-spacing: 1.6px;
    padding: 8px 14px;
  }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-subtitle { margin: 0 auto; }
  .hero-shell {
    height: calc(92vh - 88px);
  }

  .hero-video-wrap { height: 100%; }
  .hero-video { height: 100%; }
  .btn-hero-primary,
  .btn-hero-outline { font-size: 16px; }
  .stat-value { font-size: 30px; }
  .stat-label { font-size: 14px; }

  .section-space { padding: 70px 0; }
  .about-image { min-height: 300px; }
  .section-kicker { font-size: 15px; }
  .section-title { font-size: 30px; }
  .section-text { font-size: 16px; }
  .feature-title { font-size: 18px; }
  .feature-text { font-size: 14px; }
  .service-card h3 { font-size: 20px; }
  .service-card p { font-size: 16px; }
  .about-row { --bs-gutter-x: 1.5rem; }
  .about-badge {
    right: 10px;
    bottom: 10px;
    font-size: 20px;
    padding: 12px 16px;
    min-width: 78px;
    border-radius: 12px;
  }
  .about-title { font-size: 22px; }
  .about-kicker { font-size: 15px; }
  .about-text { font-size: 16px; }
  .about-feature-text { font-size: 14px; padding-left: 16px; }
  .play-step-card h3 { font-size: 20px; }
  .play-note-title { font-size: 16px; }
  .gallery-card img { height: 220px; }
  .testimonial-card,
  .contact-card { padding: 22px; }
  .footer-title { font-size: 22px; }
  .footer-main-row > div {
    align-items: center;
  }
  .footer-bottom {
    margin-top: 34px;
    text-align: center;
  }
}
