
    :root {
      --bg-main: #050608;
      --bg-card: #101018;
      --bg-card-soft: #151520;
      --accent: #e50914;
      --accent-soft: #ff4b5c;
      --text-main: #f5f5f5;
      --text-muted: #b3b3b3;
      --border-soft: rgba(255, 255, 255, 0.08);
      --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.7);
      --radius-lg: 18px;
      --radius-xl: 24px;
      --max-width: 1080px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      background-color: #050608; 
      min-height: 100%;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #191522 0, #050608 55%);
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	  text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
    }


    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: radial-gradient(circle at top, rgba(25, 21, 34, 0.96) 0, rgba(5, 6, 8, 0.98) 55%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(10px);
    }

    .nav-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      position: relative;
      flex-wrap: wrap;
    }

    .nav-logo {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-main);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      order: 1;
    }

    .nav-logo span {
      color: var(--accent-soft);
      text-shadow: 0 0 10px rgba(229, 9, 20, 0.7);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
      order: 3;
    }

    .nav-link {
      position: relative;
      padding: 7px 14px;
      border-radius: 999px;
      font-size: 13px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: var(--text-muted);
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.12);
      transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 4px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.7), transparent);
      opacity: 0;
      transition: opacity 0.15s ease;
    }

    .nav-link:hover {
      transform: translateY(-1px) scale(1.05);
      background: rgba(229, 9, 20, 0.18);
      color: var(--text-main);
      border-color: rgba(229, 9, 20, 0.7);
      box-shadow: 0 0 18px rgba(229, 9, 20, 0.55);
    }

    .nav-link:hover::after {
      opacity: 1;
    }

    .nav-link-active {
      color: #fff;
      background: linear-gradient(135deg, var(--accent), var(--accent-soft));
      border-color: rgba(229, 9, 20, 0.9);
      box-shadow: 0 0 22px rgba(229, 9, 20, 0.75);
    }

    .nav-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(0, 0, 0, 0.7);
      align-items: center;
      justify-content: center;
      gap: 4px;
      cursor: pointer;
      padding: 0;
      margin-left: auto;
      order: 2;
    }

    .nav-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #fff;
      box-shadow: 0 0 6px rgba(229, 9, 20, 0.8);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .site-header.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(4px) rotate(35deg);
    }

    .site-header.nav-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    .site-header.nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-4px) rotate(-35deg);
    }

    .nav-contacts-desktop {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 22px;
      color: var(--text-muted);
      margin-top: 2px;
      order: 4;
    }

    .nav-contacts-desktop a {
      text-decoration: none;
      color: var(--text-main);
      font-weight: 600;
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }

    .nav-contacts-desktop a:hover {
      text-decoration: underline;
    }

    .nav-contacts-mobile {
      display: none;
      font-size: 20px;
      color: var(--text-muted);
      width: 100%;
      order: 4;
    }

    .nav-contacts-mobile a {
      color: var(--text-main);
      text-decoration: none;
      font-weight: 600;
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }

    .nav-contacts-mobile a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .nav-toggle {
        display: inline-flex;
      }

      .nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        padding: 10px 16px 14px;
        background: rgba(5, 6, 8, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
        flex-direction: column;
        gap: 8px;
        display: none;
        margin-left: 0;
        order: 3;
      }

      .site-header.nav-open .nav {
        display: flex;
      }

      .nav-link {
        width: 100%;
        text-align: center;
      }

      .nav-contacts-desktop {
        display: none;
      }

      .nav-contacts-mobile {
        display: block;
      }

      .nav-container {
        gap: 11px 16px;
      }
    }

    @media (min-width: 769px) {
      .extra-info-decor {
        position: relative;
        width: 100%;
        height: 160px;
        margin-top: 30px;
        overflow: hidden;
        border-radius: 16px;
  }

.extra-info-decor img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

  
  .extra-info-decor .dust {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/bg1.webp') bottom repeat-x;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 3;
    opacity: 0.6;
    border-radius: inherit;
  }

  .extra-info-decor .plates {
    position: absolute;
    bottom: -20px;
    left: 0;
    display: flex;
    gap: 20px; 
    width: 100%;
    justify-content: space-around;
    z-index: 2;
    padding: 0;
  }

  .extra-info-decor .plates img {
    flex: 1 1 auto;
    max-width: none;
    height: 180px;
    object-fit: contain;
    display: block;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .extra-info-decor {
    display: none;
  }
}

.extra-info-decor .plates img:first-child {
  transform: rotate(3deg); 
  transform-origin: bottom left; 
}

.extra-info-decor .plates img:last-child {
  transform: rotate(-3deg); 
  transform-origin: bottom right;
}

    .cookie-banner {
      display: flex;
      opacity: 0.6;
      position: fixed;
      bottom: 80px;
      right: 20px;
      left: auto;
      width: auto;
      max-width: 350px;
	  z-index: 5;

      background: rgba(50, 50, 50, 0.95);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  
      padding: 20px;
    }

    .cookie-message {
      max-width: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cookie-message p {
      margin: 0;
      font-size: 16px;
      text-align: center;
    }

    .accept-cookie {
      background: #8b0000;
      border: none;
      padding: 8px 16px;
      cursor: pointer;
      border-radius: 4px;
      font-weight: bold;
      color: #fff;
      transition: all 0.25s ease;
    }

    .accept-cookie:hover {
      background: #a30000;
      transform: scale(1.08);
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    @media (max-width: 768px) {
      .cookie-banner {
        display: none !important;
      }
    }

    .page-wrapper {
      min-height: 100vh;
      display: flex;
      align-items: stretch;
      justify-content: center;
      padding: 24px 16px 40px;
    }

    .content {
      width: 100%;
      max-width: var(--max-width);
    }


    .hero {
      background: linear-gradient(
          135deg,
          rgba(229, 9, 20, 0.18),
          rgba(0, 0, 0, 0.85)
        ),
        url("assets/banner.webp?auto=compress&cs=tinysrgb&w=1600")
          center/cover no-repeat;
      border-radius: var(--radius-xl);
      padding: 26px 22px 28px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
      overflow: hidden;
      margin-bottom: 26px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(
        circle at top left,
        rgba(229, 9, 20, 0.3),
        transparent 55%
      );
      mix-blend-mode: screen;
      opacity: 0.85;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 18px;
      max-width: 620px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 999px;
      padding: 6px 14px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      width: fit-content;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-soft);
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-soft);
      box-shadow: 0 0 12px rgba(255, 75, 92, 0.9);
    }

    .hero-title {
      margin: 0;
      font-size: clamp(26px, 4.2vw, 36px);
      line-height: 1.2;
      color: #ffffff;
      text-shadow:
        -1.5px -1.5px 0 #000,
         1.5px -1.5px 0 #000,
        -1.5px  1.5px 0 #000,
         1.5px  1.5px 0 #000,
         0 4px 15px rgba(0, 0, 0, 0.8);
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
    }

    .hero-title span {
      color: var(--accent-soft);
    }

    .hero-subtitle {
      margin: 0;
      font-size: 14px;
      max-width: 560px;
      color: var(--text-muted);
      background: rgba(0, 0, 0, 0.65);
      padding: 10px 12px;
      border-radius: 6px;
      text-shadow:
        0 0 6px rgba(229, 9, 20, 0.25),
        0 0 12px rgba(229, 9, 20, 0.15);
      line-height: 1.6;
      backdrop-filter: blur(2px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 4px;
    }

    .btn {
      border-radius: 999px;
      border: none;
      padding: 10px 18px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
        color 0.15s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-soft));
      color: #fff;
      box-shadow: 0 12px 30px rgba(229, 9, 20, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(229, 9, 20, 0.55);
    }

    .btn-ghost {
      background: rgba(0, 0, 0, 0.65);
      color: var(--text-main);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .btn-ghost:hover {
      background: rgba(0, 0, 0, 0.85);
      border-color: rgba(255, 255, 255, 0.32);
      transform: translateY(-1px);
    }


    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      margin: 12px 0 10px;
      text-decoration: none;
      color: var(--text-muted);
    }

    .back-link:hover {
      color: var(--accent-soft);
    }


    .section-title {
      font-size: 24px;
      margin: 0 0 6px;
    }

    .section-subtitle {
      margin: 0 0 14px;
      font-size: 16px;
      color: var(--text-muted);
    }

    .quests-section {
      margin-top: 6px;
    }

    .quest-cards {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    @media (max-width: 900px) {
      .quest-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .quest-cards {
        grid-template-columns: 1fr;
      }
    }

    .quest-card {
      background: radial-gradient(circle at top, #1b1b28 0, #101018 52%);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      position: relative;
    }

    .quest-card-media {
      position: relative;
      overflow: hidden;
    }

    .quest-card-media img {
      width: 100%;
      display: block;
      object-fit: cover;
      max-height: 220px;
      filter: saturate(1.1);
      box-shadow: 0 0 25px rgba(229, 9, 20, 0.65);
    }

    .quest-card-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0,
        rgba(0, 0, 0, 0.2) 55%,
        transparent 100%
      );
      pointer-events: none;
    }

    .quest-card-badge {
      position: absolute;
      left: 10px;
      bottom: 10px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      z-index: 1;
    }

    .quest-card-body {
      padding: 14px 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    .quest-card-title {
      margin: 0;
      font-size: 18px;
    }

    .quest-card-subtag {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
    }

    .quest-card-info {
      margin-top: 4px;
      font-size: 12px;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .quest-card-line {
      display: flex;
      justify-content: space-between;
      gap: 6px;
      flex-wrap: wrap;
    }

    .quest-card-line span {
      white-space: nowrap;
    }

    .quest-card-ratings {
      margin-top: 8px;
      padding: 8px 9px;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.14);
      font-size: 11px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .quest-card-rating {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .quest-card-rating-label {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
    }

    .quest-card-rating-icons {
      font-size: 13px;
    }

    .icon-active {
      color: #ffb347;
    }

    .icon-muted {
      color: rgba(255, 255, 255, 0.25);
    }

    .icon-muted img {
	  opacity: 0.4;
	  filter: grayscale(100%);
	}

    .icon-fear-active {
      color: #ff4b5c;
    }

    .icon-star-active {
      color: #ffd86b;
    }

    .icon-img {
      width: 14px;
	  height: 16px;
	  object-fit: contain;
	  display: inline-block;
	}

    .quest-card-footer {
      margin-top: 10px;
      display: flex;
      justify-content: center;
    }

    .quest-card-btn {
      width: 100%;
      justify-content: center;
      font-size: 13px;
      padding: 10px 16px;
    }

    @media (hover: hover) and (pointer: fine) {
      .quest-card {
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
      }

      .quest-card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 24px 55px rgba(229, 9, 20, 0.4);
        border-color: rgba(229, 9, 20, 0.7);
      }
    }


    .how-section {
      margin-top: 32px;
      background: radial-gradient(circle at top, #181824 0, #0b0b12 60%);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      padding: 18px 18px 20px;
    }

    .how-grid {
      margin-top: 10px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 18px;
    }

    .how-main p {
      margin: 0 0 10px;
    }

    .how-main p:last-child {
      margin-bottom: 0;
    }

    .how-note {
      background: rgba(0, 0, 0, 0.7);
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      padding: 12px 12px 13px;
      font-size: 13px;
	  align-self: center;
    }

    .how-note-title {
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    @media (max-width: 768px) {
      .how-grid {
        grid-template-columns: 1fr;
      }
    }


    .why-section {
      margin-top: 26px;
      background: radial-gradient(circle at top, #191824 0, #06060c 65%);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      padding: 18px 18px 20px;
    }

    .why-subtitle {
      margin: 2px 0 14px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 6px;
    }

    @media (max-width: 900px) {
      .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    .why-card {
      background: rgba(0, 0, 0, 0.8);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      padding: 12px 12px 13px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: "";
      position: absolute;
      inset: -20%;
      background: radial-gradient(circle at top, rgba(229, 9, 20, 0.18), transparent 60%);
      opacity: 0.7;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .why-card-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .why-icon {
      font-size: 20px;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 0 12px rgba(229, 9, 20, 0.6);
      margin-bottom: 2px;
    }

    .why-card-title {
      margin: 0;
      font-size: 15px;
    }

    .why-card-text {
      margin: 0;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }


    .reviews-section {
      margin-top: 28px;
      background: radial-gradient(circle at top, #151520 0, #090910 60%);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      padding: 18px 18px 20px;
    }

    .reviews-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    @media (max-width: 768px) {
      .reviews-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
    
      .reviews-header > div {
        text-align: center;
      }
    
      .reviews-link {
        align-self: center;
        margin-top: 6px;
      }
    }

    .reviews-subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0;
    }

    .reviews-link {
      font-size: 12px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(0, 0, 0, 0.7);
      color: #ffd86b;
      white-space: nowrap;
    }

    .reviews-link:hover {
      background: rgba(229, 9, 20, 0.2);
      border-color: rgba(229, 9, 20, 0.7);
    }


    .reviews-metrics {
      margin-top: 6px;
      padding: 10px 10px 8px;
      border-radius: 14px;
      background: radial-gradient(circle at top, rgba(229, 9, 20, 0.12), rgba(0, 0, 0, 0.9));
      border: 1px solid rgba(255, 255, 255, 0.18);
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .reviews-metric {
      position: relative;
      padding: 8px 10px 9px 14px;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.85);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.75);
      overflow: hidden;
    }

    .reviews-metric::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--accent-soft), transparent);
      box-shadow: 0 0 16px rgba(229, 9, 20, 0.8);
      opacity: 0.9;
    }

    .reviews-metric-number {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #ffffff;
    }

    .reviews-metric-number span {
      color: var(--accent-soft);
    }

    .reviews-metric-label {
      margin-top: 3px;
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.4;
    }

    @media (hover: hover) and (pointer: fine) {
      .reviews-metric {
        transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      }

      .reviews-metric:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(229, 9, 20, 0.45);
        background: rgba(5, 5, 8, 0.95);
      }
    }

    @media (max-width: 900px) {
      .reviews-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 540px) {
      .reviews-metrics {
        grid-template-columns: 1fr;
      }
    }

    .reviews-carousel {
      position: relative;
      margin-top: 10px;
      overflow: hidden;
    }

    .review-track {
      display: flex;
      transition: transform 0.4s ease;
    }

    .review-card {
      min-width: 100%;
      padding: 10px 4px 2px;
      box-sizing: border-box;
    }

    .review-inner {
      background: rgba(0, 0, 0, 0.75);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 12px 14px 14px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .review-top {
      display: flex;
      justify-content: space-between;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
    }

    .review-author {
      font-weight: 600;
      font-size: 14px;
    }

    .review-rating {
      font-size: 14px;
      color: #ffd86b;
    }

    .review-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .review-date {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .reviews-controls {
      margin-top: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }

    .reviews-dots {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .reviews-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.25);
      border: none;
      padding: 0;
      cursor: pointer;
    }

    .reviews-dot.active {
      background: #ff4b5c;
      box-shadow: 0 0 10px rgba(255, 75, 92, 0.9);
    }

    .reviews-arrows {
      display: flex;
      gap: 6px;
    }

    .reviews-arrow-btn {
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(0, 0, 0, 0.8);
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      color: #fff;
    }

    .reviews-arrow-btn:hover {
      background: rgba(229, 9, 20, 0.9);
    }


.reviews-photos {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
}

.reviews-photos-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s ease;
}

.reviews-photo {
  min-width: calc(33.333% - 8px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  background: #000;
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.reviews-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.95);
  transition: transform 0.3s ease;
}

.reviews-photo:hover img {
  transform: scale(1.05);
}

.reviews-photos img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.reviews-photo-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.8);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.reviews-photo-btn:hover {
  background: rgba(229,9,20,0.9);
}

.reviews-photo-btn.prev {
  left: 6px;
}

.reviews-photo-btn.next {
  right: 6px;
}

@media (max-width: 900px) {
  .reviews-photo {
    min-width: calc(50% - 6px);
  }
}

@media (max-width: 600px) {
  .reviews-photo {
    min-width: 100%;
  }
}


    .extra-info-section {
      margin-top: 26px;
      background: radial-gradient(circle at top, #181824 0, #050608 60%);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      padding: 16px 16px 18px;
    }

    .extra-list {
      display: grid;
	  grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-top: 10px;
      font-size: 14px;
    }

    .extra-item {
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: flex-start;
	  text-align: left;
	  height: 44px;
	  min-height: 42px;
    }

.extra-item span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .extra-list {
    grid-template-columns: 1fr;
  }
}

    @media (max-width: 768px) {
      .extra-item {
        flex: 1 1 100%;
      }
    }


    .site-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      background: radial-gradient(circle at top, #151520 0, #050608 55%);
      padding: 22px 16px 18px;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.1fr);
      gap: 18px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-title {
      font-size: 14px;
      margin: 0 0 6px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-main);
    }

    .footer-brand {
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .footer-brand span {
      color: var(--accent-soft);
    }

    .footer-bottom {
      max-width: var(--max-width);
      margin: 14px auto 0;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 11px;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }


.gear {
  position: fixed;
  z-index: 1;
  pointer-events: none !important;
  user-select: none;
}

.gear img {
  width: 100%;
  opacity: 0.4;
  height: auto;
  display: block;

  animation: gearRotate 25s linear infinite;

  filter: brightness(1.8) contrast(1.1)
    drop-shadow(0 0 10px rgba(255, 60, 60, 0.3));
}

.gear-top-right {
  top: 20%;
  right: -250px;
  width: 440px;

  clip-path: inset(0 50% 0 0);
}

.gear-bottom-left {
  bottom: -250px;
  left: -250px;
  width: 440px;

  clip-path: inset(0 0 0 50%);
}

@keyframes gearRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .gear {
    display: none !important;
  }
}

.contacts-section {
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #b6b6b6;
}

.slanted {
  display: block;
  width: 40%;
  padding: 15px 15;
  font-size: 40px;
  text-transform: uppercase;
  transform: rotate(-5deg) skew(-7deg);
  background-color: #300009;
}

@media (max-width: 768px) {
  .contacts-section {
    display: none;
  }
}

    
    .footer-map {
      margin-top: 8px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-map iframe {
      width: 100%;
      height: 230px;
      border: 0;
      display: block;
    }

    .footer-messengers {
      margin-top: 10px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn-messenger {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      color: #fff;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
      transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    }

    .btn-messenger:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7);
      opacity: 0.95;
    }

    .btn-telegram {
      background: #0088cc;
    }

    .btn-viber {
      background: #ff4b9a;
    }


    .back-to-top {
      position: fixed;
      right: 16px;
      bottom: 18px;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
      z-index: 60;
    }

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

    .back-to-top:hover {
      background: rgba(229, 9, 20, 0.9);
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .page-wrapper {
        padding: 20px 12px 32px;
      }

      .hero {
        padding: 20px 16px 22px;
        margin-bottom: 20px;
      }

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

      .footer-inner {
        grid-template-columns: 1fr;
      }
    }
	
.hero-badge-bottom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  
  font-size: 12px;
  
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.16);
  
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.4);
}

.hero-inner {
  position: relative;
}

@media (max-width: 768px) {
  .hero-badge-bottom {
    position: static;
    margin-top: 10px;
    align-self: flex-end;
  }
}
  

