: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;
    }



    .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;
      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;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(0,0,0,.22);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #66d4ff);
      color: #04111f;
    }

    .btn-secondary {
      border-color: rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.04);
      color: var(--text);
    }

    .hero-visual {
      position: relative;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .planet {
      position: absolute;
      width: 180px;
      height: 180px;
      right: 30px;
      top: 36px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 18%),
        radial-gradient(circle at 35% 35%, #7ce8ff, #206fa3 62%, #0b2340 100%);
      box-shadow: inset -16px -22px 40px rgba(0,0,0,.32), 0 0 50px rgba(95, 211, 255, 0.18);
      animation: floatPlanet 8s ease-in-out infinite;
    }

    .planet::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 36px;
      border: 3px solid rgba(165,235,255,.55);
      border-radius: 50%;
      left: -30px;
      top: 70px;
      transform: rotate(-14deg);
      box-shadow: 0 0 18px rgba(165,235,255,.22);
    }

    .rocket {
      position: absolute;
      left: 38px;
      top: 72px;
      width: 138px;
      height: 52px;
      animation: rocketFly 9s ease-in-out infinite;
      transform-origin: center;
    }

    .rocket-body {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #dbe8ff, #ffffff 35%, #cfe3ff 100%);
      border-radius: 28px 38px 38px 28px;
      box-shadow: 0 10px 24px rgba(0,0,0,.18);
    }

    .rocket-body::before {
      content: "";
      position: absolute;
      right: -18px;
      top: 8px;
      border-left: 24px solid #ff5656;
      border-top: 18px solid transparent;
      border-bottom: 18px solid transparent;
    }

    .rocket-body::after {
      content: "";
      position: absolute;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      left: 42px;
      top: 12px;
      background: radial-gradient(circle at 35% 35%, #dff7ff, #5dc9ff 70%, #277eb6 100%);
      border: 3px solid rgba(10,23,43,.12);
    }

    .fin-top,
    .fin-bottom {
      position: absolute;
      left: 8px;
      width: 24px;
      height: 22px;
      background: #ff5656;
      clip-path: polygon(0 0, 100% 50%, 0 100%);
    }

    .fin-top { top: -7px; transform: rotate(-12deg); }
    .fin-bottom { bottom: -7px; transform: rotate(12deg); }

    .flame {
      position: absolute;
      left: -18px;
      top: 14px;
      width: 26px;
      height: 24px;
      background: radial-gradient(circle at 65% 50%, #fff3a3 0%, #ffb347 40%, #ff6b00 72%, transparent 74%);
      filter: blur(0.3px);
      animation: flamePulse .35s ease-in-out infinite alternate;
    }

    .hero-player {
      position: absolute;
      bottom: 18px;
      right: 60px;
      width: 132px;
      height: 220px;
      animation: playerGlide 5.5s ease-in-out infinite;
    }

    .hero-player .head {
      position: absolute;
      top: 0;
      left: 44px;
      width: 42px;
      height: 42px;
      background: #ebf5ff;
      border-radius: 50%;
      box-shadow: inset -6px -8px 10px rgba(0,0,0,.12);
    }

    .hero-player .helmet {
      position: absolute;
      top: -2px;
      left: 38px;
      width: 54px;
      height: 26px;
      border-radius: 30px 30px 10px 10px;
      background: #ff5252;
    }

    .hero-player .body {
      position: absolute;
      top: 44px;
      left: 32px;
      width: 68px;
      height: 88px;
      background: linear-gradient(180deg, #e33f3f, #972626);
      border-radius: 20px;
    }

    .hero-player .arm,
    .hero-player .leg {
      position: absolute;
      background: linear-gradient(180deg, #d7eaff, #9eb5d0);
      border-radius: 16px;
      transform-origin: top center;
    }

    .hero-player .arm.left {
      width: 18px;
      height: 68px;
      left: 18px;
      top: 56px;
      transform: rotate(28deg);
    }

    .hero-player .arm.right {
      width: 18px;
      height: 74px;
      right: 16px;
      top: 58px;
      transform: rotate(-42deg);
    }

    .hero-player .leg.left {
      width: 20px;
      height: 92px;
      left: 40px;
      top: 118px;
      transform: rotate(12deg);
    }

    .hero-player .leg.right {
      width: 20px;
      height: 92px;
      left: 72px;
      top: 118px;
      transform: rotate(-22deg);
    }

    .hero-player .stick {
      position: absolute;
      width: 8px;
      height: 112px;
      background: linear-gradient(180deg, #d8b581, #a56f2a);
      right: 2px;
      top: 88px;
      border-radius: 10px;
      transform: rotate(36deg);
    }

    .hero-player .stick::after {
      content: "";
      position: absolute;
      bottom: -8px;
      right: -22px;
      width: 46px;
      height: 10px;
      background: #c28a3f;
      border-radius: 8px;
      transform: rotate(-38deg);
    }

    .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;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 26px;
    }

    .feature-card {
      position: relative;
      overflow: hidden;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .feature-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .feature-card p {
      color: var(--muted);
      line-height: 1.6;
    }

    .content-grid {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 24px;
      margin-top: 28px;
    }

    .panel {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }

    .panel-header h3 {
      font-size: 24px;
    }

    .panel-header span {
      color: var(--muted);
      font-size: 14px;
    }

    .embed-slot {
      min-height: 280px;
      border: 1px dashed rgba(255,255,255,.24);
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      padding: 22px;
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--muted);
      line-height: 1.7;
    }

    .embed-slot strong {
      color: var(--text);
      display: block;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .code-hint {
      margin-top: 18px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.08);
      font-family: Consolas, Monaco, monospace;
      font-size: 13px;
      color: #cde8ff;
      text-align: left;
      overflow-x: auto;
      width: 100%;
    }

    .widget-stack {
      display: grid;
      gap: 18px;
    }

    .widget {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 18px;
    }

    .widget h4 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .widget p,
    .widget li {
      color: var(--muted);
      line-height: 1.6;
    }

    .widget ul {
      padding-left: 18px;
      display: grid;
      gap: 8px;
    }

    .rink {
      position: relative;
      height: 220px;
      margin-top: 10px;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(circle at center, rgba(170,220,255,.48), rgba(212,240,255,.16) 45%, rgba(255,255,255,.04) 90%),
        linear-gradient(180deg, rgba(228,245,255,.16), rgba(143,212,255,.06));
    }

    .rink::before,
    .rink::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 2px;
      background: rgba(255,255,255,.55);
      opacity: .7;
    }

    .rink::before { left: 18%; }
    .rink::after { right: 18%; }

    .center-line {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      transform: translateX(-50%);
      background: rgba(255, 80, 80, .8);
    }

    .faceoff {
      position: absolute;
      width: 56px;
      height: 56px;
      border: 2px solid rgba(255,255,255,.7);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .puck {
      position: absolute;
      left: 12%;
      top: 60%;
      width: 30px;
      height: 18px;
      border-radius: 50%;
      background: linear-gradient(180deg, #3f464c, #0d1014 55%, #000 100%);
      box-shadow: 0 10px 12px rgba(0,0,0,.25);
      animation: puckSlide 5.5s cubic-bezier(.55,.05,.45,.95) infinite;
    }

    .hockey-stick {
      position: absolute;
      left: 10%;
      top: 32%;
      width: 12px;
      height: 104px;
      border-radius: 10px;
      background: linear-gradient(180deg, #d8b581, #9f6d2a);
      transform: rotate(18deg);
      animation: stickSwing 5.5s ease-in-out infinite;
      transform-origin: top center;
    }

    .hockey-stick::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: -30px;
      width: 54px;
      height: 12px;
      background: linear-gradient(90deg, #c48d48, #a66d29);
      border-radius: 10px;
      transform: rotate(-18deg);
    }

    .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;
    }

    .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);
    }

    .file-mount {
      color: #14213d;
    }

    .file-mount * {
      box-sizing: border-box;
    }

    .file-mount img {
      max-width: 100%;
      display: block;
    }

    .file-mount a {
      color: inherit;
      text-decoration: none;
    }

    .file-mount button {
      font: inherit;
    }

    .file-mount .page-header {
      padding: 28px 0 10px;
    }

    .file-mount .back-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #8fd9ff;
      margin-bottom: 20px;
    }

    .file-mount .back-link::before {
      content: "";
      width: 10px;
      height: 10px;
      border-left: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
    }

    .file-mount .section-head {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
    }

    .file-mount .puck {
      position: static;
      left: auto;
      top: auto;
      transform: none;
      animation: none;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #3b4350, #0f141c 65%);
      box-shadow: inset 0 -2px 4px rgba(255,255,255,0.08), 0 4px 10px rgba(0,0,0,0.18);
      flex: 0 0 24px;
      display: inline-block;
    }

    .file-mount .section-head h1 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.2rem);
      letter-spacing: -0.04em;
      color: #ffffff;
    }

    .file-mount .fan-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .file-mount .rules-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
      margin-bottom: 36px;
    }

    .file-mount .zoom-card {
      margin: 0;
      overflow: hidden;
      border-radius: 24px;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(9, 40, 103, 0.08);
      box-shadow: 0 18px 40px rgba(8, 31, 80, 0.12);
    }

    .file-mount .feature-card,
    .file-mount .info-card {
      border-radius: 24px;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(9, 40, 103, 0.08);
      box-shadow: 0 18px 40px rgba(8, 31, 80, 0.12);
    }

    .file-mount .feature-card {
      overflow: hidden;
      position: relative;
      min-height: 280px;
    }

    .file-mount .feature-card img {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
      max-height: none;
      margin: 0;
      border-radius: 0;
      object-fit: contain;
      object-position: center top;
      box-shadow: none;
      transition: transform .25s ease;
    }

    .file-mount .zoom-card img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      transition: transform .25s ease;
    }

    .file-mount .zoom-trigger:focus-visible {
      outline: 2px solid var(--accent-2);
      outline-offset: 4px;
    }

    .file-mount .feature-card:hover img {
      transform: scale(1.03);
    }

    .file-mount .zoom-card:hover img {
      transform: scale(1.03);
    }

    .file-mount .zoom-trigger {
      display: block;
      width: 100%;
      min-height: 0;
      padding: 0;
      border: none;
      border-radius: 0;
      background: none;
      cursor: zoom-in;
    }

    .file-mount .feature-card .optimized-picture {
      display: block;
      width: 100%;
    }

    .file-mount .zoom-card figcaption {
      padding: 16px 18px 18px;
      font-weight: 800;
      color: #10367e;
    }

    .file-mount .info-card {
      padding: 28px;
      margin-top: 22px;
    }

    .file-mount details.rules-accordion {
      overflow: hidden;
    }

    .file-mount details.rules-accordion summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      font-size: 1.2rem;
      font-weight: 800;
      color: #0d367f;
      border-radius: 14px;
    }

    .file-mount details.rules-accordion summary:focus-visible {
      outline: 2px solid var(--accent-2);
      outline-offset: 4px;
    }

    .file-mount details.rules-accordion summary::-webkit-details-marker {
      display: none;
    }

    .file-mount .summary-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .file-mount .doc-icon {
      width: 24px;
      height: 30px;
      border-radius: 6px;
      border: 2px solid #6d7aa5;
      position: relative;
    }

    .file-mount .doc-icon::before,
    .file-mount .doc-icon::after {
      content: "";
      position: absolute;
      left: 4px;
      right: 4px;
      height: 2px;
      background: #6d7aa5;
      border-radius: 20px;
    }

    .file-mount .doc-icon::before { top: 8px; }
    .file-mount .doc-icon::after { top: 14px; }

    .file-mount .chevron {
      width: 14px;
      height: 14px;
      border-right: 3px solid #6d7aa5;
      border-bottom: 3px solid #6d7aa5;
      transform: rotate(45deg);
      transition: transform .2s ease;
      margin-right: 6px;
    }

    .file-mount details[open] .chevron {
      transform: rotate(-135deg);
      margin-top: 6px;
    }

    .file-mount .rules-content {
      margin-top: 20px;
      color: #34405c;
      line-height: 1.8;
      font-size: 1rem;
    }

    .file-mount .rules-content p {
      margin: 0 0 14px;
    }

    .file-mount .rules-content ul {
      margin: 0 0 14px 22px;
      color: #34405c;
    }

    .file-mount .rules-content li {
      margin-bottom: 10px;
    }

    .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: auto;
      max-width: 100%;
      height: auto;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 24px;
      box-shadow: 0 24px 50px rgba(0,0,0,0.28);
      background: transparent;
    }

    .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(-10deg); }
      25%  { transform: translate(44px, -26px) rotate(-4deg); }
      50%  { transform: translate(92px, -6px) rotate(2deg); }
      75%  { transform: translate(50px, 20px) rotate(-3deg); }
      100% { transform: translate(0, 0) rotate(-10deg); }
    }

    @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 playerGlide {
      0%, 100% { transform: translateX(0) rotate(0deg); }
      50% { transform: translateX(-16px) rotate(-2deg); }
    }

    @keyframes puckSlide {
      0%   { left: 14%; top: 60%; transform: scale(1); }
      20%  { left: 28%; top: 55%; }
      40%  { left: 47%; top: 62%; transform: scale(1.1); }
      60%  { left: 64%; top: 46%; }
      80%  { left: 78%; top: 58%; transform: scale(0.95); }
      100% { left: 14%; top: 60%; transform: scale(1); }
    }

    @keyframes stickSwing {
      0%, 100% { transform: rotate(20deg) translateY(0); }
      20% { transform: rotate(14deg) translateY(2px); }
      50% { transform: rotate(6deg) translateY(8px); }
      70% { transform: rotate(16deg) translateY(2px); }
    }

    @media (max-width: 1080px) {
      .file-mount .fan-grid,
      .file-mount .rules-gallery {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 1080px) {
      .hero,
      .content-grid,
      .features {
        grid-template-columns: 1fr;
      }

      .hero-copy h2 {
        max-width: 100%;
      }
    }



    @media (max-width: 1080px) {
      .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;
      }

      .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;
      }

      .file-mount .info-card {
        padding: 22px 18px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        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;
      }

      .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;
      }
    }
      .optimized-picture {
      display: contents;
    }
