
    :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;
      }
    }

    

    .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.16),
          rgba(0, 0, 0, 0.8)
        ),
        url("assets/banner2.webp?auto=compress&cs=tinysrgb&w=1600")
          center/cover no-repeat;
      border-radius: var(--radius-xl);
      padding: 24px 20px 26px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
      overflow: hidden;
    }

    .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;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 0, 0, 0.65);
      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: 15px;
      max-width: 560px;
      color: var(--text-muted);
      background: rgba(0, 0, 0, 0.55);
      padding: 8px 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.55;
      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: 13px;
      margin: 12px 0 10px;
      text-decoration: none;
      color: var(--text-muted);
    }

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

    

    .grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
      gap: 20px;
      margin-top: 10px;
    }

    .card {
      background: radial-gradient(circle at top, #1b1b28 0, #101018 52%);
      border-radius: var(--radius-lg);
      padding: 18px 18px 20px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
    }

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

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

    .card-tag {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 4px 10px;
    }

    .card-body {
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-muted);
    }

    .card-body p {
      margin: 0 0 8px;
    }

    .card-body ul,
    .card-body ol {
      margin: 4px 0 8px 20px;
      padding: 0;
    }

    .card-body li {
      margin-bottom: 4px;
    }

    .note {
      margin-top: 10px;
      font-size: 13px;
      color: var(--text-muted);
      border-left: 2px solid rgba(255, 255, 255, 0.15);
      padding-left: 10px;
    }

    

    .promo-card {
      background: linear-gradient(
          135deg,
          rgba(229, 9, 20, 0.16),
          rgba(0, 0, 0, 0.95)
        ),
        var(--bg-card-soft);
      border-radius: var(--radius-lg);
      padding: 18px 18px 18px;
      border: 1px solid rgba(229, 9, 20, 0.55);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
      position: relative;
      overflow: hidden;
    }

    .promo-card::before {
      content: "";
      position: absolute;
      inset: -10%;
      background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.18) 0,
        rgba(0, 0, 0, 0.18) 1px,
        transparent 1px,
        transparent 4px
      );
      opacity: 0.4;
      pointer-events: none;
    }

    .promo-inner {
      position: relative;
      z-index: 1;
    }

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

    .promo-title {
      margin: 0;
      font-size: 16px;
    }

    .promo-meta {
      font-size: 11px;
      color: var(--text-muted);
      text-align: right;
    }

    .promo-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 3px 10px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: var(--accent-soft);
    }

    .promo-body {
      margin-top: 10px;
      font-size: 13px;
      line-height: 1.6;
    }

    .promo-body h3 {
      font-size: 14px;
      margin: 10px 0 4px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #ffe6ea;
    }

    .promo-body ul {
      margin: 4px 0 8px 18px;
      padding: 0;
    }

    .promo-body li {
      margin-bottom: 4px;
    }

    .promo-highlight {
      margin-top: 10px;
      padding: 10px 11px;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.7);
      border: 1px dashed rgba(255, 255, 255, 0.35);
      font-size: 13px;
      color: #ffe6ea;
    }

    .promo-footer {
      margin-top: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .promo-footer strong {
      color: var(--accent-soft);
    }

    

    .bottom-bar {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      position: static;
      background: transparent;
      backdrop-filter: none;
    }

    .bottom-bar-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .bottom-bar-text {
      font-size: 12px;
      color: var(--text-muted);
    }

    .bottom-bar-text span {
      color: var(--accent-soft);
      font-weight: 600;
    }

    

    .faq-extra-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: 18px 18px 20px;
    }

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

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

    .faq-list {
      margin-top: 10px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      background: radial-gradient(circle at top, #1b1b28 0, #101018 52%);
      border-radius: 14px;
      border: 1px solid var(--border-soft);
      overflow: hidden;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
      transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    }

    .faq-item.open {
      border-color: rgba(229, 9, 20, 0.7);
      box-shadow: 0 18px 40px rgba(229, 9, 20, 0.4);
      transform: translateY(-1px);
    }

    .faq-question {
      width: 100%;
      padding: 12px 14px;
      border: none;
      background: transparent;
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      cursor: pointer;
      font-size: 14px;
      text-align: left;
    }

    .faq-question-text {
      font-weight: 600;
    }

    .faq-toggle-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .faq-item.open .faq-toggle-icon {
      transform: rotate(45deg);
      background: rgba(229, 9, 20, 0.9);
      border-color: rgba(229, 9, 20, 0.9);
    }

    .faq-answer {
      padding: 0 14px 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, opacity 0.25s ease;
      opacity: 0;
    }

    .faq-item.open .faq-answer {
      opacity: 1;
      padding-bottom: 12px;
    }

    .faq-answer-inner {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
      padding-top: 4px;
    }

    .faq-answer-inner p {
      margin: 0 0 8px;
    }

    .faq-answer-inner p:last-child {
      margin-bottom: 0;
    }

    .faq-answer-inner strong {
      color: var(--text-main);
    }

    

    .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;
    }

    
    .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 26px;
      }

      .hero {
        padding: 18px 16px 20px;
      }

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

      .grid {
        grid-template-columns: 1fr;
      }

      .card,
      .promo-card {
        padding: 16px 14px 18px;
      }

      .bottom-bar {
        padding-top: 12px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }
    }

    

    @media print {
      body {
        background: #fff;
        color: #000;
      }

      .site-header,
      .bottom-bar,
      .site-footer,
      .back-to-top {
        display: none !important;
      }

      .page-wrapper,
      .content {
        padding: 0;
        max-width: 100%;
      }

      .hero {
        display: none !important;
      }

      .card,
      .promo-card,
      .faq-extra-section {
        box-shadow: none;
      }

      .promo-card {
        border-color: #000;
      }

      .btn {
        display: none !important;
      }
    }
  

