﻿    :root {
      --gold: #e0b36a;
      --gold-soft: #f3d9ab;
      --red: #c4543d;
      --red-soft: #f09a86;
      --text: #f5efe5;
      --muted: #d6cab7;
      --panel: rgba(15, 12, 11, 0.72);
      --line: rgba(255, 214, 160, 0.18);
      --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    }

    * {
      box-sizing: border-box;
    }

    html {
      cursor: url("https://aenor2-img.b-cdn.net/cursors/normal.cur"), auto;
      scrollbar-color: rgba(255, 255, 255, 0.92) rgba(255, 255, 255, 0.14);
      scrollbar-width: thin;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
      width: 12px;
      height: 12px;
    }

    html::-webkit-scrollbar-track,
    body::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.12);
    }

    html::-webkit-scrollbar-thumb,
    body::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.92);
      border-radius: 999px;
      border: 2px solid rgba(12, 14, 20, 0.35);
    }

    html::-webkit-scrollbar-thumb:hover,
    body::-webkit-scrollbar-thumb:hover {
      background: #ffffff;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background: #060708;
      cursor: url("https://aenor2-img.b-cdn.net/cursors/normal.cur"), auto;
      overflow: hidden;
    }

    body.secure-mode {
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      user-select: none;
    }

    body.secure-mode input,
    body.secure-mode textarea,
    body.secure-mode [contenteditable="true"] {
      -webkit-user-select: text;
      user-select: text;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at 50% 24%, rgba(152, 189, 255, 0.18), transparent 22%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.56)),
        linear-gradient(180deg, rgba(8, 10, 14, 0.2), rgba(7, 6, 6, 0.84));
      pointer-events: none;
    }

    .bg-video {
      position: fixed;
      inset: 0;
      z-index: -2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #060708;
    }

    img,
    a,
    video {
      -webkit-user-drag: none;
    }

    a,
    button,
    .action,
    .lang-btn,
    .contact-trigger,
    .contact-link,
    .mute-toggle,
    [role="button"] {
      cursor: url("https://aenor2-img.b-cdn.net/cursors/link.cur"), pointer;
    }

    body.loading {
      cursor: url("https://aenor2-img.b-cdn.net/cursors/buzy.cur"), wait;
    }

    .disabled,
    [disabled] {
      cursor: url("https://aenor2-img.b-cdn.net/cursors/not_available.cur"), not-allowed;
    }

    .devtools-guard {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(4, 4, 6, 0.96);
      color: #f5efe5;
      text-align: center;
      font-family: "Cinzel", serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    body.devtools-open .devtools-guard {
      display: flex;
    }

    .cursor-glow {
      position: fixed;
      left: 0;
      top: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      opacity: 0;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(225, 191, 110, 0.58) 0%, rgba(225, 191, 110, 0.18) 35%, transparent 72%);
      transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease, background 0.2s ease;
    }

    .cursor-glow.visible {
      opacity: 1;
    }

    .cursor-glow.active {
      width: 60px;
      height: 60px;
      background: radial-gradient(circle, rgba(225, 191, 110, 0.78) 0%, rgba(225, 191, 110, 0.22) 42%, transparent 76%);
    }

    body.intro-active {
      overflow: hidden;
    }

    .intro-screen {
      position: fixed;
      inset: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: linear-gradient(180deg, rgba(5, 6, 8, 0.4), rgba(5, 6, 8, 0.92));
      transition: opacity 0.9s ease, visibility 0.9s ease;
    }

    .intro-screen::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at center, rgba(154, 194, 255, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(5, 6, 8, 0.15), rgba(5, 6, 8, 0.82));
    }

    .intro-screen.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .intro-logo {
      position: relative;
      z-index: 1;
      width: min(430px, 78vw);
      animation: introPulse 2s ease-in-out infinite;
      margin: 0 auto;
    }

    .intro-logo img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
    }

    .intro-loader {
      position: relative;
      z-index: 1;
      width: min(300px, 62vw);
      margin: 18px auto 0;
    }

    .intro-loader-track {
      width: 100%;
      height: 8px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 223, 176, 0.14);
      box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.4);
    }

    .intro-loader-fill {
      width: 0;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, rgba(180, 120, 41, 0.95), rgba(243, 217, 171, 0.98));
      box-shadow: 0 0 16px rgba(224, 179, 106, 0.45);
      transition: width 0.18s linear;
    }

    .intro-loader-text {
      margin-top: 8px;
      color: rgba(255, 236, 205, 0.82);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-align: center;
    }

    @keyframes introPulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.92;
      }
      50% {
        transform: scale(1.03);
        opacity: 1;
      }
    }

    .shell {
      position: relative;
      z-index: 1;
      width: min(1380px, calc(100% - 28px));
      height: 100vh;
      margin: 0 auto;
      padding: 10px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .shell-topbar {
      width: min(1360px, 100%);
      display: flex;
      justify-content: flex-end;
      margin-bottom: 8px;
      padding-right: 4px;
      flex-shrink: 0;
    }

    .partner-pill {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: min(360px, 100%);
      min-height: 110px;
      padding: 18px 22px;
      border-radius: 24px;
      border: 1px solid rgba(255, 220, 160, 0.28);
      background:
        radial-gradient(circle at top right, rgba(224, 179, 106, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(22, 25, 35, 0.96), rgba(67, 45, 25, 0.9));
      color: #f8e5bc;
      text-decoration: none;
      text-align: center;
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    .partner-pill:hover {
      transform: translateY(-2px) scale(1.01);
      border-color: rgba(255, 228, 184, 0.4);
      filter: brightness(1.08);
    }

    .partner-pill::after {
      content: "";
      position: absolute;
      right: -18px;
      bottom: -18px;
      width: 118px;
      height: 118px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(224, 179, 106, 0.24), transparent 72%);
      pointer-events: none;
    }

    .partner-pill-eyebrow {
      color: rgba(244, 226, 190, 0.82);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .partner-pill-title {
      color: #fff1cf;
      font-family: "Cinzel", serif;
      font-size: 26px;
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .partner-pill-subtitle {
      max-width: 250px;
      color: rgba(248, 233, 205, 0.82);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.45;
      text-align: center;
    }

    .lang-switcher {
      position: relative;
      display: flex;
      gap: 10px;
      padding: 10px 14px;
      border: 1px solid rgba(255, 228, 184, 0.12);
      border-radius: 999px;
      background: rgba(8, 8, 10, 0.76);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      flex-wrap: nowrap;
      overflow-x: auto;
      scrollbar-width: none;
      width: min(920px, 100%);
      margin: 8px auto 0;
      justify-content: center;
      flex-shrink: 0;
    }

    body.embedded-browser-active .lang-switcher {
      display: none !important;
    }

    .lang-switcher::-webkit-scrollbar {
      display: none;
    }

    .lang-btn {
      width: 38px;
      height: 38px;
      padding: 0;
      border: 1px solid rgba(225, 191, 110, 0.18);
      border-radius: 999px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 45%),
        linear-gradient(180deg, rgba(42, 34, 24, 0.92), rgba(14, 12, 10, 0.96));
      color: var(--text);
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .lang-btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.08);
    }

    .lang-btn.active {
      border-color: rgba(255, 221, 170, 0.45);
      box-shadow: 0 0 0 2px rgba(225, 191, 110, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
      filter: brightness(1.08);
    }

    .lang-flag {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      display: block;
      background-size: cover;
      background-position: center;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .flag-it { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='20' height='60' fill='%23009246'/><rect x='20' width='20' height='60' fill='%23ffffff'/><rect x='40' width='20' height='60' fill='%23ce2b37'/></g></svg>"); }
    .flag-de { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='20' fill='%23000000'/><rect y='20' width='60' height='20' fill='%23dd0000'/><rect y='40' width='60' height='20' fill='%23ffce00'/></g></svg>"); }
    .flag-el { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='60' fill='%230d5eaf'/><rect y='7' width='60' height='6' fill='white'/><rect y='20' width='60' height='6' fill='white'/><rect y='33' width='60' height='6' fill='white'/><rect y='46' width='60' height='6' fill='white'/><rect width='28' height='28' fill='%230d5eaf'/><rect x='11' width='6' height='28' fill='white'/><rect y='11' width='28' height='6' fill='white'/></g></svg>"); }
    .flag-fr { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='20' height='60' fill='%230055a4'/><rect x='20' width='20' height='60' fill='%23ffffff'/><rect x='40' width='20' height='60' fill='%23ef4135'/></g></svg>"); }
    .flag-tr { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='60' fill='%23e30a17'/><circle cx='24' cy='30' r='10' fill='white'/><circle cx='27' cy='30' r='8' fill='%23e30a17'/><polygon points='34,30 43,26 40,35 47,29 38,29 43,21' fill='white'/></g></svg>"); }
    .flag-hu { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='20' fill='%23ce2939'/><rect y='20' width='60' height='20' fill='%23ffffff'/><rect y='40' width='60' height='20' fill='%23477950'/></g></svg>"); }
    .flag-ru { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='20' fill='%23ffffff'/><rect y='20' width='60' height='20' fill='%230039a6'/><rect y='40' width='60' height='20' fill='%23d52b1e'/></g></svg>"); }
    .flag-ro { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='20' height='60' fill='%23002b7f'/><rect x='20' width='20' height='60' fill='%23fcd116'/><rect x='40' width='20' height='60' fill='%23ce1126'/></g></svg>"); }
    .flag-pl { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='30' fill='%23ffffff'/><rect y='30' width='60' height='30' fill='%23dc143c'/></g></svg>"); }
    .flag-pt { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='24' height='60' fill='%2300602f'/><rect x='24' width='36' height='60' fill='%23ff0000'/><circle cx='24' cy='30' r='7' fill='none' stroke='%23ffcc00' stroke-width='3'/></g></svg>"); }
    .flag-nl { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='20' fill='%23ae1c28'/><rect y='20' width='60' height='20' fill='%23ffffff'/><rect y='40' width='60' height='20' fill='%2321468b'/></g></svg>"); }
    .flag-cs { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='30' fill='%23ffffff'/><rect y='30' width='60' height='30' fill='%23d7141a'/><polygon points='0,0 30,30 0,60' fill='%2311457e'/></g></svg>"); }
    .flag-da { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='60' fill='%23c60c30'/><rect x='18' width='6' height='60' fill='white'/><rect y='27' width='60' height='6' fill='white'/></g></svg>"); }
    .flag-en { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='60' fill='%23012169'/><path d='M0 0 L60 60 M60 0 L0 60' stroke='white' stroke-width='12'/><path d='M0 0 L60 60 M60 0 L0 60' stroke='%23c8102e' stroke-width='6'/><rect x='24' width='12' height='60' fill='white'/><rect y='24' width='60' height='12' fill='white'/><rect x='26' width='8' height='60' fill='%23c8102e'/><rect y='26' width='60' height='8' fill='%23c8102e'/></g></svg>"); }
    .flag-es { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><clipPath id='c'><circle cx='30' cy='30' r='30'/></clipPath></defs><g clip-path='url(%23c)'><rect width='60' height='15' fill='%23aa151b'/><rect y='15' width='60' height='30' fill='%23f1bf00'/><rect y='45' width='60' height='15' fill='%23aa151b'/></g></svg>"); }

    .logo-wrap {
      width: min(430px, 78vw);
      margin-bottom: 8px;
      text-align: center;
      flex-shrink: 0;
    }

    .logo-wrap img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
    }

    body.embedded-browser-active .logo-wrap,
    body.embedded-browser-active .feature-grid,
    body.embedded-browser-active .actions,
    body.embedded-browser-active .shell-topbar {
      display: none !important;
    }

    body.embedded-browser-active .shell {
      min-height: auto;
      padding-top: 0;
    }

    body.embedded-browser-active {
      overflow: hidden;
    }

    body.embedded-browser-active .bg-video,
    body.embedded-browser-active .cursor-glow {
      opacity: 0;
      pointer-events: none;
    }

    .feature-grid {
      width: min(1360px, 100%);
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) minmax(640px, 1.8fr) minmax(240px, 0.9fr);
      gap: 10px;
      align-items: stretch;
      margin-bottom: 8px;
      flex: 1 1 auto;
      min-height: 0;
    }

    .trailer {
      position: relative;
      width: 100%;
      min-height: 100%;
      border: 1px solid var(--line);
      border-radius: 22px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(17, 17, 18, 0.48), rgba(8, 8, 8, 0.78));
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      aspect-ratio: 16 / 9;
    }

    .trailer video,
    .trailer iframe {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      background: #000;
      border: 0;
    }

    .web-preview-button {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 0;
      border: 0;
      background: #050607;
      color: inherit;
      overflow: hidden;
    }

    .web-preview-image {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      object-position: center;
      filter: brightness(0.42) saturate(0.9);
      transform: none;
      background: #050607;
    }

    .web-preview-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 24px;
      text-align: center;
      background:
        linear-gradient(180deg, rgba(7, 8, 10, 0.18), rgba(7, 8, 10, 0.62)),
        radial-gradient(circle at center, rgba(225, 191, 110, 0.14), transparent 34%);
    }

    .web-preview-eyebrow {
      color: rgba(244, 226, 190, 0.82);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.28em;
      text-transform: uppercase;
    }

    .web-preview-title {
      color: #f8e5bc;
      font-family: "Cinzel", serif;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    }

    .web-preview-subtitle {
      max-width: 420px;
      color: rgba(248, 233, 205, 0.82);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.5;
    }

    .web-preview-button::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 24px;
      width: 96px;
      height: 96px;
      border-radius: 50%;
      transform: translateX(-50%);
      background:
        radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(225, 191, 110, 0.3) 45%, rgba(225, 191, 110, 0.08) 70%, transparent 72%);
      box-shadow: 0 0 0 1px rgba(255, 221, 170, 0.24);
      pointer-events: none;
    }

    .mute-toggle {
      position: absolute;
      top: 50%;
      right: 16px;
      transform: translateY(-50%);
      z-index: 2;
      min-width: 56px;
      min-height: 56px;
      border: 1px solid rgba(255, 221, 170, 0.24);
      border-radius: 999px;
      background: rgba(8, 8, 8, 0.68);
      color: #fff4df;
      font-size: 22px;
      cursor: pointer;
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .mute-toggle:hover {
      transform: translateY(-50%) scale(1.04);
      background: rgba(22, 22, 22, 0.82);
    }

    .server {
      padding: 14px;
      border-radius: 22px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255, 204, 128, 0.08), rgba(14, 12, 11, 0.86)),
        var(--panel);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow);
    }

    .server.new {
      background:
        linear-gradient(180deg, rgba(78, 190, 118, 0.16), rgba(14, 12, 11, 0.86)),
        var(--panel);
    }

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

    .server-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 74px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.38);
      border: 1px solid rgba(255, 213, 150, 0.18);
      color: var(--gold-soft);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .server.new .server-label {
      color: #9df0b8;
      border-color: rgba(120, 224, 159, 0.24);
    }

    .status {
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.35);
      color: #edd4ac;
      font-size: 12px;
      font-weight: 700;
    }

    .server.new .status {
      color: #aef3be;
    }

    .server h2 {
      margin: 0 0 4px;
      font-family: "Cinzel", serif;
      font-size: 27px;
      line-height: 1.05;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .server p {
      margin: 0 0 8px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.42;
    }

    .meta {
      display: grid;
      gap: 6px;
    }

    .meta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 8px 10px;
      border-radius: 16px;
      background: rgba(0, 0, 0, 0.26);
      border: 1px solid rgba(255, 230, 186, 0.08);
    }

    .meta-row strong {
      color: rgba(255, 229, 192, 0.78);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .meta-row span {
      color: #fff2da;
      font-size: 13px;
      font-weight: 700;
      text-align: right;
    }

    .server.new .meta-row span {
      color: #c9f8d5;
    }

    .actions {
      width: min(1360px, 100%);
      display: grid;
      gap: 8px;
      margin: 0 auto;
      flex-shrink: 0;
    }

    .actions {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .action {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(255, 216, 160, 0.16);
      color: var(--text);
      text-decoration: none;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 12px;
      text-align: center;
      line-height: 1.35;
      word-break: break-word;
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
      appearance: none;
      font-family: inherit;
      cursor: pointer;
      overflow: visible;
    }

    .action.new-game {
      margin-top: 14px;
    }

    .action.new-game::before {
      content: "NEW GAME";
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.18em;
      line-height: 1;
      color: #75ff8f;
      text-shadow:
        0 0 6px rgba(117, 255, 143, 0.95),
        0 0 14px rgba(72, 255, 126, 0.85),
        0 0 24px rgba(72, 255, 126, 0.55);
      white-space: nowrap;
      pointer-events: none;
      animation: newGameGlow 1.6s ease-in-out infinite;
    }

    @keyframes newGameGlow {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.88;
        filter: brightness(0.95);
      }
      50% {
        transform: translateX(-50%) translateY(-3px);
        opacity: 1;
        filter: brightness(1.2);
      }
    }

    .action.beta {
      background: linear-gradient(135deg, rgba(74, 105, 189, 0.28), rgba(43, 59, 122, 0.4));
      border-color: rgba(136, 167, 255, 0.24);
      color: #dce7ff;
    }

    .action:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 220, 160, 0.3);
      filter: brightness(1.05);
    }

    .embedded-browser {
      width: 100vw;
      max-width: 100vw;
      margin: 0 calc(50% - 50vw) 0;
      border: 1px solid rgba(255, 220, 160, 0.16);
      border-radius: 24px 24px 0 0;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(18, 20, 28, 0.96), rgba(9, 10, 16, 0.92));
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
      min-height: calc(100dvh - 24px);
    }

    .embedded-browser[hidden] {
      display: none;
    }

    .embedded-browser-top {
      position: absolute;
      top: 20px;
      right: 96px;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0;
      background: transparent;
      pointer-events: none;
    }

    .embedded-browser-close {
      min-width: 40px;
      min-height: 40px;
      border: 1px solid rgba(255, 220, 160, 0.18);
      border-radius: 999px;
      background: rgba(18, 20, 28, 0.72);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
      color: #f1ddba;
      font-family: inherit;
      font-size: 20px;
      font-weight: 800;
      cursor: pointer;
      transition: opacity 0.2s ease, filter 0.2s ease;
      pointer-events: auto;
    }

    .embedded-browser-close:hover {
      opacity: 0.8;
      filter: brightness(1.08);
    }

    .embedded-browser-frame {
      width: 100%;
      height: calc(100dvh - 24px);
      display: block;
      border: 0;
      background: #050607;
    }

    body.embedded-browser-fullscreen .embedded-browser {
      position: fixed;
      inset: 0;
      z-index: 50;
      width: 100vw;
      max-width: 100vw;
      margin: 0;
      border: 0;
      border-radius: 0;
      min-height: 100dvh;
      background: rgba(5, 6, 8, 0.98);
      box-shadow: none;
      backdrop-filter: blur(18px);
    }

    body.embedded-browser-fullscreen .embedded-browser-frame {
      height: 100dvh;
    }

    body.embedded-browser-fullscreen .embedded-browser-top {
      top: 18px;
      right: 24px;
    }

    .primary {
      background: linear-gradient(135deg, rgba(165, 111, 37, 0.92), rgba(232, 180, 103, 0.88));
      border-color: rgba(255, 221, 170, 0.28);
    }

    .neutral {
      background: linear-gradient(135deg, rgba(34, 34, 35, 0.9), rgba(71, 71, 74, 0.82));
    }

    .accent {
      background: linear-gradient(135deg, rgba(113, 37, 28, 0.92), rgba(196, 84, 61, 0.88));
      border-color: rgba(255, 175, 155, 0.26);
    }

    .instagram {
      background: linear-gradient(135deg, #5b2be0, #d94f7a, #f2a34a);
      border-color: rgba(255, 198, 147, 0.28);
    }

    .discord {
      background: linear-gradient(135deg, #3448c5, #6f86ff);
      border-color: rgba(158, 177, 255, 0.28);
    }

    .legal {
      background: linear-gradient(135deg, #9d6a24, #ddb15d);
      border-color: rgba(255, 221, 170, 0.28);
    }

    .whatsapp {
      background: linear-gradient(135deg, #128c52, #32d36f);
      border-color: rgba(167, 255, 198, 0.28);
    }

    .contact-fab {
      position: fixed;
      left: 24px;
      bottom: 16px;
      z-index: 60;
      display: flex;
      flex-direction: column-reverse;
      align-items: stretch;
      gap: 10px;
      width: 220px;
      padding: 12px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(18, 20, 28, 0.92), rgba(9, 10, 16, 0.84));
      border: 1px solid rgba(225, 191, 110, 0.24);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    body.embedded-browser-active .contact-fab {
      display: none !important;
    }

    body.embedded-browser-active .live-support {
      display: none !important;
    }

    .contact-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      padding: 12px 14px;
      border: 1px solid rgba(225, 191, 110, 0.14);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.03);
      color: #f5dfb0;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: none;
      backdrop-filter: none;
      text-transform: none;
      letter-spacing: 0;
    }

    .contact-menu {
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transform: translateY(12px);
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
    }

    .contact-fab.open .contact-menu {
      opacity: 1;
      max-height: 280px;
      transform: translateY(0);
      pointer-events: auto;
    }

    .contact-link {
      min-height: 52px;
      justify-content: space-between;
      padding: 12px 14px;
      border-radius: 16px;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: none;
    }

    .contact-header-icon,
    .contact-action-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 13px;
      background: rgba(225, 191, 110, 0.12);
      border: 1px solid rgba(225, 191, 110, 0.18);
      color: #f5dfb0;
      font-size: 18px;
    }

    .contact-action-icon {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.12);
      border: 0;
      color: #fff;
      font-size: 17px;
    }

    .contact-label,
    .contact-link-text {
      display: flex;
      flex: 1;
      flex-direction: column;
      line-height: 1.1;
      text-align: left;
    }

    .contact-label small,
    .contact-link-text small {
      margin-top: 4px;
      font-size: 11px;
      font-weight: 500;
      opacity: 0.72;
    }

    @media (max-width: 820px) {
      body {
        overflow-y: auto;
      }

      .shell {
        height: auto;
        min-height: 100vh;
        padding-top: 16px;
        justify-content: flex-start;
      }

      .shell-topbar {
        justify-content: center;
      }

      .feature-grid,
      .actions {
        grid-template-columns: 1fr;
      }

      .server h2 {
        font-size: 26px;
      }
    }

    @media (max-width: 520px) {
      .intro-logo {
        width: min(320px, 74vw);
      }

      .intro-loader {
        width: min(220px, 58vw);
        margin-top: 14px;
      }

      .shell {
        width: min(100% - 18px, 980px);
        padding-top: 82px;
        padding-bottom: 78px;
        justify-content: flex-start;
      }

      .shell-topbar {
        margin-bottom: 8px;
      }

      .partner-pill {
        width: 100%;
        min-height: 76px;
        padding: 12px 14px;
        gap: 4px;
        border-radius: 18px;
      }

      .partner-pill-eyebrow {
        font-size: 10px;
        letter-spacing: 0.16em;
      }

      .partner-pill-title {
        font-size: 18px;
      }

      .partner-pill-subtitle {
        max-width: none;
        font-size: 11px;
        line-height: 1.3;
      }

      .lang-switcher {
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 12;
        flex-direction: column;
        gap: 6px;
        padding: 6px;
        width: 46px;
        max-width: none;
        margin-top: 0;
        justify-content: flex-start;
        align-items: center;
        border-radius: 22px;
        overflow-x: visible;
        max-height: 46px;
        transition: max-height 0.22s ease, padding 0.22s ease;
      }

      .lang-switcher.mobile-open {
        max-height: 620px;
      }

      .lang-btn {
        width: 34px;
        height: 34px;
        display: none;
      }

      .lang-btn.active {
        display: inline-flex;
      }

      .lang-switcher.mobile-open .lang-btn {
        display: inline-flex;
      }

      .lang-flag {
        width: 22px;
        height: 22px;
      }

      .server p {
        font-size: 12px;
      }

      .server {
        padding: 11px;
      }

      .server-top,
      .meta-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .meta-row span {
        text-align: left;
      }

      .action {
        min-height: 44px;
        font-size: 12px;
        padding: 9px 10px;
        border-radius: 14px;
        letter-spacing: 0.02em;
        line-height: 1.2;
      }

      .actions {
        position: relative;
        z-index: 14;
        margin-bottom: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .actions .action:first-child {
        grid-column: 1 / -1;
      }

      .action.new-game {
        margin-top: 12px;
      }

      .action.new-game::before {
        top: -13px;
        font-size: 9px;
      }

      .embedded-browser-top {
        top: 16px;
        right: 64px;
        padding: 0;
      }

      .embedded-browser {
        width: 100vw;
        max-width: 100vw;
        margin: 0 calc(50% - 50vw) 0;
        border-radius: 20px 20px 0 0;
        min-height: calc(100dvh - 12px);
      }

      .embedded-browser-frame {
        height: calc(100dvh - 12px);
        min-height: 0;
      }

      .web-preview-title {
        font-size: 24px;
      }

      .web-preview-subtitle {
        font-size: 12px;
      }

      .contact-fab {
        left: 10px;
        right: 10px;
        bottom: 8px;
        width: auto;
        z-index: 58;
        padding: 8px;
        border-radius: 16px;
        gap: 8px;
      }

      .contact-trigger {
        padding: 10px 12px;
        border-radius: 14px;
      }

      .contact-header-icon,
      .contact-action-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 14px;
      }

      .contact-label {
        gap: 2px;
      }

      .contact-label small,
      .contact-link-text small {
        display: none;
      }

      .contact-link {
        min-height: 42px;
        padding: 10px 12px;
        border-radius: 14px;
      }

      .contact-link-text {
        font-size: 13px;
      }

      .contact-menu {
        gap: 8px;
      }

      .mute-toggle {
        top: auto;
        right: 12px;
        bottom: 12px;
        transform: none;
        min-width: 52px;
        min-height: 52px;
      }

      .mute-toggle:hover {
        transform: scale(1.04);
      }
    }
