:root {
      --bg: #07111f;
      --bg-soft: rgba(10, 20, 36, 0.82);
      --card: rgba(15, 31, 54, 0.82);
      --line: rgba(255,255,255,0.12);
      --text: #eef6ff;
      --muted: #b7c7de;
      --accent: #4bb7ff;
      --accent-2: #89f0ff;
      --danger: #ff6b6b;
      --gold: #ffd166;
      --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      min-height: 100%;
      font-family: "Segoe UI", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top, rgba(61, 112, 174, 0.28), transparent 30%),
        linear-gradient(180deg, #020814 0%, #06101e 55%, #071420 100%);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }



    .visually-hidden {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0 0 0 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--accent-2);
      outline-offset: 4px;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
    }

    body::before {
      background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,.9), transparent),
        radial-gradient(2px 2px at 30% 80%, rgba(255,255,255,.65), transparent),
        radial-gradient(1.5px 1.5px at 55% 35%, rgba(255,255,255,.8), transparent),
        radial-gradient(2px 2px at 80% 25%, rgba(255,255,255,.75), transparent),
        radial-gradient(1.5px 1.5px at 75% 70%, rgba(255,255,255,.8), transparent),
        radial-gradient(2px 2px at 90% 82%, rgba(255,255,255,.7), transparent),
        radial-gradient(1.5px 1.5px at 14% 64%, rgba(255,255,255,.8), transparent),
        radial-gradient(2px 2px at 45% 14%, rgba(255,255,255,.75), transparent);
      animation: twinkle 8s linear infinite alternate;
      opacity: 0.95;
    }

    body::after {
      background:
        radial-gradient(circle at 50% 50%, rgba(70, 185, 255, 0.10), transparent 18%),
        radial-gradient(circle at 20% 20%, rgba(155, 100, 255, 0.08), transparent 22%),
        radial-gradient(circle at 80% 80%, rgba(255, 120, 120, 0.06), transparent 20%);
      animation: nebulaMove 18s ease-in-out infinite alternate;
    }

    @keyframes twinkle {
      0% { transform: translateY(0) scale(1); opacity: .85; }
      100% { transform: translateY(-12px) scale(1.04); opacity: 1; }
    }

    @keyframes nebulaMove {
      0% { transform: translate3d(0, 0, 0) scale(1); }
      100% { transform: translate3d(0, -20px, 0) scale(1.06); }
    }

    .container {
      width: min(1280px, calc(100% - 32px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(12px);
      background: rgba(4, 11, 22, 0.84);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 0;
      flex-wrap: nowrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      flex: 1 1 auto;
      max-width: 420px;
    }

    .logo-slot {
      width: 72px;
      height: 72px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: transparent;
      flex-shrink: 0;
    }

    .logo-slot img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .brand-text .brand-title {
      font-size: clamp(16px, 1.65vw, 24px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: 0.01em;
    }

    .brand-text p {
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
    }

    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(255,255,255,0.04);
      color: var(--text);
      cursor: pointer;
      flex-shrink: 0;
    }

    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      background: white;
      border-radius: 999px;
      position: relative;
      transition: .25s ease;
    }

    .nav-toggle span::before { position: absolute; top: -6px; }
    .nav-toggle span::after { position: absolute; top: 6px; }

    .main-nav {
      flex: 0 1 auto;
      min-width: 0;
    }

    .menu {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: nowrap;
      justify-content: flex-end;
      white-space: nowrap;
    }

    .menu > li {
      position: relative;
    }

    .menu > li > a,
    .menu > li > button {
      color: var(--text);
      background: transparent;
      border: 0;
      cursor: pointer;
      font: inherit;
      font-size: 14px;
      padding: 10px 10px;
      border-radius: 12px;
      transition: 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .menu > li > a:hover,
    .menu > li > button:hover,
    .menu > li:hover > a,
    .menu > li:hover > button {
      background: rgba(255,255,255,0.08);
      color: var(--accent-2);
    }

    .dropdown-arrow {
      width: 8px;
      height: 8px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-1px);
      transition: transform .2s ease;
    }

    .has-submenu:hover .dropdown-arrow,
    .has-submenu.open .dropdown-arrow {
      transform: rotate(225deg) translateY(-1px);
    }

    .submenu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 200px;
      list-style: none;
      padding: 10px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px;
      background: rgba(7, 16, 31, 0.95);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: .25s ease;
    }

    .submenu li a {
      display: block;
      padding: 12px 14px;
      border-radius: 12px;
      color: var(--muted);
      transition: .2s ease;
    }

    .submenu li a:hover {
      background: rgba(255,255,255,0.08);
      color: var(--text);
    }

    .has-submenu:hover .submenu,
    .has-submenu.open .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    main {
      position: relative;
      padding: 42px 0 60px;
    }

    .hero {
      position: relative;
      margin-top: 38px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(14, 34, 62, 0.9), rgba(8, 17, 34, 0.95)),
        rgba(255,255,255,0.03);
      box-shadow: var(--shadow);
      min-height: 380px;
      padding: 42px clamp(22px, 4vw, 44px);
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
      align-items: center;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 38%;
      background: linear-gradient(180deg, transparent, rgba(115, 183, 255, 0.08));
      pointer-events: none;
      z-index: -1;
    }

    .hero-copy h2 {
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1;
      margin-bottom: 18px;
      font-weight: 900;
      max-width: 12ch;
    }

    .hero-copy p {
      color: var(--muted);
      font-size: 18px;
      max-width: 58ch;
      line-height: 1.65;
      margin-bottom: 24px;
    }

    .construction-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--accent-2);
      font-weight: 800;
      letter-spacing: 0.02em;
      margin-bottom: 18px;
    }

    .construction-badge::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 16px rgba(255, 209, 102, 0.7);
    }

    .hero-note {
      max-width: 58ch;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      color: #d7ebff;
      line-height: 1.7;
    }

    .status-points {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .status-points li {
      position: relative;
      padding-left: 22px;
      color: var(--muted);
      line-height: 1.6;
    }

    .status-points li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #ff9352);
      box-shadow: 0 0 12px rgba(255, 209, 102, 0.45);
    }

    .clubs-panel {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      width: 100%;
      max-width: 620px;
    }

    .club-card {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 22px;
      align-items: center;
      min-height: 178px;
      padding: 20px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 22px;
      background: rgba(255,255,255,0.055);
      box-shadow: 0 14px 34px rgba(0,0,0,0.18);
      transition: transform .22s ease, background .22s ease, border-color .22s ease;
      min-width: 0;
    }

    .club-card:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.085);
      border-color: rgba(137,240,255,.34);
    }

    .club-logo-placeholder {
      width: 150px;
      height: 150px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 0;
      border: 0;
      background: transparent;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
      overflow: hidden;
    }

    .club-logo-placeholder img {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      object-position: center center;
      display: block;
    }

    .club-info {
      min-width: 0;
    }

    .club-info h2 {
      font-size: clamp(20px, 2.4vw, 28px);
      line-height: 1.15;
      margin-bottom: 10px;
      font-weight: 900;
      overflow-wrap: anywhere;
    }

    .club-league {
      margin: 0 0 8px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 750;
      line-height: 1.3;
    }

    .club-league span {
      color: var(--gold);
      font-weight: 950;
    }

    .club-contacts {
      display: grid;
      gap: 7px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.45;
      min-width: 0;
    }

    .club-contacts a,
    .club-contacts span {
      display: inline-flex;
      width: fit-content;
    }

    .club-contacts a:hover {
      color: var(--accent-2);
    }

    .club-contacts a,
    .club-contacts span {
      max-width: 100%;
      overflow-wrap: anywhere;
    }

    .hero-visual {
      position: relative;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 20px;
      border-radius: 32px;
      background: radial-gradient(circle at center, rgba(100, 205, 255, 0.12), transparent 60%);
      filter: blur(2px);
    }

    .star-orbit {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .star-orbit span {
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255,255,255,0.95);
      box-shadow: 0 0 12px rgba(255,255,255,0.65);
      animation: starPulse 2.8s ease-in-out infinite;
    }

    .star-orbit span:nth-child(1) { top: 16%; left: 18%; animation-delay: .2s; }
    .star-orbit span:nth-child(2) { top: 28%; right: 14%; animation-delay: .9s; }
    .star-orbit span:nth-child(3) { top: 62%; left: 24%; animation-delay: .4s; }
    .star-orbit span:nth-child(4) { bottom: 18%; right: 20%; animation-delay: 1.2s; }
    .star-orbit span:nth-child(5) { top: 46%; right: 38%; animation-delay: .7s; }

    .planet {
      position: absolute;
      left: 18px;
      top: -6px;
      width: 250px;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: floatPlanet 8s ease-in-out infinite;
      z-index: 1;
    }

    .planet::after {
      content: none;
      display: none;
    }

    .planet-image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 14px 30px rgba(0,0,0,.22));
    }

    .rocket {
      --rocket-scale: 1;
      position: absolute;
      left: 136px;
      top: 92px;
      width: 184px;
      height: auto;
      animation: rocketFly 9s ease-in-out infinite;
      transform-origin: 26% 58%;
      z-index: 3;
    }

    .rocket-image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
    }

    .rocket-body,
    .fin-top,
    .fin-bottom,
    .flame {
      display: none;
    }

    .launch-trail {
      position: absolute;
      left: 92px;
      top: 154px;
      width: 136px;
      height: 24px;
      background: linear-gradient(90deg, rgba(255,255,255,0), rgba(115, 219, 255, 0.22), rgba(255, 196, 83, 0.82), rgba(255,255,255,0));
      filter: blur(5px);
      transform: rotate(-12deg);
      transform-origin: left center;
      animation: trailMove 9s ease-in-out infinite;
      z-index: 0;
    }

    .ice-line {
      position: absolute;
      left: -5%;
      right: -5%;
      bottom: 24px;
      height: 3px;
      background: linear-gradient(90deg, transparent, rgba(150,220,255,.6), transparent);
      opacity: .9;
    }

    .site-footer {
      padding: 44px 0 40px;
    }

    .footer-inner {
      background: rgba(4,11,22,.82);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 24px;
      padding: 24px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: 1fr;
      gap: 20px;
      align-items: stretch;
    }

    .footer-block {
      min-width: 0;
      min-height: 260px;
      height: 100%;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px;
      background: rgba(255,255,255,.04);
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 18px;
    }

    .footer-title h3 {
      font-size: 20px;
      margin-bottom: 6px;
    }

    .socials {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .social-link {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 64px;
      padding: 12px 14px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(255,255,255,.05);
      transition: .22s ease;
      font-weight: 700;
    }

    .social-link:hover {
      background: rgba(255,255,255,.1);
      color: var(--accent-2);
      transform: translateY(-2px);
    }

    .social-icon-slot {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.1);
      display: grid;
      place-items: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .social-icon-slot img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .social-link span {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .support-card {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .support-brand {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 24px;
      min-width: 0;
      height: 100%;
      text-align: center;
    }

    .support-logo-slot {
      width: 160px;
      height: 160px;
      border-radius: 28px;
      background: rgba(255,255,255,.06);
      border: 1px dashed rgba(255,255,255,.18);
      display: grid;
      place-items: center;
      overflow: hidden;
      flex-shrink: 0;
      color: var(--muted);
      font-size: 12px;
      text-align: center;
      padding: 12px;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    }

    .support-logo-slot:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(137,240,255,.42);
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 10px 24px rgba(0,0,0,.22);
    }

    .support-logo-slot img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .support-copy {
      text-align: center;
    }

    .support-copy a {
      color: var(--text);
      transition: color .22s ease;
    }

    .support-copy a:hover {
      color: var(--accent-2);
    }

    .support-copy strong {
      display: block;
      font-size: 1.5rem;
      line-height: 1.3;
      margin-bottom: 0;
      color: inherit;
      text-align: center;
      transition: color .22s ease;
    }

    .file-lightbox {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(4, 17, 46, 0.82);
      backdrop-filter: blur(8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .25s ease, visibility .25s ease;
      z-index: 200;
    }

    .file-lightbox.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .file-lightbox-dialog {
      position: relative;
      width: min(1100px, 100%);
      max-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .file-lightbox-image {
      width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 24px;
      box-shadow: 0 24px 50px rgba(0,0,0,0.28);
      background: #fff;
    }

    .file-lightbox-close {
      position: absolute;
      top: -14px;
      right: -14px;
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 50%;
      background: white;
      color: #0c2d75;
      font-size: 1.8rem;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 12px 26px rgba(0,0,0,0.22);
    }

    .file-lightbox-close:hover {
      transform: scale(1.05);
    }

    @keyframes rocketFly {
      0%   { transform: translate(0, 0) rotate(-11deg) scale(var(--rocket-scale)); }
      25%  { transform: translate(24px, -16px) rotate(-8deg) scale(var(--rocket-scale)); }
      50%  { transform: translate(50px, -3px) rotate(-4deg) scale(var(--rocket-scale)); }
      75%  { transform: translate(28px, 12px) rotate(-7deg) scale(var(--rocket-scale)); }
      100% { transform: translate(0, 0) rotate(-11deg) scale(var(--rocket-scale)); }
    }

    @keyframes flamePulse {
      from { transform: scaleX(0.88) scaleY(0.95); opacity: .86; }
      to   { transform: scaleX(1.08) scaleY(1.16); opacity: 1; }
    }

    @keyframes floatPlanet {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes starPulse {
      0%, 100% { transform: scale(1); opacity: .6; }
      50% { transform: scale(1.8); opacity: 1; }
    }

    @keyframes trailMove {
      0% { transform: translate(0, 0) rotate(-12deg) scaleX(.62); opacity: .22; }
      25% { transform: translate(20px, -13px) rotate(-12deg) scaleX(.92); opacity: .9; }
      50% { transform: translate(46px, -2px) rotate(-12deg) scaleX(1.04); opacity: .78; }
      75% { transform: translate(26px, 10px) rotate(-12deg) scaleX(.84); opacity: .56; }
      100% { transform: translate(0, 0) rotate(-12deg) scaleX(.62); opacity: .22; }
    }

    .nav-toggle.active span {
      background: transparent;
    }

    .nav-toggle.active span::before {
      top: 0;
      transform: rotate(45deg);
    }

    .nav-toggle.active span::after {
      top: 0;
      transform: rotate(-45deg);
    }

    @media (max-width: 1180px) {
      .brand {
        max-width: 360px;
      }

      .menu > li > a,
      .menu > li > button {
        font-size: 13px;
        padding: 10px 8px;
      }
    }

    @media (max-width: 1080px) {
      main {
        padding: 30px 0 46px;
      }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-copy h2 {
        max-width: 100%;
      }

      .hero-visual {
        min-height: 300px;
        order: -1;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 900px) {
      .site-header {
        position: sticky;
      }

      .header-inner {
        align-items: center;
        flex-wrap: wrap;
        padding: 10px 0;
      }

      .brand {
        max-width: calc(100% - 58px);
      }

      .logo-slot {
        width: 58px;
        height: 58px;
        border-radius: 14px;
      }

      .brand-text .brand-title {
        font-size: clamp(15px, 4vw, 20px);
      }

      .brand-text p {
        font-size: 11px;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .main-nav {
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height .28s ease, opacity .22s ease;
      }

      .main-nav.active {
        max-height: min(80vh, 680px);
        opacity: 1;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-bottom: 4px;
      }

      .menu {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        gap: 8px;
        padding: 10px 0 4px;
        white-space: normal;
      }

      .menu > li > a,
      .menu > li > button {
        width: 100%;
        min-height: 46px;
        justify-content: space-between;
        background: rgba(255,255,255,.045);
        border: 1px solid rgba(255,255,255,.08);
        font-size: 15px;
        padding: 12px 14px;
      }

      .submenu {
        position: static;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 8px;
        padding: 8px;
        border-radius: 14px;
        background: rgba(255,255,255,0.045);
      }

      .has-submenu.open .submenu {
        display: block;
      }

      .submenu li a {
        padding: 12px 14px;
      }

      .hero {
        margin-top: 28px;
        padding: 30px 22px;
        border-radius: 24px;
        gap: 18px;
      }

      .hero-visual {
        min-height: 260px;
      }

      .planet {
        width: 208px;
        left: 12px;
        top: 4px;
      }

      .planet::after {
        content: none;
      }

      .rocket {
        --rocket-scale: .9;
        width: 168px;
        left: 116px;
        top: 94px;
      }

      .launch-trail {
        left: 78px;
        top: 148px;
        width: 114px;
      }

      .footer-block {
        min-height: auto;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 20px, 1280px);
      }

      main {
        padding: 20px 0 34px;
      }

      .header-inner {
        gap: 10px;
      }

      .logo-slot {
        width: 52px;
        height: 52px;
        border-radius: 12px;
      }

      .brand {
        gap: 10px;
      }

      .brand-text .brand-title {
        line-height: 1.15;
      }

      .brand-text p {
        display: block;
        margin-top: 3px;
        font-size: 10px;
        line-height: 1.25;
      }

      .nav-toggle {
        width: 42px;
        height: 42px;
      }

      .hero {
        margin-top: 22px;
        padding: 20px 14px;
        border-radius: 20px;
        gap: 14px;
      }

      .hero-visual {
        display: flex;
        min-height: 220px;
        width: 100%;
        overflow: visible;
      }

      .hero-copy h2 {
        font-size: clamp(28px, 9vw, 38px);
        margin-bottom: 14px;
      }

      .hero-copy p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 16px;
      }

      .construction-badge {
        font-size: 13px;
        padding: 8px 12px;
        margin-bottom: 14px;
      }

      .hero-note {
        padding: 14px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 1.6;
      }

      .clubs-panel {
        max-width: 100%;
      }

      .club-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 12px;
        padding: 16px 14px;
        border-radius: 18px;
      }

      .club-logo-placeholder {
        width: 86px;
        height: 86px;
        border-radius: 18px;
        padding: 8px;
      }

      .club-info {
        width: 100%;
      }

      .club-info h2 {
        font-size: 19px;
        margin-bottom: 9px;
      }

      .club-contacts {
        width: 100%;
        justify-items: center;
        font-size: 14px;
        gap: 8px;
      }

      .club-contacts a {
        width: fit-content;
        min-height: 0;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
      }

      .club-contacts span {
        justify-content: center;
        text-align: center;
      }

      .status-points {
        gap: 10px;
        margin-top: 14px;
      }

      .status-points li {
        font-size: 14px;
        line-height: 1.55;
      }

      .hero-visual {
        min-height: 200px;
      }

      .planet {
        width: 170px;
        left: 4px;
        top: 10px;
      }

      .planet::after {
        content: none;
      }

      .rocket {
        --rocket-scale: .84;
        width: 142px;
        left: 94px;
        top: 90px;
        animation-duration: 10s;
      }

      .launch-trail {
        left: 58px;
        width: 94px;
        top: 136px;
      }

      .ice-line {
        bottom: 18px;
      }

      .footer-inner {
        border-radius: 20px;
        padding: 16px;
        gap: 16px;
      }

      .footer-block {
        border-radius: 18px;
        padding: 18px;
        gap: 16px;
        text-align: center;
      }

      .footer-title h3 {
        text-align: center;
      }

      .support-brand {
        flex-direction: column;
        gap: 14px;
        text-align: center;
      }

      .support-logo-slot {
        width: 120px;
        height: 120px;
        border-radius: 22px;
      }

      .support-copy strong {
        font-size: 1.1rem;
        text-align: center;
      }

      .socials {
        grid-template-columns: 1fr;
      }

      .social-link {
        min-height: 58px;
        padding: 10px 12px;
        justify-content: center;
      }
    }

    @media (max-width: 420px) {
      .container {
        width: min(100% - 16px, 1280px);
      }

      .brand-text .brand-title {
        font-size: 14px;
      }

      .logo-slot {
        width: 46px;
        height: 46px;
      }

      .hero {
        padding: 20px 14px;
      }

      .hero-copy h2 {
        font-size: 27px;
      }

      .club-card {
        padding: 14px 12px;
      }

      .club-logo-placeholder {
        width: 78px;
        height: 78px;
      }

      .club-contacts {
        justify-items: center;
        font-size: 13px;
      }

      .club-contacts a {
        width: fit-content;
      }

      .hero-visual {
        min-height: 170px;
      }

      .planet {
        width: 138px;
        left: 0;
        top: 12px;
      }

      .planet::after {
        content: none;
      }

      .rocket {
        --rocket-scale: .78;
        width: 122px;
        left: 74px;
        top: 80px;
      }

      .launch-trail {
        left: 46px;
        width: 78px;
        top: 116px;
      }

      .footer-title h3 {
        font-size: 18px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
    }

    /* Блок ближайших игр */
    .games-section {
      margin-top: 0;
      margin-bottom: 38px;
      scroll-margin-top: 104px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(14, 34, 62, 0.82), rgba(8, 17, 34, 0.94)),
        rgba(255,255,255,0.03);
      box-shadow: var(--shadow);
      padding: 30px clamp(18px, 3vw, 34px);
      overflow: hidden;
    }

    .games-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 20px;
    }

    .games-title h2 {
      margin: 0;
      font-size: clamp(26px, 3.5vw, 42px);
      line-height: 1.1;
      font-weight: 900;
    }

    .games-title p {
      margin-top: 8px;
      color: var(--muted);
      line-height: 1.55;
      font-size: 15px;
    }

    .games-panel {
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 22px;
      background: rgba(255,255,255,0.045);
      padding: 18px;
      backdrop-filter: blur(12px);
    }

    .games-controls {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-bottom: 16px;
    }

    .games-controls button,
    .games-controls select {
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      background: rgba(255,255,255,0.07);
      color: var(--text);
      padding: 10px 14px;
      font: inherit;
    }

    .games-controls button {
      cursor: pointer;
      font-weight: 800;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }

    .games-controls button:hover {
      transform: translateY(-1px);
      border-color: rgba(137,240,255,.42);
      background: rgba(255,255,255,0.1);
    }

    .games-controls button:disabled {
      opacity: .6;
      cursor: wait;
      transform: none;
    }

    .games-controls label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      line-height: 1.3;
    }

    .games-controls select option {
      color: #07111f;
      background: #eef6ff;
    }

    .games-meta {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 10px;
      margin-bottom: 18px;
    }

    .games-meta-card {
      background: rgba(15, 31, 54, 0.62);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 12px;
      color: var(--text);
    }

    .games-meta-card span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 4px;
    }

    .games-status {
      margin: 12px 0;
      color: var(--muted);
      line-height: 1.5;
    }

    .games-list {
      display: block;
    }

    .games-history-table-wrap {
      overflow-x: auto;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(7, 17, 31, 0.58);
    }

    .games-history-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 650px;
    }

    .games-history-table th,
    .games-history-table td {
      padding: 13px 14px;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      vertical-align: middle;
    }

    .games-history-table th {
      color: var(--accent-2);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .04em;
      background: rgba(255,255,255,0.05);
      white-space: nowrap;
    }

    .games-history-table tr:last-child td {
      border-bottom: none;
    }

    .games-history-table tbody tr:hover {
      background: rgba(255,255,255,0.055);
    }

    .games-no-upcoming-row td {
      color: var(--accent-2);
      font-weight: 900;
      line-height: 1.45;
      text-align: center;
      background: rgba(137,240,255,0.06);
    }

    .games-history-date {
      color: var(--accent-2);
      font-weight: 900;
      white-space: nowrap;
    }

    .games-history-league {
      width: 72px;
      text-align: center;
      white-space: nowrap;
    }

    .games-history-league-logo {
      width: 48px;
      height: 48px;
      object-fit: contain;
      display: inline-block;
      vertical-align: middle;
    }

    .games-history-date-value {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .games-history-mobile-league-logo {
      display: none;
      width: 36px;
      height: 36px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .games-history-league-badge,
    .games-history-mobile-league-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 48px;
      min-height: 32px;
      padding: 6px 9px;
      border-radius: 12px;
      border: 1px solid rgba(137,240,255,.32);
      background: rgba(137,240,255,.1);
      color: var(--accent-2);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .04em;
      line-height: 1;
    }

    .games-history-mobile-league-badge {
      display: none;
      min-width: 38px;
      min-height: 28px;
      padding: 5px 8px;
      font-size: 12px;
      flex-shrink: 0;
    }

    .games-history-teams {
      font-weight: 800;
      line-height: 1.35;
    }

    .games-history-score {
      font-size: 18px;
      font-weight: 900;
      white-space: nowrap;
    }

    .games-error {
      color: var(--danger);
      white-space: pre-wrap;
      margin-top: 10px;
    }

    .games-cards-notice {
      margin-bottom: 14px;
      padding: 12px 14px;
      border: 1px solid rgba(99, 216, 255, 0.22);
      border-radius: 16px;
      background: rgba(99, 216, 255, 0.08);
      color: var(--accent-2);
      font-weight: 900;
      line-height: 1.45;
      text-align: center;
    }

    .games-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 10px;
    }

    .games-card,
    .games-cards-empty {
      min-width: 0;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 8px;
      background:
        linear-gradient(145deg, rgba(16, 38, 68, 0.78), rgba(7, 17, 31, 0.9)),
        rgba(255, 255, 255, 0.03);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }

    .games-card {
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 10px;
      padding: 12px;
      min-height: 154px;
    }

    .games-card-top,
    .games-card-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-width: 0;
    }

    .games-card-league-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 24px;
      padding: 5px 9px;
      border-radius: 999px;
      border: 1px solid rgba(200, 162, 74, 0.38);
      background: rgba(200, 162, 74, 0.12);
      color: var(--gold);
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .games-card-league-logo {
      width: 28px;
      height: 18px;
      object-fit: contain;
      display: block;
      flex: 0 0 auto;
      filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.24));
    }

    .games-card-date {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .games-card-matchup {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items: center;
      gap: 8px;
      min-width: 0;
    }

    .games-card-team {
      min-width: 0;
      display: grid;
      justify-items: center;
      gap: 6px;
      text-align: center;
    }

    .games-card-team-logo {
      width: 58px;
      height: 58px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.28));
    }

    .games-card-team-logo--empty {
      border: 1px dashed rgba(99, 216, 255, 0.26);
      border-radius: 12px;
      background: rgba(99, 216, 255, 0.08);
    }

    .games-card-team-name {
      width: 100%;
      color: var(--text);
      font-size: 12px;
      font-weight: 850;
      line-height: 1.18;
      overflow-wrap: anywhere;
    }

    .games-card-score {
      align-self: center;
      min-width: 56px;
      padding: 5px 8px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.09);
      color: var(--text);
      font-size: 24px;
      font-weight: 950;
      line-height: 1;
      text-align: center;
      white-space: nowrap;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .games-card-result {
      margin-left: auto;
      padding: 5px 9px;
      border-radius: 8px;
      color: var(--text);
      font-size: 12px;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
    }

    .games-card-result--win {
      background: rgba(35, 142, 75, 0.9);
    }

    .games-card-result--loss {
      background: rgba(159, 51, 55, 0.9);
    }

    .games-card-result--future {
      background: rgba(0, 91, 190, 0.7);
    }

    .games-card-result--finished {
      background: rgba(215, 222, 232, 0.14);
      color: var(--metal);
    }

    .games-cards-empty {
      grid-column: 1 / -1;
      padding: 18px;
      color: var(--muted);
      text-align: center;
      font-weight: 800;
    }

    @media (max-width: 720px) {
      .games-section {
        padding: 20px 14px;
        border-radius: 22px;
      }

      .games-header {
        display: block;
        margin-bottom: 14px;
      }

      .games-title h2 {
        font-size: clamp(24px, 8vw, 32px);
        line-height: 1.05;
      }

      .games-panel {
        padding: 14px;
        border-radius: 18px;
      }

      .games-controls {
        align-items: stretch;
        gap: 8px;
        margin-bottom: 12px;
      }

      .games-controls button,
      .games-controls label,
      .games-controls select {
        width: 100%;
      }

      .games-controls label {
        display: grid;
        gap: 6px;
      }

      .games-controls button,
      .games-controls select {
        padding: 9px 12px;
      }

      .games-meta {
        gap: 8px;
        margin-bottom: 12px;
      }

      .games-meta-card {
        padding: 10px;
        border-radius: 14px;
        font-size: 14px;
      }

      .games-meta-card span {
        font-size: 12px;
        margin-bottom: 3px;
      }

      .games-status {
        margin: 8px 0;
        font-size: 13px;
        line-height: 1.35;
      }

      .games-history-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
      }

      .games-history-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 7px;
      }

      .games-history-table thead {
        display: none;
      }

      .games-history-table,
      .games-history-table tbody,
      .games-history-table tr,
      .games-history-table td {
        display: block;
        width: 100%;
      }

      .games-history-table tr {
        padding: 10px 11px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 15px;
        background: rgba(7, 17, 31, 0.68);
        box-shadow: 0 8px 18px rgba(0,0,0,0.14);
      }

      .games-history-table tbody tr:hover {
        background: rgba(7, 17, 31, 0.78);
      }

      .games-history-table th,
      .games-history-table td {
        border-bottom: 0;
      }

      .games-history-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 6px 0;
        text-align: right;
      }

      .games-history-table td + td {
        border-top: 1px solid rgba(255,255,255,0.08);
      }

      .games-history-table td::before {
        content: attr(data-label);
        flex: 0 0 68px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 900;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0;
      }

      .games-history-date {
        font-size: 14px;
      }

      .games-history-date-value {
        margin-left: auto;
      }

      .games-history-league {
        display: none !important;
      }

      .games-history-mobile-league-logo {
        display: inline-block;
        width: 30px;
        height: 30px;
      }

      .games-history-mobile-league-badge {
        display: inline-flex;
      }

      .games-history-teams {
        overflow-wrap: anywhere;
        text-align: right;
        font-size: 13px;
        line-height: 1.25;
      }

      .games-history-score {
        font-size: 17px;
      }

      .games-no-upcoming-row td {
        display: block;
        padding: 8px 0;
        text-align: left;
      }

      .games-no-upcoming-row td::before {
        content: none;
      }

      .games-cards-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .games-cards-notice {
        padding: 10px 12px;
        border-radius: 14px;
        font-size: 13px;
        text-align: left;
      }

      .games-card {
        min-height: 132px;
        padding: 10px;
        gap: 8px;
      }

      .games-card-team-logo {
        width: 48px;
        height: 48px;
      }

      .games-card-league-logo {
        width: 26px;
        height: 17px;
      }

      .games-card-team-name {
        font-size: 11px;
      }

      .games-card-score {
        min-width: 52px;
        font-size: 21px;
      }

      .games-card-result {
        font-size: 11px;
      }
    }


    @media (max-width: 420px) {
      .games-history-table tr {
        padding: 9px 10px;
        border-radius: 14px;
      }

      .games-history-table td {
        align-items: flex-start;
      }

      .games-history-table td::before {
        flex-basis: 62px;
        font-size: 10px;
      }
    }

    @media (max-width: 640px) {
      .games-section {
        margin-bottom: 24px;
      }

      .site-footer {
        padding-top: 28px;
      }
    }


    /* Показываем ракету и эмблему в мобильной версии */
    @media (max-width: 640px) {
      .hero-visual {
        display: flex !important;
        min-height: 220px !important;
        width: 100%;
        overflow: visible;
      }

      .planet {
        width: 150px !important;
        left: 0 !important;
        top: 10px !important;
        height: auto !important;
      }

      .planet-image {
        width: 100%;
        height: auto;
        object-fit: contain;
      }

      .rocket {
        --rocket-scale: .72;
        width: 132px !important;
        left: 82px !important;
        top: 86px !important;
        right: auto !important;
        height: auto !important;
      }

      .rocket-image {
        width: 100%;
        height: auto;
        object-fit: contain;
      }

      .launch-trail {
        display: block !important;
        left: 48px !important;
        top: 126px !important;
        width: 92px !important;
        height: 34px !important;
      }
    }

    @media (max-width: 420px) {
      .hero-visual {
        min-height: 190px !important;
      }

      .planet {
        width: 128px !important;
        left: -2px !important;
        top: 8px !important;
      }

      .rocket {
        --rocket-scale: .66;
        width: 116px !important;
        left: 68px !important;
        top: 78px !important;
      }

      .launch-trail {
        left: 38px !important;
        top: 112px !important;
        width: 78px !important;
        height: 30px !important;
      }
    }


    /* Единое расположение эмблемы, шара, ракеты и шлейфа на всех экранах */
    .hero-visual {
      display: flex !important;
      min-height: 300px;
      width: 100%;
      overflow: visible;
    }

    .hero-visual .planet {
      left: 5% !important;
      top: 0 !important;
      width: min(250px, 54%) !important;
      height: auto !important;
      right: auto !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      z-index: 1;
    }

    .hero-visual .planet::after {
      content: none !important;
      display: none !important;
    }

    .hero-visual .planet-image {
      display: block !important;
      width: 100% !important;
      height: auto !important;
      object-fit: contain !important;
      filter: drop-shadow(0 14px 30px rgba(0,0,0,.22));
    }

    .hero-visual .rocket {
      --rocket-scale: 1;
      left: 37% !important;
      top: 31% !important;
      width: min(184px, 40%) !important;
      height: auto !important;
      right: auto !important;
      aspect-ratio: 1150 / 500;
      transform-origin: 26% 58% !important;
      z-index: 3;
    }

    .hero-visual .rocket-image {
      display: block !important;
      width: 100% !important;
      height: auto !important;
      object-fit: contain !important;
    }

    .hero-visual .launch-trail {
      display: block !important;
      left: 25% !important;
      top: 52% !important;
      width: min(136px, 32%) !important;
      height: 24px !important;
      right: auto !important;
      z-index: 0;
    }

    @media (max-width: 1080px) {
      .hero-visual {
        min-height: 300px !important;
      }
    }

    @media (max-width: 900px) {
      .hero-visual {
        min-height: 270px !important;
      }

      .hero-visual .planet {
        width: min(220px, 54%) !important;
      }

      .hero-visual .rocket {
        width: min(168px, 40%) !important;
      }

      .hero-visual .launch-trail {
        width: min(114px, 32%) !important;
        height: 22px !important;
      }
    }

    @media (max-width: 640px) {
      .hero-visual {
        display: flex !important;
        min-height: 230px !important;
      }

      .hero-visual .planet {
        left: 5% !important;
        top: 0 !important;
        width: min(170px, 54%) !important;
      }

      .hero-visual .rocket {
        left: 37% !important;
        top: 31% !important;
        width: min(142px, 40%) !important;
      }

      .hero-visual .launch-trail {
        left: 25% !important;
        top: 52% !important;
        width: min(94px, 32%) !important;
        height: 20px !important;
      }
    }

    @media (max-width: 420px) {
      .hero-visual {
        min-height: 200px !important;
      }

      .hero-visual .planet {
        width: min(140px, 54%) !important;
      }

      .hero-visual .rocket {
        width: min(122px, 40%) !important;
      }

      .hero-visual .launch-trail {
        width: min(78px, 32%) !important;
        height: 18px !important;
      }
    }


    /* Шлейф ракеты отключён */
    .launch-trail,
    .hero-visual .launch-trail {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
    }


    /* Одинаковое положение ракеты в обычной и мобильной версии */
    @media (max-width: 640px) {
      .hero-visual .rocket {
        left: 37% !important;
        top: 31% !important;
        width: min(184px, 40%) !important;
        right: auto !important;
        transform-origin: 26% 58% !important;
      }
    }

    @media (max-width: 420px) {
      .hero-visual .rocket {
        left: 37% !important;
        top: 31% !important;
        width: min(184px, 40%) !important;
        right: auto !important;
        transform-origin: 26% 58% !important;
      }
    }


    /* Смещение ракеты левее в мобильной версии */
    @media (max-width: 640px) {
      .hero-visual .rocket {
        left: 28% !important;
        top: 33% !important;
        width: min(184px, 40%) !important;
        right: auto !important;
        transform-origin: 26% 58% !important;
      }
    }

    @media (max-width: 420px) {
      .hero-visual .rocket {
        left: 24% !important;
        top: 34% !important;
        width: min(184px, 42%) !important;
        right: auto !important;
        transform-origin: 26% 58% !important;
      }
    }


    /* Поднимаем ракету выше в мобильной версии, чтобы не перекрывала текст */
    @media (max-width: 640px) {
      .hero-visual .rocket {
        left: 28% !important;
        top: 24% !important;
        width: min(184px, 40%) !important;
        right: auto !important;
        transform-origin: 26% 58% !important;
      }
    }

    @media (max-width: 420px) {
      .hero-visual .rocket {
        left: 24% !important;
        top: 26% !important;
        width: min(184px, 42%) !important;
        right: auto !important;
        transform-origin: 26% 58% !important;
      }
    }


    /* Горизонтальная полоска отключена */
    .ice-line,
    .hero-visual .ice-line {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
    }


    /* Поднимаем ракету выше в мобильной версии */
    @media (max-width: 640px) {
      .hero-visual .rocket {
        left: 28% !important;
        top: 18% !important;
        width: min(184px, 40%) !important;
        right: auto !important;
        transform-origin: 26% 58% !important;
      }
    }

    @media (max-width: 420px) {
      .hero-visual .rocket {
        left: 24% !important;
        top: 20% !important;
        width: min(184px, 42%) !important;
        right: auto !important;
        transform-origin: 26% 58% !important;
      }
    }

    .hk-native-select {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      opacity: 0 !important;
      pointer-events: none !important;
      overflow: hidden !important;
      clip-path: inset(50%) !important;
    }

    .hk-custom-select {
      position: relative;
      display: inline-flex;
      min-width: var(--hk-select-min, 170px);
      vertical-align: middle;
      z-index: 35;
    }

    .hk-custom-select.is-open {
      z-index: 95;
    }

    .games-controls .hk-custom-select {
      --hk-select-min: 190px;
    }

    .games-controls .hk-custom-select-current {
      font-weight: 800;
    }

    .games-controls .hk-custom-select-option {
      min-height: 40px;
      padding: 0 14px;
      border: 1px solid transparent;
      border-radius: 12px;
      background: transparent;
      color: var(--muted);
      box-shadow: none;
      transform: none;
    }

    .games-controls .hk-custom-select-option:hover,
    .games-controls .hk-custom-select-option:focus-visible {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.1);
      color: var(--text);
      transform: none;
      outline: none;
    }

    .games-controls .hk-custom-select-option.is-active {
      color: #04111f;
      background: linear-gradient(135deg, var(--accent), #66d4ff);
      border-color: transparent;
      box-shadow: 0 12px 22px rgba(75,183,255,0.18);
    }

    .hk-custom-select-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      width: 100%;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.07);
      color: var(--text);
      cursor: pointer;
      font: inherit;
      font-weight: 800;
      text-align: left;
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }

    .hk-custom-select-toggle:hover,
    .hk-custom-select-toggle:focus-visible {
      box-shadow: 0 10px 22px rgba(0,0,0,0.18);
      border-color: rgba(137,240,255,.34);
      background: rgba(255,255,255,0.09);
      outline: none;
    }

    .hk-custom-select-toggle::after {
      content: "";
      width: 9px;
      height: 9px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform .2s ease;
      flex: 0 0 auto;
    }

    .hk-custom-select.is-open .hk-custom-select-toggle::after {
      transform: rotate(225deg) translateY(-2px);
    }

    .hk-custom-select-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 100%;
      display: grid;
      gap: 8px;
      padding: 10px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(7, 16, 31, 0.97);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
      max-height: 320px;
      overflow: auto;
    }

    .hk-custom-select.is-open .hk-custom-select-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .hk-custom-select-option {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      min-height: 40px;
      width: 100%;
      padding: 0 14px;
      border-radius: 12px;
      border: 1px solid transparent;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      font: inherit;
      font-weight: 800;
      text-align: left;
      transition: background .2s ease, border-color .2s ease, color .2s ease;
    }

    .hk-custom-select-option:hover,
    .hk-custom-select-option:focus-visible {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.1);
      color: var(--text);
      outline: none;
    }

    .hk-custom-select-option.is-active {
      color: var(--muted);
      background: transparent;
      border-color: transparent;
      box-shadow: none;
    }

    .hk-custom-select.is-disabled {
      opacity: .6;
      pointer-events: none;
    }

    @media (max-width: 700px) {
      .hk-custom-select {
        width: 100%;
        min-width: 0;
      }
    }

    /* Компактные логотипы клубов в пусковом экране */
    .clubs-panel .club-card {
      grid-template-columns: 128px minmax(0, 1fr);
      gap: 16px;
      min-height: 132px;
      padding: 18px;
    }

    .clubs-panel .club-logo-placeholder {
      width: 128px;
      height: 104px;
      padding: 0;
      border: 0;
      background: transparent;
      border-radius: 0;
    }

    .clubs-panel .club-logo-placeholder img {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      object-position: center center;
    }

    @media (max-width: 760px) {
      .clubs-panel .club-card {
        grid-template-columns: 128px minmax(0, 1fr);
        min-height: auto;
        padding: 18px 14px;
        text-align: left;
        justify-items: stretch;
      }

      .clubs-panel .club-logo-placeholder {
        width: 128px;
        height: 104px;
      }
    }

    @media (max-width: 420px) {
      .clubs-panel .club-card {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 12px;
      }

      .clubs-panel .club-logo-placeholder {
        width: 104px;
        height: 92px;
        border-radius: 0;
      }
    }

    .home-standings-section {
      margin-top: 0;
      margin-bottom: 38px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 28px;
      background:
        radial-gradient(circle at 18% 0%, rgba(99, 216, 255, 0.13), transparent 34%),
        linear-gradient(135deg, rgba(14, 34, 62, 0.82), rgba(8, 17, 34, 0.94)),
        rgba(255,255,255,0.03);
      box-shadow: var(--shadow);
      padding: 30px clamp(18px, 3vw, 34px);
      overflow: hidden;
    }

    .home-standings-header,
    .home-standings-card-top,
    .home-standings-footer {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      min-width: 0;
    }

    .home-standings-header {
      margin-bottom: 18px;
    }

    .home-standings-title h2 {
      margin: 0;
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.1;
      font-weight: 950;
    }

    .home-standings-title p {
      margin: 8px 0 0;
      color: var(--muted);
      line-height: 1.45;
      font-size: 15px;
    }

    .home-standings-leagues {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
      flex: 0 0 auto;
    }

    .home-standings-league {
      min-height: 40px;
      padding: 0 18px;
      border: 1px solid rgba(99, 216, 255, 0.32);
      border-radius: 999px;
      background: rgba(99, 216, 255, 0.08);
      color: var(--text);
      cursor: pointer;
      font: inherit;
      font-size: 14px;
      font-weight: 900;
      line-height: 1;
      transition: background .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease;
    }

    .home-standings-league:hover:not(:disabled),
    .home-standings-league:focus-visible {
      border-color: rgba(99, 216, 255, 0.62);
      background: rgba(99, 216, 255, 0.14);
      outline: none;
    }

    .home-standings-league.is-active {
      border-color: rgba(99, 216, 255, 0.72);
      background: linear-gradient(135deg, var(--orbit-blue), var(--ice-blue));
      color: #061323;
      box-shadow: 0 12px 26px rgba(0, 91, 190, 0.28);
    }

    .home-standings-league:disabled {
      opacity: .42;
      cursor: not-allowed;
    }

    .home-standings-card {
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 22px;
      background: rgba(255,255,255,0.045);
      padding: 18px;
      backdrop-filter: blur(12px);
    }

    .home-standings-card-top {
      align-items: center;
      margin-bottom: 12px;
    }

    .home-standings-card-top h3 {
      margin: 0;
      font-size: clamp(20px, 2vw, 28px);
      line-height: 1.15;
      font-weight: 950;
    }

    .home-standings-card-top p {
      margin: 6px 0 0;
      color: var(--muted);
      line-height: 1.4;
      font-size: 14px;
    }

    .home-standings-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 7px 12px;
      border: 1px solid rgba(200, 162, 74, 0.42);
      border-radius: 999px;
      background: rgba(200, 162, 74, 0.1);
      color: var(--gold);
      font-size: 12px;
      font-weight: 950;
      line-height: 1;
      white-space: nowrap;
    }

    .home-standings-status {
      margin: 10px 0 14px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .home-standings-table-wrap {
      overflow-x: auto;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px;
      background: rgba(7, 17, 31, 0.58);
    }

    .home-standings-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 560px;
    }

    .home-standings-table th,
    .home-standings-table td {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      vertical-align: middle;
    }

    .home-standings-table th {
      color: var(--accent-2);
      background: rgba(255,255,255,0.05);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .home-standings-table td {
      color: var(--text);
      font-size: 14px;
      font-weight: 850;
    }

    .home-standings-table tr:last-child td {
      border-bottom: 0;
    }

    .home-standings-table td:nth-child(2),
    .home-standings-table th:nth-child(2) {
      text-align: left;
    }

    .home-standings-table td:first-child {
      color: var(--accent-2);
      font-weight: 950;
      width: 72px;
    }

    .home-standings-table tr.is-home-team {
      background: linear-gradient(90deg, rgba(200, 162, 74, 0.2), rgba(0, 91, 190, 0.12));
      box-shadow: inset 3px 0 0 var(--gold);
    }

    .home-standings-team {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      max-width: 100%;
    }

    .home-standings-team__logo {
      width: 30px;
      height: 30px;
      object-fit: contain;
      flex: 0 0 auto;
      filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.28));
    }

    .home-standings-team__logo--empty {
      border: 1px dashed rgba(99, 216, 255, 0.25);
      border-radius: 8px;
      background: rgba(99, 216, 255, 0.08);
    }

    .home-standings-team__text {
      min-width: 0;
      overflow-wrap: anywhere;
      line-height: 1.25;
    }

    .home-standings-empty,
    .home-standings-loading {
      padding: 18px;
      color: var(--muted);
      font-weight: 850;
      line-height: 1.45;
      text-align: center;
    }

    .home-standings-footer {
      align-items: center;
      justify-content: center;
      margin-top: 16px;
    }

    .home-standings-full-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      min-width: min(100%, 280px);
      padding: 0 22px;
      border: 1px solid rgba(99, 216, 255, 0.36);
      border-radius: 12px;
      background: rgba(99, 216, 255, 0.08);
      color: var(--text);
      font-weight: 900;
      text-decoration: none;
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }

    .home-standings-full-link::after {
      content: "";
      width: 8px;
      height: 8px;
      margin-left: 12px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: rotate(45deg);
    }

    .home-standings-full-link:hover,
    .home-standings-full-link:focus-visible {
      border-color: rgba(99, 216, 255, 0.64);
      background: rgba(99, 216, 255, 0.14);
      transform: translateY(-1px);
      outline: none;
    }

    @media (max-width: 760px) {
      .home-standings-section {
        padding: 20px 14px;
        border-radius: 22px;
      }

      .home-standings-header,
      .home-standings-card-top {
        display: grid;
        gap: 12px;
      }

      .home-standings-leagues {
        justify-content: flex-start;
        width: 100%;
      }

      .home-standings-league {
        min-height: 38px;
        padding: 0 15px;
        font-size: 13px;
      }

      .home-standings-card {
        padding: 14px;
        border-radius: 18px;
      }

      .home-standings-table {
        min-width: 0;
      }

      .home-standings-table th,
      .home-standings-table td {
        padding: 10px 8px;
      }

      .home-standings-table th {
        font-size: 11px;
      }

      .home-standings-table td {
        font-size: 12px;
      }

      .home-standings-table th:nth-child(4),
      .home-standings-table td:nth-child(4) {
        display: none;
      }

      .home-standings-table td:first-child {
        width: 48px;
      }

      .home-standings-team {
        gap: 8px;
      }

      .home-standings-team__logo {
        width: 26px;
        height: 26px;
      }
    }

      .optimized-picture {
      display: contents;
    }
