/* === index.html === */
:root {
      --green: #007a1f;
      --green-dark: #005f18;
      --green-light: #e9f7ee;
      --black: #0b0f0d;
      --dark: #151a17;
      --white: #ffffff;
      --gray: #f5f7f6;
      --text: #202420;
      --muted: #667067;
      --border: #dfe6e1;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .top-notice {
      background: var(--green-dark);
      color: var(--white);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-notice__inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 7px 0;
    }

    .top-notice__left,
    .top-notice__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-notice__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
    }

    .top-notice__link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .site-header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-header__logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
    }

    .site-header__logo img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 600;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(0, 122, 31, 0.24);
    }

    .btn--primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--border);
    }

    .btn--outline:hover {
      border-color: var(--green);
      background: var(--green-light);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-dark);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    }

    .btn--white:hover {
      transform: translateY(-1px);
      background: #f4fff7;
    }

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .btn--ghost-white:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--dark);
      position: relative;
      display: block;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--dark);
    }

    .mobile-menu-btn span::before {
      top: -7px;
    }

    .mobile-menu-btn span::after {
      top: 7px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 20%, rgba(0, 122, 31, 0.14), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(0, 122, 31, 0.12), transparent 32%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
      padding: 64px 0 56px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: auto -140px -220px auto;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: rgba(0, 122, 31, 0.08);
      pointer-events: none;
    }

    .hero__inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
      align-items: center;
      gap: 42px;
    }

    .hero__content {
      max-width: 660px;
    }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero__label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .hero h1 {
      margin: 0 0 18px;
      color: var(--black);
      font-size: clamp(36px, 5vw, 62px);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .hero__text {
      margin: 0 0 26px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero__text strong {
      color: var(--dark);
    }

    .hero__bonus {
      display: flex;
      align-items: center;
      gap: 16px;
      width: fit-content;
      max-width: 100%;
      margin: 0 0 28px;
      padding: 16px 18px;
      border: 1px solid rgba(0, 122, 31, 0.22);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .hero__bonus-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 52px;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: var(--green);
      color: var(--white);
      font-size: 24px;
      font-weight: 800;
    }

    .hero__bonus-title {
      margin: 0;
      color: var(--black);
      font-size: 18px;
      font-weight: 800;
    }

    .hero__bonus-note {
      margin: 3px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .hero__trust {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .hero__trust span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--dark);
      font-size: 13px;
      font-weight: 700;
    }

    .hero__media {
      position: relative;
    }

    .hero__card {
      position: relative;
      padding: 12px;
      border-radius: 28px;
      background: var(--white);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
    }

    .hero__card::before {
      content: "";
      position: absolute;
      inset: -10px;
      z-index: -1;
      border-radius: 34px;
      background: linear-gradient(135deg, rgba(0, 122, 31, 0.38), rgba(0, 0, 0, 0.08));
    }

    .hero__screenshot {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      object-position: top center;
      border-radius: 20px;
    }

    .hero__floating {
      position: absolute;
      left: -24px;
      bottom: 28px;
      max-width: 260px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(11, 15, 13, 0.92);
      color: var(--white);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    }

    .hero__floating-title {
      margin: 0 0 4px;
      font-size: 15px;
      font-weight: 800;
    }

    .hero__floating-text {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 13px;
      line-height: 1.45;
    }

    .hero__note {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
    }

    .overview {
      padding: 72px 0;
      background: var(--white);
    }

    .section-heading {
      max-width: 760px;
      margin: 0 0 34px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section-heading h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .section-heading p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .overview__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      gap: 28px;
      align-items: stretch;
    }

    .overview__table-card,
    .overview__rating-card {
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
      overflow: hidden;
    }

    .overview__table {
      width: 100%;
      border-collapse: collapse;
    }

    .overview__table tr {
      border-bottom: 1px solid var(--border);
    }

    .overview__table tr:last-child {
      border-bottom: 0;
    }

    .overview__table th,
    .overview__table td {
      padding: 17px 20px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
    }

    .overview__table th {
      width: 34%;
      color: var(--dark);
      background: #f8faf8;
      font-weight: 800;
    }

    .overview__table td {
      color: var(--muted);
    }

    .overview__table td strong {
      color: var(--dark);
    }

    .overview__rating-card {
      padding: 26px;
      background:
        radial-gradient(circle at 90% 10%, rgba(0, 122, 31, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    }

    .overview__score {
      display: flex;
      align-items: flex-end;
      gap: 10px;
      margin-bottom: 18px;
    }

    .overview__score-main {
      color: var(--black);
      font-size: 54px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.05em;
    }

    .overview__score-max {
      margin-bottom: 7px;
      color: var(--muted);
      font-size: 18px;
      font-weight: 800;
    }

    .overview__rating-title {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
      font-weight: 900;
    }

    .overview__rating-text {
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .overview__features {
      display: grid;
      gap: 10px;
      margin-bottom: 24px;
    }

    .overview__feature {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 700;
    }

    .overview__feature::before {
      content: "";
      width: 9px;
      height: 9px;
      flex: 0 0 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .overview__note {
      margin: 18px 0 0;
      padding: 14px 16px;
      border-radius: 16px;
      background: #f3f7f4;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .bonus-section {
      padding: 76px 0;
      background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 28%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .bonus-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
      gap: 30px;
      align-items: stretch;
    }

    .bonus-card {
      position: relative;
      overflow: hidden;
      min-height: 100%;
      padding: 34px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      box-shadow: 0 24px 58px rgba(0, 122, 31, 0.25);
    }

    .bonus-card::after {
      content: "";
      position: absolute;
      right: -72px;
      bottom: -92px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      border: 34px solid rgba(255, 255, 255, 0.12);
    }

    .bonus-card__label {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .bonus-card h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 16px;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .bonus-card__text {
      position: relative;
      z-index: 1;
      max-width: 560px;
      margin: 0 0 28px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .bonus-offer {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
    }

    .bonus-offer__main {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .bonus-offer__value {
      margin: 0;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .bonus-offer__note {
      margin: 8px 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
    }

    .bonus-card__actions {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .bonus-details {
      display: grid;
      gap: 18px;
    }

    .bonus-conditions {
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
      overflow: hidden;
    }

    .bonus-conditions__head {
      padding: 22px 24px;
      border-bottom: 1px solid var(--border);
      background: #f8faf8;
    }

    .bonus-conditions__head h3 {
      margin: 0 0 6px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .bonus-conditions__head p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .bonus-conditions__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bonus-condition {
      padding: 18px 20px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .bonus-condition:nth-child(2n) {
      border-right: 0;
    }

    .bonus-condition:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

    .bonus-condition__label {
      margin: 0 0 6px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .bonus-condition__value {
      margin: 0;
      color: var(--black);
      font-size: 17px;
      font-weight: 900;
    }

    .bonus-warning {
      padding: 20px 22px;
      border: 1px solid rgba(0, 122, 31, 0.22);
      border-radius: 22px;
      background: var(--green-light);
    }

    .bonus-warning h3 {
      margin: 0 0 8px;
      color: var(--green-dark);
      font-size: 18px;
      line-height: 1.3;
    }

    .bonus-warning p {
      margin: 0;
      color: var(--text);
      font-size: 14px;
      line-height: 1.65;
    }

    .registration {
      padding: 76px 0;
      background: var(--white);
    }

    .registration__layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
      gap: 34px;
      align-items: start;
    }

    .registration__intro {
      position: sticky;
      top: 120px;
    }

    .registration__intro h2 {
      margin: 0 0 16px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .registration__intro p {
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .registration__notice {
      margin-top: 22px;
      padding: 18px 20px;
      border-left: 4px solid var(--green);
      border-radius: 18px;
      background: var(--green-light);
    }

    .registration__notice strong {
      display: block;
      margin-bottom: 6px;
      color: var(--green-dark);
      font-size: 15px;
    }

    .registration__notice p {
      margin: 0;
      color: var(--text);
      font-size: 14px;
      line-height: 1.6;
    }

    .steps {
      display: grid;
      gap: 16px;
      counter-reset: registration-step;
    }

    .step-card {
      position: relative;
      display: grid;
      grid-template-columns: 62px minmax(0, 1fr);
      gap: 18px;
      padding: 22px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
      counter-increment: registration-step;
    }

    .step-card::before {
      content: counter(registration-step);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: var(--green);
      color: var(--white);
      font-size: 22px;
      font-weight: 900;
    }

    .step-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 21px;
      line-height: 1.3;
    }

    .step-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .step-card p strong {
      color: var(--dark);
    }

    .registration__requirements {
      margin-top: 22px;
      padding: 24px;
      border-radius: 24px;
      background: #f8faf8;
      border: 1px solid var(--border);
    }

    .registration__requirements h3 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .requirements-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .requirements-list li {
      position: relative;
      padding-left: 22px;
      color: var(--text);
      font-size: 15px;
      line-height: 1.5;
    }

    .requirements-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .login-section {
      padding: 76px 0;
      background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .login-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
      gap: 30px;
      align-items: stretch;
    }

    .login-card {
      padding: 34px;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .login-card h2 {
      margin: 0 0 16px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .login-card__text {
      margin: 0 0 26px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .login-list {
      display: grid;
      gap: 14px;
      margin: 0 0 28px;
      padding: 0;
      list-style: none;
    }

    .login-list li {
      display: grid;
      grid-template-columns: 38px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
    }

    .login-list__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: var(--green-light);
      color: var(--green-dark);
      font-weight: 900;
    }

    .login-list strong {
      display: block;
      margin-bottom: 3px;
      color: var(--black);
      font-size: 16px;
    }

    .login-list span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .login-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .login-help {
      display: grid;
      gap: 16px;
    }

    .login-help-card {
      padding: 24px;
      border-radius: 24px;
      background: var(--black);
      color: var(--white);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
    }

    .login-help-card--light {
      background: var(--green-light);
      color: var(--text);
      border: 1px solid rgba(0, 122, 31, 0.18);
      box-shadow: none;
    }

    .login-help-card h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.25;
    }

    .login-help-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      line-height: 1.65;
    }

    .login-help-card--light h3 {
      color: var(--green-dark);
    }

    .login-help-card--light p {
      color: var(--text);
    }

    .login-mini-table {
      width: 100%;
      margin-top: 18px;
      border-collapse: collapse;
    }

    .login-mini-table tr {
      border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .login-mini-table th,
    .login-mini-table td {
      padding: 12px 0;
      text-align: left;
      vertical-align: top;
      font-size: 14px;
    }

    .login-mini-table th {
      width: 38%;
      color: rgba(255, 255, 255, 0.74);
      font-weight: 700;
    }

    .login-mini-table td {
      color: var(--white);
      font-weight: 800;
    }

    .games-section {
      padding: 76px 0;
      background: var(--white);
    }

    .games-section__top {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }

    .games-section__text h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .games-section__text p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .games-categories {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .games-categories span {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 8px 13px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
    }

    .games-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .game-card {
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      background: var(--black);
      box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
      transition: 0.22s ease;
    }

    .game-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
    }

    .game-card__image {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
    }

    .game-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.28s ease;
    }

    .game-card:hover .game-card__image img {
      transform: scale(1.05);
    }

    .game-card__image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.76) 100%);
    }

    .game-card__content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      padding: 16px;
      color: var(--white);
    }

    .game-card__title {
      margin: 0 0 4px;
      font-size: 16px;
      line-height: 1.25;
      font-weight: 900;
    }

    .game-card__provider {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 13px;
      font-weight: 700;
    }

    .games-info {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
      gap: 18px;
      margin-top: 28px;
    }

    .games-note,
    .provider-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .games-note h3,
    .provider-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .games-note p,
    .provider-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .provider-card {
      display: flex;
      flex-direction: column;
      gap: 16px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .provider-card__logos {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .provider-card__logos img {
      max-width: 132px;
      max-height: 42px;
      object-fit: contain;
    }

    .games-cta {
      margin-top: 28px;
      display: flex;
      justify-content: center;
    }

    .sport-section {
      padding: 76px 0;
      background:
        radial-gradient(circle at 12% 16%, rgba(0, 122, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .sport-layout {
      display: grid;
      grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
      gap: 36px;
      align-items: center;
    }

    .sport-media {
      position: relative;
    }

    .sport-phone {
      max-width: 340px;
      margin: 0 auto;
      padding: 12px;
      border-radius: 34px;
      background: var(--black);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
    }

    .sport-phone img {
      width: 100%;
      border-radius: 24px;
      aspect-ratio: 9 / 18;
      object-fit: cover;
      object-position: top center;
    }

    .sport-badge {
      position: absolute;
      right: 20px;
      bottom: 34px;
      max-width: 220px;
      padding: 16px 18px;
      border-radius: 18px;
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
    }

    .sport-badge strong {
      display: block;
      margin-bottom: 5px;
      color: var(--black);
      font-size: 15px;
    }

    .sport-badge span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .sport-content h2 {
      margin: 0 0 16px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .sport-content__text {
      margin: 0 0 26px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .sport-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-bottom: 28px;
    }

    .sport-card {
      padding: 22px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .sport-card__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      margin-bottom: 14px;
      border-radius: 15px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
    }

    .sport-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 19px;
      line-height: 1.3;
    }

    .sport-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .sport-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .sport-note {
      margin-top: 22px;
      padding: 16px 18px;
      border-radius: 18px;
      background: var(--green-light);
      color: var(--text);
      font-size: 14px;
      line-height: 1.6;
    }

    .app-section {
      padding: 76px 0;
      background: var(--white);
    }

    .app-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
      gap: 34px;
      align-items: center;
    }

    .app-content h2 {
      margin: 0 0 16px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .app-content__text {
      margin: 0 0 26px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .app-features {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-bottom: 28px;
    }

    .app-feature {
      padding: 20px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: #f8faf8;
    }

    .app-feature__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      margin-bottom: 13px;
      border-radius: 14px;
      background: var(--green);
      color: var(--white);
      font-size: 19px;
      font-weight: 900;
    }

    .app-feature h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.3;
    }

    .app-feature p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .app-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .app-note {
      margin-top: 22px;
      padding: 16px 18px;
      border-radius: 18px;
      background: var(--green-light);
      color: var(--text);
      font-size: 14px;
      line-height: 1.6;
    }

    .app-visual {
      position: relative;
      padding: 28px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 82% 12%, rgba(0, 122, 31, 0.20), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
      border: 1px solid var(--border);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.07);
    }

    .app-device {
      max-width: 310px;
      margin: 0 auto;
      padding: 12px;
      border-radius: 34px;
      background: var(--black);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
    }

    .app-device__screen {
      min-height: 540px;
      overflow: hidden;
      border-radius: 24px;
      background: linear-gradient(180deg, #07130b 0%, #0f2415 100%);
      color: var(--white);
    }

    .app-device__top {
      padding: 18px 16px 14px;
      background: var(--green-dark);
    }

    .app-device__brand {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .app-device__brand strong {
      font-size: 15px;
      line-height: 1.2;
    }

    .app-device__badge {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 5px 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 11px;
      font-weight: 800;
    }

    .app-device__bonus {
      margin: 16px 16px 14px;
      padding: 16px;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--green) 0%, #11a63b 100%);
    }

    .app-device__bonus span {
      display: block;
      margin-bottom: 5px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      opacity: 0.78;
    }

    .app-device__bonus strong {
      display: block;
      font-size: 23px;
      line-height: 1.12;
    }

    .app-device__menu {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      padding: 0 16px 16px;
    }

    .app-device__menu-item {
      min-height: 78px;
      padding: 13px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .app-device__menu-item span {
      display: block;
      margin-bottom: 7px;
      color: rgba(255, 255, 255, 0.64);
      font-size: 12px;
    }

    .app-device__menu-item strong {
      display: block;
      font-size: 15px;
      line-height: 1.25;
    }

    .app-device__cta {
      margin: 0 16px 16px;
      display: block;
      padding: 14px 16px;
      border-radius: 999px;
      background: var(--white);
      color: var(--green-dark);
      text-align: center;
      font-size: 14px;
      font-weight: 900;
    }

    .app-device__legal {
      padding: 0 16px 18px;
      color: rgba(255, 255, 255, 0.58);
      font-size: 11px;
      line-height: 1.45;
    }

    .payments-section {
      padding: 76px 0;
      background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .payments-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
      gap: 30px;
      align-items: start;
    }

    .payments-main {
      min-width: 0;
    }

    .payments-main h2 {
      margin: 0 0 16px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .payments-main__text {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .payments-table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .payments-table {
      width: 100%;
      border-collapse: collapse;
    }

    .payments-table thead {
      background: var(--black);
      color: var(--white);
    }

    .payments-table th,
    .payments-table td {
      padding: 16px 18px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
    }

    .payments-table th {
      font-weight: 900;
    }

    .payments-table tbody tr {
      border-bottom: 1px solid var(--border);
    }

    .payments-table tbody tr:last-child {
      border-bottom: 0;
    }

    .payments-table td {
      color: var(--muted);
    }

    .payments-table td strong {
      color: var(--black);
    }

    .payment-method {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 900;
    }

    .payment-status {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 5px 9px;
      border-radius: 999px;
      background: #f2f5f3;
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
    }

    .payment-status--check {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .payments-side {
      display: grid;
      gap: 16px;
    }

    .payment-info-card {
      padding: 24px;
      border-radius: 24px;
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .payment-info-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .payment-info-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .payment-info-card--dark h3 {
      color: var(--white);
    }

    .payment-info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .payment-info-card--dark p {
      color: rgba(255, 255, 255, 0.74);
    }

    .payment-checklist {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .payment-checklist li {
      position: relative;
      padding-left: 22px;
      color: var(--text);
      font-size: 14px;
      line-height: 1.5;
    }

    .payment-info-card--dark .payment-checklist li {
      color: rgba(255, 255, 255, 0.84);
    }

    .payment-checklist li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .payments-warning {
      margin-top: 22px;
      padding: 18px 20px;
      border-radius: 20px;
      background: var(--green-light);
      border: 1px solid rgba(0, 122, 31, 0.20);
      color: var(--text);
      font-size: 14px;
      line-height: 1.65;
    }

    .payments-warning strong {
      color: var(--green-dark);
    }

    .security-section {
      padding: 76px 0;
      background: var(--white);
    }

    .security-layout {
      display: grid;
      grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1fr);
      gap: 34px;
      align-items: start;
    }

    .security-card-main {
      position: sticky;
      top: 120px;
      padding: 30px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.16), transparent 32%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
      color: var(--white);
      box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
    }

    .security-card-main__badge {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .security-card-main h2 {
      margin: 0 0 16px;
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .security-card-main p {
      margin: 0 0 24px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 16px;
      line-height: 1.65;
    }

    .security-age {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .security-age__mark {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 58px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--white);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
    }

    .security-age strong {
      display: block;
      margin-bottom: 3px;
      color: var(--white);
      font-size: 17px;
    }

    .security-age span {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      line-height: 1.45;
    }

    .security-logos {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .security-logo-box {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 118px;
      min-height: 52px;
      padding: 10px 14px;
      border-radius: 16px;
      background: var(--white);
    }

    .security-logo-box img {
      max-width: 104px;
      max-height: 32px;
      object-fit: contain;
    }

    .security-content {
      display: grid;
      gap: 18px;
    }

    .security-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .security-item {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .security-item__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      margin-bottom: 14px;
      border-radius: 16px;
      background: var(--green);
      color: var(--white);
      font-size: 18px;
      font-weight: 900;
    }

    .security-item h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 20px;
      line-height: 1.3;
    }

    .security-item p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .responsible-box {
      padding: 26px;
      border: 1px solid rgba(0, 122, 31, 0.22);
      border-radius: 24px;
      background: var(--green-light);
    }

    .responsible-box h3 {
      margin: 0 0 12px;
      color: var(--green-dark);
      font-size: 24px;
      line-height: 1.25;
    }

    .responsible-box p {
      margin: 0 0 16px;
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .responsible-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 18px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .responsible-list li {
      position: relative;
      padding-left: 22px;
      color: var(--text);
      font-size: 14px;
      line-height: 1.5;
    }

    .responsible-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .security-note {
      padding: 20px 22px;
      border-radius: 22px;
      background: var(--black);
      color: rgba(255, 255, 255, 0.76);
      font-size: 14px;
      line-height: 1.65;
    }

    .security-note strong {
      color: var(--white);
    }

    .pros-cons-section {
      padding: 76px 0;
      background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .pros-cons-head {
      max-width: 760px;
      margin: 0 auto 36px;
      text-align: center;
    }

    .pros-cons-head h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .pros-cons-head p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .pros-cons-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .pros-cons-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .pros-cons-card__header {
      padding: 24px 26px;
      border-bottom: 1px solid var(--border);
    }

    .pros-cons-card__header--pros {
      background: var(--green-light);
    }

    .pros-cons-card__header--cons {
      background: #f8faf8;
    }

    .pros-cons-card__header h3 {
      margin: 0 0 7px;
      color: var(--black);
      font-size: 25px;
      line-height: 1.25;
    }

    .pros-cons-card__header p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .pros-cons-list {
      display: grid;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .pros-cons-list li {
      position: relative;
      padding: 18px 24px 18px 54px;
      border-bottom: 1px solid var(--border);
      color: var(--text);
      font-size: 15px;
      line-height: 1.6;
    }

    .pros-cons-list li:last-child {
      border-bottom: 0;
    }

    .pros-cons-list li::before {
      position: absolute;
      left: 24px;
      top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
    }

    .pros-cons-list--pros li::before {
      content: "+";
      background: var(--green);
      color: var(--white);
    }

    .pros-cons-list--cons li::before {
      content: "!";
      background: #edf1ef;
      color: var(--dark);
    }

    .pros-cons-list strong {
      color: var(--black);
    }

    .pros-cons-bottom {
      margin-top: 26px;
      padding: 22px 24px;
      border-radius: 24px;
      background: var(--black);
      color: rgba(255, 255, 255, 0.76);
      font-size: 15px;
      line-height: 1.65;
    }

    .pros-cons-bottom strong {
      color: var(--white);
    }

    .faq-section {
      padding: 76px 0;
      background: var(--white);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.15fr);
      gap: 34px;
      align-items: start;
    }

    .faq-intro {
      position: sticky;
      top: 120px;
    }

    .faq-intro h2 {
      margin: 0 0 16px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .faq-intro p {
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .faq-intro__box {
      padding: 20px;
      border-radius: 22px;
      background: var(--green-light);
      border: 1px solid rgba(0, 122, 31, 0.18);
    }

    .faq-intro__box strong {
      display: block;
      margin-bottom: 7px;
      color: var(--green-dark);
      font-size: 16px;
    }

    .faq-intro__box p {
      margin: 0;
      color: var(--text);
      font-size: 14px;
      line-height: 1.6;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      display: block;
      padding: 20px 58px 20px 22px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "–";
    }

    .faq-item__answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-item__answer p {
      margin: 0;
    }

    .faq-item__answer strong {
      color: var(--black);
    }

    .final-cta {
      padding: 76px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
    }

    .final-cta__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
      gap: 28px;
      align-items: center;
    }

    .final-cta__content {
      max-width: 780px;
    }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .final-cta h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .final-cta__box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .final-cta__bonus {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .final-cta__small {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      line-height: 1.55;
    }

    .final-cta .btn {
      width: 100%;
    }

    .final-cta .btn--white {
      min-height: 50px;
    }

    .site-footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__main {
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) repeat(3, minmax(160px, 1fr));
      gap: 34px;
      padding: 56px 0 38px;
    }

    .site-footer__brand img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
      margin-bottom: 18px;
    }

    .site-footer__brand p {
      margin: 0 0 18px;
      max-width: 360px;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer__age {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer__col h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      line-height: 1.3;
    }

    .site-footer__links {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-footer__links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      line-height: 1.4;
      transition: 0.2s ease;
    }

    .site-footer__links a:hover {
      color: var(--white);
    }

    .site-footer__notice {
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 0;
      font-size: 13px;
    }

    .site-footer__bottom-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .site-footer__bottom-links a {
      color: rgba(255, 255, 255, 0.64);
    }

    .site-footer__bottom-links a:hover {
      color: var(--white);
    }

    @media (max-width: 1080px) {
      .games-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 980px) {
      .top-notice__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .main-nav,
      .header-actions .btn--outline {
        display: none;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }

      .site-header__logo img {
        width: 180px;
      }

      .hero,
      .overview,
      .bonus-section,
      .registration,
      .login-section,
      .games-section,
      .sport-section,
      .app-section,
      .payments-section,
      .security-section,
      .pros-cons-section,
      .faq-section,
      .final-cta {
        padding-top: 56px;
        padding-bottom: 56px;
      }

      .hero__inner,
      .overview__grid,
      .bonus-layout,
      .registration__layout,
      .login-layout,
      .games-section__top,
      .sport-layout,
      .app-layout,
      .payments-layout,
      .security-layout,
      .faq-layout,
      .final-cta__inner {
        grid-template-columns: 1fr;
      }

      .registration__intro,
      .security-card-main,
      .faq-intro {
        position: static;
      }

      .games-categories {
        justify-content: flex-start;
      }

      .games-info,
      .pros-cons-grid {
        grid-template-columns: 1fr;
      }

      .sport-media {
        order: 2;
      }

      .sport-content {
        order: 1;
      }

      .sport-badge {
        right: 50%;
        transform: translateX(50%);
      }

      .app-visual {
        max-width: 520px;
      }

      .pros-cons-head {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
      }

      .site-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .games-grid,
      .sport-cards,
      .app-features,
      .security-grid,
      .responsible-list {
        grid-template-columns: 1fr;
      }

      .payments-table-card {
        overflow-x: auto;
      }

      .payments-table {
        min-width: 720px;
      }
    }

    @media (max-width: 640px) {
      .sport-phone {
        max-width: 280px;
      }

      .sport-badge {
        position: static;
        transform: none;
        max-width: none;
        margin-top: 14px;
      }

      .app-device {
        max-width: 280px;
      }

      .app-device__screen {
        min-height: 500px;
      }

      .site-footer__main {
        grid-template-columns: 1fr;
        padding: 42px 0 30px;
      }

      .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .top-notice {
        font-size: 12px;
      }

      .top-notice__left,
      .top-notice__right {
        gap: 8px;
      }

      .site-header__inner {
        min-height: 72px;
        gap: 12px;
      }

      .site-header__logo img {
        width: 150px;
      }

      .header-actions .btn--primary {
        display: none;
      }

      .hero,
      .overview,
      .bonus-section,
      .registration,
      .login-section,
      .games-section,
      .sport-section,
      .app-section,
      .payments-section,
      .security-section,
      .pros-cons-section,
      .faq-section,
      .final-cta {
        padding-top: 44px;
        padding-bottom: 44px;
      }

      .hero__text {
        font-size: 16px;
      }

      .hero__bonus {
        align-items: flex-start;
        width: 100%;
      }

      .hero__actions .btn,
      .bonus-card__actions .btn,
      .login-actions .btn,
      .games-cta .btn,
      .sport-actions .btn,
      .app-actions .btn {
        width: 100%;
      }

      .hero__floating {
        position: static;
        max-width: none;
        margin-top: 12px;
      }

      .hero__card {
        border-radius: 22px;
      }

      .hero__screenshot {
        border-radius: 16px;
      }

      .overview__table-card {
        overflow-x: auto;
      }

      .overview__table {
        min-width: 560px;
      }

      .overview__table th,
      .overview__table td {
        padding: 14px 16px;
        font-size: 14px;
      }

      .overview__rating-card,
      .bonus-card,
      .login-card,
      .security-card-main,
      .security-item,
      .responsible-box,
      .final-cta__box {
        padding: 22px;
      }

      .overview__score-main {
        font-size: 46px;
      }

      .bonus-conditions__grid,
      .requirements-list {
        grid-template-columns: 1fr;
      }

      .bonus-condition {
        border-right: 0;
      }

      .bonus-condition:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--border);
      }

      .bonus-condition:last-child {
        border-bottom: 0;
      }

      .step-card,
      .login-list li {
        grid-template-columns: 1fr;
      }

      .registration__requirements,
      .payment-info-card {
        padding: 20px;
      }

      .app-visual {
        padding: 20px;
      }

      .security-age {
        align-items: flex-start;
      }

      .pros-cons-card__header {
        padding: 22px;
      }

      .pros-cons-list li {
        padding: 16px 20px 16px 50px;
      }

      .pros-cons-list li::before {
        left: 20px;
        top: 18px;
      }

      .pros-cons-bottom {
        padding: 20px;
      }

      .faq-item summary {
        padding: 18px 54px 18px 20px;
        font-size: 16px;
      }

      .faq-item__answer {
        padding: 0 20px 18px;
      }
    }

/* === registrazione-betsport24.html === */
:root {
      --green: #007a1f;
      --green-dark: #005f18;
      --green-light: #e9f7ee;
      --black: #0b0f0d;
      --dark: #151a17;
      --white: #ffffff;
      --gray: #f5f7f6;
      --text: #202420;
      --muted: #667067;
      --border: #dfe6e1;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --container: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .top-notice {
      background: var(--green-dark);
      color: var(--white);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-notice__inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 7px 0;
    }

    .top-notice__left,
    .top-notice__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-notice__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
    }

    .top-notice__link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .site-header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-header__logo img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 600;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(0, 122, 31, 0.24);
    }

    .btn--primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--border);
    }

    .btn--outline:hover {
      border-color: var(--green);
      background: var(--green-light);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-dark);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    }

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .btn--ghost-white:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--dark);
      position: relative;
      display: block;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--dark);
    }

    .mobile-menu-btn span::before { top: -7px; }
    .mobile-menu-btn span::after { top: 7px; }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section-heading,
    .block-head {
      max-width: 850px;
      margin: 0 0 34px;
    }

    .section-heading h2,
    .block-head h2,
    .content-block h2,
    .sticky-intro h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .section-heading p,
    .block-head p,
    .content-block p,
    .sticky-intro > p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .inner-section {
      padding: 76px 0;
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0;
      background:
        radial-gradient(circle at 14% 16%, rgba(0, 122, 31, 0.16), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .page-hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
      gap: 42px;
      align-items: center;
    }

    .page-hero__content {
      max-width: 780px;
    }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero__label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .page-hero h1 {
      margin: 0 0 18px;
      color: var(--black);
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .page-hero__text {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
    }

    .registration-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      box-shadow: 0 28px 70px rgba(0, 122, 31, 0.28);
    }

    .registration-card::after {
      content: "";
      position: absolute;
      right: -64px;
      bottom: -72px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 28px solid rgba(255, 255, 255, 0.13);
    }

    .registration-card__label {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .registration-card strong {
      position: relative;
      z-index: 1;
      display: block;
      margin-bottom: 8px;
      font-size: 40px;
      line-height: 1.05;
      letter-spacing: -0.05em;
    }

    .registration-card p {
      position: relative;
      z-index: 1;
      margin: 0 0 24px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 18px;
      line-height: 1.45;
      font-weight: 700;
    }

    .registration-card__list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin: 0 0 26px;
      padding: 0;
      list-style: none;
    }

    .registration-card__list li {
      position: relative;
      padding-left: 22px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 15px;
      line-height: 1.5;
    }

    .registration-card__list li::before,
    .check-list li::before,
    .dark-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .registration-card__list li::before,
    .dark-list li::before {
      background: var(--white);
    }

    .registration-card .btn {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .summary-layout,
    .two-col-layout,
    .verification-layout,
    .deposit-layout,
    .mobile-layout,
    .mistakes-layout,
    .responsible-layout,
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
      gap: 28px;
      align-items: start;
    }

    .table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
    }

    .data-table tr {
      border-bottom: 1px solid var(--border);
    }

    .data-table tr:last-child {
      border-bottom: 0;
    }

    .data-table th,
    .data-table td {
      padding: 18px 20px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
      line-height: 1.55;
    }

    .data-table th {
      width: 34%;
      background: #f8faf8;
      color: var(--black);
      font-weight: 900;
    }

    .data-table td {
      color: var(--muted);
    }

    .data-table td strong {
      color: var(--black);
    }

    .side-stack {
      display: grid;
      gap: 16px;
    }

    .info-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .info-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .info-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .info-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .info-card--dark h3,
    .info-card--green h3 {
      color: var(--white);
    }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .info-card--dark p,
    .info-card--green p {
      color: rgba(255, 255, 255, 0.74);
    }

    .steps-section,
    .bonus-after-section,
    .mobile-section,
    .faq-section {
      background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .steps-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
      gap: 34px;
      align-items: start;
    }

    .sticky-intro {
      position: sticky;
      top: 120px;
    }

    .step-cards {
      display: grid;
      gap: 16px;
    }

    .step-card {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 18px;
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .step-card__number,
    .card-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: var(--green);
      color: var(--white);
      font-size: 18px;
      font-weight: 900;
    }

    .step-card h3,
    .feature-card h3,
    .mistake-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 21px;
      line-height: 1.3;
    }

    .step-card p,
    .feature-card p,
    .mistake-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box {
      display: grid;
      gap: 7px;
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 4px solid var(--green);
      border-radius: 20px;
      background: var(--green-light);
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box strong {
      color: var(--green-dark);
    }

    .feature-grid-3,
    .feature-grid-2,
    .mistake-grid,
    .responsible-grid {
      display: grid;
      gap: 18px;
    }

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

    .feature-grid-2,
    .mistake-grid,
    .responsible-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .mistake-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .feature-card--white {
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .feature-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .feature-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .feature-card--dark h3,
    .feature-card--green h3,
    .feature-card--dark p,
    .feature-card--green p {
      color: rgba(255, 255, 255, 0.82);
    }

    .feature-card--dark h3,
    .feature-card--green h3 {
      color: var(--white);
    }

    .card-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      font-size: 15px;
    }

    .check-list,
    .dark-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li,
    .dark-list li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.5;
    }

    .check-list li {
      color: var(--text);
    }

    .dark-list li {
      color: rgba(255, 255, 255, 0.84);
    }

    .verification-section,
    .deposit-section,
    .mistakes-section,
    .responsible-section {
      background: var(--white);
    }

    .verification-card,
    .bonus-card-large,
    .mobile-preview {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: 28px;
      background: var(--black);
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
    }

    .verification-card h3,
    .bonus-card-large h3,
    .mobile-preview h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .verification-card p,
    .bonus-card-large p,
    .mobile-preview p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      line-height: 1.65;
    }

    .bonus-card-large {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark), var(--green));
    }

    .bonus-card-large__value {
      display: block;
      margin: 14px 0 8px;
      color: var(--white);
      font-size: 36px;
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .deposit-methods {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .deposit-method {
      padding: 16px;
      border-radius: 18px;
      background: #f8faf8;
      border: 1px solid var(--border);
    }

    .deposit-method strong {
      display: block;
      margin-bottom: 5px;
      color: var(--black);
      font-size: 16px;
      line-height: 1.3;
    }

    .deposit-method span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .mobile-preview {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .mobile-screen {
      margin-top: 20px;
      padding: 16px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .mobile-screen__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-screen__row:last-child {
      border-bottom: 0;
    }

    .mobile-screen__row span {
      color: rgba(255, 255, 255, 0.66);
      font-size: 13px;
    }

    .mobile-screen__row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .mistake-card__number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 48px;
      height: 34px;
      margin-bottom: 16px;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 900;
    }

    .responsible-card {
      position: sticky;
      top: 120px;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
      color: var(--white);
      box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
    }

    .responsible-card .section-kicker {
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
    }

    .responsible-card h2 {
      margin: 0 0 16px;
      color: var(--white);
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .responsible-card p {
      margin: 0 0 24px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 16px;
      line-height: 1.65;
    }

    .age-box {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .age-mark {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 58px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--white);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
    }

    .age-box strong {
      display: block;
      margin-bottom: 3px;
      color: var(--white);
      font-size: 17px;
    }

    .age-box span {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      line-height: 1.45;
    }

    .faq-layout {
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      display: block;
      padding: 20px 58px 20px 22px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "–";
    }

    .faq-item__answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-item__answer p {
      margin: 0;
    }

    .faq-item__answer strong {
      color: var(--black);
    }

    .final-cta {
      padding: 76px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
    }

    .final-cta__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
      gap: 28px;
      align-items: center;
    }

    .final-cta__content {
      max-width: 780px;
    }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .final-cta h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .final-cta__box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .final-cta__bonus {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .final-cta .btn {
      width: 100%;
      margin-top: 10px;
    }

    .final-cta .btn:first-of-type {
      margin-top: 0;
    }

    .final-cta__small {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      line-height: 1.55;
    }

    .final-cta__points {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .final-cta__points span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__main {
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) repeat(3, minmax(160px, 1fr));
      gap: 34px;
      padding: 56px 0 38px;
    }

    .site-footer__brand img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
      margin-bottom: 18px;
    }

    .site-footer__brand p {
      margin: 0 0 18px;
      max-width: 360px;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer__age {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer__col h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      line-height: 1.3;
    }

    .site-footer__links {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-footer__links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      line-height: 1.4;
      transition: 0.2s ease;
    }

    .site-footer__links a:hover {
      color: var(--white);
    }

    .site-footer__notice {
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 0;
      font-size: 13px;
    }

    .site-footer__bottom-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .site-footer__bottom-links a {
      color: rgba(255, 255, 255, 0.64);
    }

    .site-footer__bottom-links a:hover {
      color: var(--white);
    }

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

    @media (max-width: 980px) {
      .top-notice__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .main-nav,
      .header-actions .btn--outline {
        display: none;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }

      .site-header__logo img {
        width: 180px;
      }

      .page-hero,
      .inner-section,
      .final-cta {
        padding: 56px 0;
      }

      .page-hero__inner,
      .summary-layout,
      .steps-layout,
      .two-col-layout,
      .verification-layout,
      .deposit-layout,
      .mobile-layout,
      .mistakes-layout,
      .responsible-layout,
      .faq-layout,
      .final-cta__inner {
        grid-template-columns: 1fr;
      }

      .sticky-intro,
      .responsible-card {
        position: static;
      }

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

      .site-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .feature-grid-2,
      .mistake-grid,
      .deposit-methods {
        grid-template-columns: 1fr;
      }

      .table-card {
        overflow-x: auto;
      }

      .data-table {
        min-width: 680px;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .site-header__inner {
        min-height: 72px;
        gap: 12px;
      }

      .site-header__logo img {
        width: 150px;
      }

      .header-actions .btn--primary {
        display: none;
      }

      .page-hero,
      .inner-section,
      .final-cta {
        padding: 44px 0;
      }

      .page-hero__text,
      .sticky-intro > p,
      .content-block p,
      .section-heading p,
      .block-head p {
        font-size: 16px;
      }

      .hero__actions .btn,
      .sticky-intro .btn {
        width: 100%;
      }

      .registration-card,
      .info-card,
      .feature-card,
      .mistake-card,
      .verification-card,
      .bonus-card-large,
      .mobile-preview,
      .responsible-card,
      .final-cta__box {
        padding: 22px;
      }

      .registration-card strong {
        font-size: 34px;
      }

      .step-card {
        grid-template-columns: 1fr;
        padding: 22px;
      }

      .age-box {
        align-items: flex-start;
      }

      .faq-item summary {
        padding: 18px 54px 18px 20px;
        font-size: 16px;
      }

      .faq-item__answer {
        padding: 0 20px 18px;
      }

      .site-footer__main {
        grid-template-columns: 1fr;
        padding: 42px 0 30px;
      }

      .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

/* === login-betsport24.html === */
:root {
      --green: #007a1f;
      --green-dark: #005f18;
      --green-light: #e9f7ee;
      --black: #0b0f0d;
      --dark: #151a17;
      --white: #ffffff;
      --gray: #f5f7f6;
      --text: #202420;
      --muted: #667067;
      --border: #dfe6e1;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --container: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .top-notice {
      background: var(--green-dark);
      color: var(--white);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-notice__inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 7px 0;
    }

    .top-notice__left,
    .top-notice__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-notice__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
    }

    .top-notice__link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .site-header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-header__logo img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 600;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(0, 122, 31, 0.24);
    }

    .btn--primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--border);
    }

    .btn--outline:hover {
      border-color: var(--green);
      background: var(--green-light);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-dark);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    }

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .btn--ghost-white:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--dark);
      position: relative;
      display: block;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--dark);
    }

    .mobile-menu-btn span::before { top: -7px; }
    .mobile-menu-btn span::after { top: 7px; }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section-heading,
    .block-head {
      max-width: 850px;
      margin: 0 0 34px;
    }

    .section-heading h2,
    .block-head h2,
    .content-block h2,
    .sticky-intro h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .section-heading p,
    .block-head p,
    .content-block p,
    .sticky-intro > p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .inner-section {
      padding: 76px 0;
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0;
      background:
        radial-gradient(circle at 14% 16%, rgba(0, 122, 31, 0.16), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .page-hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
      gap: 42px;
      align-items: center;
    }

    .page-hero__content {
      max-width: 780px;
    }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero__label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .page-hero h1 {
      margin: 0 0 18px;
      color: var(--black);
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .page-hero__text {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
    }

    .login-panel {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      box-shadow: 0 28px 70px rgba(0, 122, 31, 0.28);
    }

    .login-panel::after {
      content: "";
      position: absolute;
      right: -64px;
      bottom: -72px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 28px solid rgba(255, 255, 255, 0.13);
    }

    .login-panel__label {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .login-panel h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      color: var(--white);
      font-size: 38px;
      line-height: 1.06;
      letter-spacing: -0.05em;
    }

    .login-panel p {
      position: relative;
      z-index: 1;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 16px;
      line-height: 1.55;
      font-weight: 700;
    }

    .login-fields {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
      margin-bottom: 20px;
    }

    .login-field {
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.20);
    }

    .login-field span {
      display: block;
      margin-bottom: 4px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .login-field strong {
      display: block;
      color: var(--white);
      font-size: 16px;
      line-height: 1.35;
    }

    .login-panel .btn {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .summary-layout,
    .steps-layout,
    .two-col-layout,
    .troubles-layout,
    .recovery-layout,
    .mobile-layout,
    .account-layout,
    .security-layout,
    .compare-layout,
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
      gap: 28px;
      align-items: start;
    }

    .table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
    }

    .data-table tr {
      border-bottom: 1px solid var(--border);
    }

    .data-table tr:last-child {
      border-bottom: 0;
    }

    .data-table th,
    .data-table td {
      padding: 18px 20px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
      line-height: 1.55;
    }

    .data-table th {
      width: 34%;
      background: #f8faf8;
      color: var(--black);
      font-weight: 900;
    }

    .data-table td {
      color: var(--muted);
    }

    .data-table td strong {
      color: var(--black);
    }

    .side-stack {
      display: grid;
      gap: 16px;
    }

    .info-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .info-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .info-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .info-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .info-card--dark h3,
    .info-card--green h3 {
      color: var(--white);
    }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .info-card--dark p,
    .info-card--green p {
      color: rgba(255, 255, 255, 0.74);
    }

    .steps-section,
    .troubles-section,
    .mobile-login-section,
    .compare-section,
    .faq-section {
      background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .steps-layout {
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .sticky-intro {
      position: sticky;
      top: 120px;
    }

    .step-cards {
      display: grid;
      gap: 16px;
    }

    .step-card {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 18px;
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .step-card__number,
    .card-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: var(--green);
      color: var(--white);
      font-size: 18px;
      font-weight: 900;
    }

    .step-card h3,
    .feature-card h3,
    .problem-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 21px;
      line-height: 1.3;
    }

    .step-card p,
    .feature-card p,
    .problem-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box {
      display: grid;
      gap: 7px;
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 4px solid var(--green);
      border-radius: 20px;
      background: var(--green-light);
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box strong {
      color: var(--green-dark);
    }

    .feature-grid-3,
    .feature-grid-2,
    .problem-grid,
    .account-grid,
    .security-grid {
      display: grid;
      gap: 18px;
    }

    .feature-grid-3,
    .account-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-grid-2,
    .problem-grid,
    .security-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .problem-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .feature-card--white {
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .feature-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .feature-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .feature-card--dark h3,
    .feature-card--green h3,
    .feature-card--dark p,
    .feature-card--green p {
      color: rgba(255, 255, 255, 0.82);
    }

    .feature-card--dark h3,
    .feature-card--green h3 {
      color: var(--white);
    }

    .card-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      font-size: 15px;
    }

    .check-list,
    .dark-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li,
    .dark-list li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.5;
    }

    .check-list li {
      color: var(--text);
    }

    .dark-list li {
      color: rgba(255, 255, 255, 0.84);
    }

    .check-list li::before,
    .dark-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .dark-list li::before {
      background: var(--white);
    }

    .credentials-section,
    .recovery-section,
    .account-area-section,
    .security-section {
      background: var(--white);
    }

    .recovery-card,
    .mobile-preview,
    .account-preview {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: 28px;
      background: var(--black);
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
    }

    .recovery-card h3,
    .mobile-preview h3,
    .account-preview h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .recovery-card p,
    .mobile-preview p,
    .account-preview p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      line-height: 1.65;
    }

    .problem-card__number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 48px;
      height: 34px;
      margin-bottom: 16px;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 900;
    }

    .mobile-preview {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .mobile-screen,
    .account-screen {
      margin-top: 20px;
      padding: 16px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .mobile-screen__row,
    .account-screen__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-screen__row:last-child,
    .account-screen__row:last-child {
      border-bottom: 0;
    }

    .mobile-screen__row span,
    .account-screen__row span {
      color: rgba(255, 255, 255, 0.66);
      font-size: 13px;
    }

    .mobile-screen__row strong,
    .account-screen__row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .security-card {
      position: sticky;
      top: 120px;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
      color: var(--white);
      box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
    }

    .security-card .section-kicker {
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
    }

    .security-card h2 {
      margin: 0 0 16px;
      color: var(--white);
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .security-card p {
      margin: 0 0 24px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 16px;
      line-height: 1.65;
    }

    .age-box {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .age-mark {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 58px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--white);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
    }

    .age-box strong {
      display: block;
      margin-bottom: 3px;
      color: var(--white);
      font-size: 17px;
    }

    .age-box span {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      line-height: 1.45;
    }

    .compare-table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .faq-layout {
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      display: block;
      padding: 20px 58px 20px 22px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "–";
    }

    .faq-item__answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-item__answer p {
      margin: 0;
    }

    .faq-item__answer strong {
      color: var(--black);
    }

    .final-cta {
      padding: 76px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
    }

    .final-cta__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
      gap: 28px;
      align-items: center;
    }

    .final-cta__content {
      max-width: 780px;
    }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .final-cta h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .final-cta__box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .final-cta__bonus {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .final-cta .btn {
      width: 100%;
      margin-top: 10px;
    }

    .final-cta .btn:first-of-type {
      margin-top: 0;
    }

    .final-cta__small {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      line-height: 1.55;
    }

    .final-cta__points {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .final-cta__points span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__main {
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) repeat(3, minmax(160px, 1fr));
      gap: 34px;
      padding: 56px 0 38px;
    }

    .site-footer__brand img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
      margin-bottom: 18px;
    }

    .site-footer__brand p {
      margin: 0 0 18px;
      max-width: 360px;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer__age {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer__col h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      line-height: 1.3;
    }

    .site-footer__links {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-footer__links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      line-height: 1.4;
      transition: 0.2s ease;
    }

    .site-footer__links a:hover {
      color: var(--white);
    }

    .site-footer__notice {
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 0;
      font-size: 13px;
    }

    .site-footer__bottom-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .site-footer__bottom-links a {
      color: rgba(255, 255, 255, 0.64);
    }

    .site-footer__bottom-links a:hover {
      color: var(--white);
    }

    @media (max-width: 1080px) {
      .feature-grid-3,
      .account-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 980px) {
      .top-notice__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .main-nav,
      .header-actions .btn--outline {
        display: none;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }

      .site-header__logo img {
        width: 180px;
      }

      .page-hero,
      .inner-section,
      .final-cta {
        padding: 56px 0;
      }

      .page-hero__inner,
      .summary-layout,
      .steps-layout,
      .two-col-layout,
      .troubles-layout,
      .recovery-layout,
      .mobile-layout,
      .account-layout,
      .security-layout,
      .compare-layout,
      .faq-layout,
      .final-cta__inner {
        grid-template-columns: 1fr;
      }

      .sticky-intro,
      .security-card {
        position: static;
      }

      .feature-grid-3,
      .security-grid,
      .account-grid {
        grid-template-columns: 1fr;
      }

      .site-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .feature-grid-2,
      .problem-grid {
        grid-template-columns: 1fr;
      }

      .table-card,
      .compare-table-card {
        overflow-x: auto;
      }

      .data-table {
        min-width: 680px;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .site-header__inner {
        min-height: 72px;
        gap: 12px;
      }

      .site-header__logo img {
        width: 150px;
      }

      .header-actions .btn--primary {
        display: none;
      }

      .page-hero,
      .inner-section,
      .final-cta {
        padding: 44px 0;
      }

      .page-hero__text,
      .sticky-intro > p,
      .content-block p,
      .section-heading p,
      .block-head p {
        font-size: 16px;
      }

      .hero__actions .btn,
      .sticky-intro .btn {
        width: 100%;
      }

      .login-panel,
      .info-card,
      .feature-card,
      .problem-card,
      .recovery-card,
      .mobile-preview,
      .account-preview,
      .security-card,
      .final-cta__box {
        padding: 22px;
      }

      .login-panel h2 {
        font-size: 34px;
      }

      .step-card {
        grid-template-columns: 1fr;
        padding: 22px;
      }

      .age-box {
        align-items: flex-start;
      }

      .faq-item summary {
        padding: 18px 54px 18px 20px;
        font-size: 16px;
      }

      .faq-item__answer {
        padding: 0 20px 18px;
      }

      .site-footer__main {
        grid-template-columns: 1fr;
        padding: 42px 0 30px;
      }

      .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

/* === app-betsport24.html === */
:root {
      --green: #007a1f;
      --green-dark: #005f18;
      --green-light: #e9f7ee;
      --black: #0b0f0d;
      --dark: #151a17;
      --white: #ffffff;
      --gray: #f5f7f6;
      --text: #202420;
      --muted: #667067;
      --border: #dfe6e1;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --container: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .top-notice {
      background: var(--green-dark);
      color: var(--white);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-notice__inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 7px 0;
    }

    .top-notice__left,
    .top-notice__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-notice__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
    }

    .top-notice__link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .site-header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-header__logo img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 600;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(0, 122, 31, 0.24);
    }

    .btn--primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--border);
    }

    .btn--outline:hover {
      border-color: var(--green);
      background: var(--green-light);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-dark);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    }

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .btn--ghost-white:hover { background: rgba(255, 255, 255, 0.12); }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--dark);
      position: relative;
      display: block;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--dark);
    }

    .mobile-menu-btn span::before { top: -7px; }
    .mobile-menu-btn span::after { top: 7px; }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section-heading,
    .block-head {
      max-width: 850px;
      margin: 0 0 34px;
    }

    .section-heading h2,
    .block-head h2,
    .content-block h2,
    .sticky-intro h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .section-heading p,
    .block-head p,
    .content-block p,
    .sticky-intro > p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .inner-section { padding: 76px 0; }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0;
      background:
        radial-gradient(circle at 14% 16%, rgba(0, 122, 31, 0.16), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .page-hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
      gap: 42px;
      align-items: center;
    }

    .page-hero__content { max-width: 780px; }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero__label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .page-hero h1 {
      margin: 0 0 18px;
      color: var(--black);
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .page-hero__text {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
    }

    .app-phone-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      box-shadow: 0 28px 70px rgba(0, 122, 31, 0.28);
    }

    .app-phone-card::after {
      content: "";
      position: absolute;
      right: -64px;
      bottom: -72px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 28px solid rgba(255, 255, 255, 0.13);
    }

    .app-phone-card__label {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .phone-mockup {
      position: relative;
      z-index: 1;
      padding: 18px;
      border-radius: 30px;
      background: rgba(0, 0, 0, 0.24);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .phone-mockup img {
      width: 100%;
      border-radius: 22px;
      aspect-ratio: 9 / 16;
      object-fit: cover;
      object-position: top center;
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .phone-mockup__rows {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .phone-mockup__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .phone-mockup__row:last-child { border-bottom: 0; }

    .phone-mockup__row span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .phone-mockup__row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .summary-layout,
    .steps-layout,
    .two-col-layout,
    .download-layout,
    .casino-layout,
    .sport-layout,
    .bonus-layout,
    .payments-layout,
    .security-layout,
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
      gap: 28px;
      align-items: start;
    }

    .table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
    }

    .data-table tr {
      border-bottom: 1px solid var(--border);
    }

    .data-table tr:last-child { border-bottom: 0; }

    .data-table th,
    .data-table td {
      padding: 18px 20px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
      line-height: 1.55;
    }

    .data-table th {
      width: 34%;
      background: #f8faf8;
      color: var(--black);
      font-weight: 900;
    }

    .data-table td { color: var(--muted); }
    .data-table td strong { color: var(--black); }

    .side-stack {
      display: grid;
      gap: 16px;
    }

    .info-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .info-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .info-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .info-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .info-card--dark h3,
    .info-card--green h3 { color: var(--white); }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .info-card--dark p,
    .info-card--green p { color: rgba(255, 255, 255, 0.74); }

    .steps-section,
    .features-section,
    .sport-section,
    .payments-mobile-section,
    .faq-section {
      background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .steps-layout {
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .sticky-intro {
      position: sticky;
      top: 120px;
    }

    .step-cards {
      display: grid;
      gap: 16px;
    }

    .step-card {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 18px;
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .step-card__number,
    .card-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: var(--green);
      color: var(--white);
      font-size: 18px;
      font-weight: 900;
    }

    .step-card h3,
    .feature-card h3,
    .warning-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 21px;
      line-height: 1.3;
    }

    .step-card p,
    .feature-card p,
    .warning-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box {
      display: grid;
      gap: 7px;
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 4px solid var(--green);
      border-radius: 20px;
      background: var(--green-light);
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box strong { color: var(--green-dark); }

    .feature-grid-3,
    .feature-grid-2,
    .warning-grid,
    .security-grid {
      display: grid;
      gap: 18px;
    }

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

    .feature-grid-2,
    .warning-grid,
    .security-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .warning-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .feature-card--white {
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .feature-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .feature-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .feature-card--dark h3,
    .feature-card--green h3,
    .feature-card--dark p,
    .feature-card--green p {
      color: rgba(255, 255, 255, 0.82);
    }

    .feature-card--dark h3,
    .feature-card--green h3 { color: var(--white); }

    .card-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      font-size: 15px;
    }

    .check-list,
    .dark-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li,
    .dark-list li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.5;
    }

    .check-list li { color: var(--text); }
    .dark-list li { color: rgba(255, 255, 255, 0.84); }

    .check-list li::before,
    .dark-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .dark-list li::before { background: var(--white); }

    .download-section,
    .casino-section,
    .bonus-mobile-section,
    .security-section,
    .compatibility-section {
      background: var(--white);
    }

    .download-card,
    .sport-card,
    .payment-card,
    .security-card,
    .casino-preview {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: 28px;
      background: var(--black);
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
    }

    .download-card h3,
    .sport-card h3,
    .payment-card h3,
    .security-card h2,
    .casino-preview h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .security-card h2 {
      font-size: clamp(30px, 4vw, 42px);
      letter-spacing: -0.03em;
    }

    .download-card p,
    .sport-card p,
    .payment-card p,
    .security-card p,
    .casino-preview p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      line-height: 1.65;
    }

    .store-buttons {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .store-button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .store-button span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .store-button strong {
      color: var(--white);
      font-size: 16px;
      text-align: right;
    }

    .casino-preview {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .casino-preview img {
      margin-top: 20px;
      width: 100%;
      border-radius: 22px;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .sport-card {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark), var(--green));
    }

    .bonus-panel {
      padding: 28px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark), var(--green));
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .bonus-panel h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .bonus-panel__value {
      display: block;
      margin: 14px 0 8px;
      color: var(--white);
      font-size: 36px;
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .bonus-panel p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 15px;
      line-height: 1.65;
    }

    .payment-card {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .payment-rows {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .payment-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .payment-row:last-child { border-bottom: 0; }

    .payment-row span {
      color: rgba(255, 255, 255, 0.66);
      font-size: 13px;
    }

    .payment-row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .security-card {
      position: sticky;
      top: 120px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .security-card .section-kicker {
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
    }

    .age-box {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .age-mark {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 58px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--white);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
    }

    .age-box strong {
      display: block;
      margin-bottom: 3px;
      color: var(--white);
      font-size: 17px;
    }

    .age-box span {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      line-height: 1.45;
    }

    .warning-card__number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 48px;
      height: 34px;
      margin-bottom: 16px;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 900;
    }

    .faq-layout {
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      display: block;
      padding: 20px 58px 20px 22px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after { content: "–"; }

    .faq-item__answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-item__answer p { margin: 0; }
    .faq-item__answer strong { color: var(--black); }

    .final-cta {
      padding: 76px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
    }

    .final-cta__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
      gap: 28px;
      align-items: center;
    }

    .final-cta__content { max-width: 780px; }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .final-cta h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .final-cta__box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .final-cta__bonus {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .final-cta .btn {
      width: 100%;
      margin-top: 10px;
    }

    .final-cta .btn:first-of-type { margin-top: 0; }

    .final-cta__small {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      line-height: 1.55;
    }

    .final-cta__points {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .final-cta__points span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__main {
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) repeat(3, minmax(160px, 1fr));
      gap: 34px;
      padding: 56px 0 38px;
    }

    .site-footer__brand img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
      margin-bottom: 18px;
    }

    .site-footer__brand p {
      margin: 0 0 18px;
      max-width: 360px;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer__age {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer__col h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      line-height: 1.3;
    }

    .site-footer__links {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-footer__links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      line-height: 1.4;
      transition: 0.2s ease;
    }

    .site-footer__links a:hover { color: var(--white); }

    .site-footer__notice {
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 0;
      font-size: 13px;
    }

    .site-footer__bottom-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .site-footer__bottom-links a { color: rgba(255, 255, 255, 0.64); }
    .site-footer__bottom-links a:hover { color: var(--white); }

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

    @media (max-width: 980px) {
      .top-notice__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .main-nav,
      .header-actions .btn--outline { display: none; }

      .mobile-menu-btn { display: inline-flex; }
      .site-header__logo img { width: 180px; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 56px 0; }

      .page-hero__inner,
      .summary-layout,
      .steps-layout,
      .two-col-layout,
      .download-layout,
      .casino-layout,
      .sport-layout,
      .bonus-layout,
      .payments-layout,
      .security-layout,
      .faq-layout,
      .final-cta__inner {
        grid-template-columns: 1fr;
      }

      .sticky-intro,
      .security-card { position: static; }

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

      .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 720px) {
      .feature-grid-2,
      .warning-grid { grid-template-columns: 1fr; }

      .table-card { overflow-x: auto; }

      .data-table { min-width: 680px; }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 24px, var(--container)); }

      .site-header__inner {
        min-height: 72px;
        gap: 12px;
      }

      .site-header__logo img { width: 150px; }

      .header-actions .btn--primary { display: none; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 44px 0; }

      .page-hero__text,
      .sticky-intro > p,
      .content-block p,
      .section-heading p,
      .block-head p { font-size: 16px; }

      .hero__actions .btn,
      .sticky-intro .btn { width: 100%; }

      .app-phone-card,
      .info-card,
      .feature-card,
      .warning-card,
      .download-card,
      .sport-card,
      .payment-card,
      .security-card,
      .casino-preview,
      .bonus-panel,
      .final-cta__box { padding: 22px; }

      .step-card {
        grid-template-columns: 1fr;
        padding: 22px;
      }

      .age-box { align-items: flex-start; }

      .faq-item summary {
        padding: 18px 54px 18px 20px;
        font-size: 16px;
      }

      .faq-item__answer { padding: 0 20px 18px; }

      .site-footer__main {
        grid-template-columns: 1fr;
        padding: 42px 0 30px;
      }

      .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

/* === pagamenti-betsport24.html === */
:root {
      --green: #007a1f;
      --green-dark: #005f18;
      --green-light: #e9f7ee;
      --black: #0b0f0d;
      --dark: #151a17;
      --white: #ffffff;
      --gray: #f5f7f6;
      --text: #202420;
      --muted: #667067;
      --border: #dfe6e1;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .top-notice {
      background: var(--green-dark);
      color: var(--white);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-notice__inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 7px 0;
    }

    .top-notice__left,
    .top-notice__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-notice__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
    }

    .top-notice__link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .site-header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-header__logo img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 600;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(0, 122, 31, 0.24);
    }

    .btn--primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--border);
    }

    .btn--outline:hover {
      border-color: var(--green);
      background: var(--green-light);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-dark);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    }

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .btn--ghost-white:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--dark);
      position: relative;
      display: block;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--dark);
    }

    .mobile-menu-btn span::before { top: -7px; }
    .mobile-menu-btn span::after { top: 7px; }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section-heading,
    .block-head {
      max-width: 850px;
      margin: 0 0 34px;
    }

    .section-heading h2,
    .block-head h2,
    .content-block h2,
    .sticky-intro h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .section-heading p,
    .block-head p,
    .content-block p,
    .sticky-intro > p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .inner-section { padding: 76px 0; }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0;
      background:
        radial-gradient(circle at 14% 16%, rgba(0, 122, 31, 0.16), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .page-hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
      gap: 42px;
      align-items: center;
    }

    .page-hero__content { max-width: 780px; }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero__label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .page-hero h1 {
      margin: 0 0 18px;
      color: var(--black);
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .page-hero__text {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
    }

    .payments-hero-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      box-shadow: 0 28px 70px rgba(0, 122, 31, 0.28);
    }

    .payments-hero-card::after {
      content: "";
      position: absolute;
      right: -64px;
      bottom: -72px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 28px solid rgba(255, 255, 255, 0.13);
    }

    .payments-hero-card__label {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .payments-hero-card h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      color: var(--white);
      font-size: 40px;
      line-height: 1.06;
      letter-spacing: -0.05em;
    }

    .payments-hero-card p {
      position: relative;
      z-index: 1;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 16px;
      line-height: 1.55;
      font-weight: 700;
    }

    .payments-hero-rows {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin-bottom: 22px;
    }

    .payments-hero-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .payments-hero-row:last-child { border-bottom: 0; }

    .payments-hero-row span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .payments-hero-row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .payments-hero-card .btn {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .summary-layout,
    .two-col-layout,
    .deposit-layout,
    .withdrawal-layout,
    .limits-layout,
    .verification-layout,
    .bonus-layout,
    .mobile-layout,
    .security-layout,
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
      gap: 28px;
      align-items: start;
    }

    .table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
    }

    .data-table tr {
      border-bottom: 1px solid var(--border);
    }

    .data-table tr:last-child { border-bottom: 0; }

    .data-table th,
    .data-table td {
      padding: 18px 20px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
      line-height: 1.55;
    }

    .data-table th {
      width: 34%;
      background: #f8faf8;
      color: var(--black);
      font-weight: 900;
    }

    .data-table td { color: var(--muted); }
    .data-table td strong { color: var(--black); }

    .side-stack {
      display: grid;
      gap: 16px;
    }

    .info-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .info-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .info-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .info-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .info-card--dark h3,
    .info-card--green h3 { color: var(--white); }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .info-card--dark p,
    .info-card--green p { color: rgba(255, 255, 255, 0.74); }

    .methods-section,
    .limits-section,
    .bonus-payments-section,
    .payments-problems-section,
    .faq-section {
      background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .deposit-section,
    .withdrawal-section,
    .verification-section,
    .mobile-payments-section,
    .security-section {
      background: var(--white);
    }

    .feature-grid-3,
    .feature-grid-2,
    .problem-grid,
    .security-grid {
      display: grid;
      gap: 18px;
    }

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

    .feature-grid-2,
    .problem-grid,
    .security-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .problem-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .feature-card--white {
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .feature-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .feature-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .feature-card h3,
    .problem-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 21px;
      line-height: 1.3;
    }

    .feature-card p,
    .problem-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .feature-card--dark h3,
    .feature-card--green h3,
    .feature-card--dark p,
    .feature-card--green p {
      color: rgba(255, 255, 255, 0.82);
    }

    .feature-card--dark h3,
    .feature-card--green h3 { color: var(--white); }

    .card-icon,
    .problem-card__number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      border-radius: 18px;
      background: var(--green);
      color: var(--white);
      font-size: 15px;
      font-weight: 900;
    }

    .problem-card__number {
      width: auto;
      min-width: 48px;
      height: 34px;
      display: inline-flex;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
    }

    .check-list,
    .dark-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li,
    .dark-list li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.5;
    }

    .check-list li { color: var(--text); }
    .dark-list li { color: rgba(255, 255, 255, 0.84); }

    .check-list li::before,
    .dark-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .dark-list li::before { background: var(--white); }

    .notice-box {
      display: grid;
      gap: 7px;
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 4px solid var(--green);
      border-radius: 20px;
      background: var(--green-light);
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box strong { color: var(--green-dark); }

    .process-card,
    .withdrawal-card,
    .verification-card,
    .mobile-card,
    .security-card {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: 28px;
      background: var(--black);
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
    }

    .process-card h3,
    .withdrawal-card h3,
    .verification-card h3,
    .mobile-card h3,
    .security-card h2 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .security-card h2 {
      font-size: clamp(30px, 4vw, 42px);
      letter-spacing: -0.03em;
    }

    .process-card p,
    .withdrawal-card p,
    .verification-card p,
    .mobile-card p,
    .security-card p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      line-height: 1.65;
    }

    .process-steps {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .process-step {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .process-step span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 14px;
      background: var(--white);
      color: var(--green-dark);
      font-weight: 900;
    }

    .process-step strong {
      display: block;
      margin-bottom: 4px;
      color: var(--white);
      font-size: 15px;
      line-height: 1.3;
    }

    .process-step em {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      line-height: 1.5;
      font-style: normal;
    }

    .bonus-panel {
      padding: 28px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark), var(--green));
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .bonus-panel h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .bonus-panel__value {
      display: block;
      margin: 14px 0 8px;
      color: var(--white);
      font-size: 36px;
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .bonus-panel p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 15px;
      line-height: 1.65;
    }

    .mobile-card {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .mobile-screen {
      margin-top: 20px;
      padding: 16px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .mobile-screen__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-screen__row:last-child { border-bottom: 0; }

    .mobile-screen__row span {
      color: rgba(255, 255, 255, 0.66);
      font-size: 13px;
    }

    .mobile-screen__row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .security-card {
      position: sticky;
      top: 120px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .security-card .section-kicker {
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
    }

    .age-box {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .age-mark {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 58px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--white);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
    }

    .age-box strong {
      display: block;
      margin-bottom: 3px;
      color: var(--white);
      font-size: 17px;
    }

    .age-box span {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      line-height: 1.45;
    }

    .faq-layout {
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .sticky-intro {
      position: sticky;
      top: 120px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      display: block;
      padding: 20px 58px 20px 22px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after { content: "–"; }

    .faq-item__answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-item__answer p { margin: 0; }
    .faq-item__answer strong { color: var(--black); }

    .final-cta {
      padding: 76px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
    }

    .final-cta__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
      gap: 28px;
      align-items: center;
    }

    .final-cta__content { max-width: 780px; }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .final-cta h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .final-cta__box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .final-cta__bonus {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .final-cta .btn {
      width: 100%;
      margin-top: 10px;
    }

    .final-cta .btn:first-of-type { margin-top: 0; }

    .final-cta__small {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      line-height: 1.55;
    }

    .final-cta__points {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .final-cta__points span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__main {
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) repeat(3, minmax(160px, 1fr));
      gap: 34px;
      padding: 56px 0 38px;
    }

    .site-footer__brand img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
      margin-bottom: 18px;
    }

    .site-footer__brand p {
      margin: 0 0 18px;
      max-width: 360px;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer__age {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer__col h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      line-height: 1.3;
    }

    .site-footer__links {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-footer__links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      line-height: 1.4;
      transition: 0.2s ease;
    }

    .site-footer__links a:hover { color: var(--white); }

    .site-footer__notice {
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 0;
      font-size: 13px;
    }

    .site-footer__bottom-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .site-footer__bottom-links a { color: rgba(255, 255, 255, 0.64); }
    .site-footer__bottom-links a:hover { color: var(--white); }

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

    @media (max-width: 980px) {
      .top-notice__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .main-nav,
      .header-actions .btn--outline { display: none; }

      .mobile-menu-btn { display: inline-flex; }
      .site-header__logo img { width: 180px; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 56px 0; }

      .page-hero__inner,
      .summary-layout,
      .two-col-layout,
      .deposit-layout,
      .withdrawal-layout,
      .limits-layout,
      .verification-layout,
      .bonus-layout,
      .mobile-layout,
      .security-layout,
      .faq-layout,
      .final-cta__inner {
        grid-template-columns: 1fr;
      }

      .sticky-intro,
      .security-card { position: static; }

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

      .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 720px) {
      .feature-grid-2,
      .problem-grid { grid-template-columns: 1fr; }

      .table-card { overflow-x: auto; }

      .data-table { min-width: 680px; }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 24px, var(--container)); }

      .site-header__inner {
        min-height: 72px;
        gap: 12px;
      }

      .site-header__logo img { width: 150px; }

      .header-actions .btn--primary { display: none; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 44px 0; }

      .page-hero__text,
      .sticky-intro > p,
      .content-block p,
      .section-heading p,
      .block-head p { font-size: 16px; }

      .hero__actions .btn,
      .sticky-intro .btn { width: 100%; }

      .payments-hero-card,
      .info-card,
      .feature-card,
      .problem-card,
      .process-card,
      .withdrawal-card,
      .verification-card,
      .mobile-card,
      .security-card,
      .bonus-panel,
      .final-cta__box { padding: 22px; }

      .payments-hero-card h2 { font-size: 34px; }

      .age-box { align-items: flex-start; }

      .faq-item summary {
        padding: 18px 54px 18px 20px;
        font-size: 16px;
      }

      .faq-item__answer { padding: 0 20px 18px; }

      .site-footer__main {
        grid-template-columns: 1fr;
        padding: 42px 0 30px;
      }

      .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

/* === gioco-responsabile.html === */
:root {
      --green: #007a1f;
      --green-dark: #005f18;
      --green-light: #e9f7ee;
      --black: #0b0f0d;
      --dark: #151a17;
      --white: #ffffff;
      --gray: #f5f7f6;
      --text: #202420;
      --muted: #667067;
      --border: #dfe6e1;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .top-notice {
      background: var(--green-dark);
      color: var(--white);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-notice__inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 7px 0;
    }

    .top-notice__left,
    .top-notice__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-notice__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
    }

    .top-notice__link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .site-header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-header__logo img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 600;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(0, 122, 31, 0.24);
    }

    .btn--primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--border);
    }

    .btn--outline:hover {
      border-color: var(--green);
      background: var(--green-light);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-dark);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    }

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .btn--ghost-white:hover { background: rgba(255, 255, 255, 0.12); }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--dark);
      position: relative;
      display: block;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--dark);
    }

    .mobile-menu-btn span::before { top: -7px; }
    .mobile-menu-btn span::after { top: 7px; }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section-heading,
    .block-head {
      max-width: 850px;
      margin: 0 0 34px;
    }

    .section-heading h2,
    .block-head h2,
    .content-block h2,
    .sticky-intro h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .section-heading p,
    .block-head p,
    .content-block p,
    .sticky-intro > p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .inner-section { padding: 76px 0; }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0;
      background:
        radial-gradient(circle at 14% 16%, rgba(0, 122, 31, 0.16), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .page-hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
      gap: 42px;
      align-items: center;
    }

    .page-hero__content { max-width: 780px; }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero__label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .page-hero h1 {
      margin: 0 0 18px;
      color: var(--black);
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .page-hero__text {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
    }

    .responsible-hero-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      box-shadow: 0 28px 70px rgba(0, 122, 31, 0.28);
    }

    .responsible-hero-card::after {
      content: "";
      position: absolute;
      right: -64px;
      bottom: -72px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 28px solid rgba(255, 255, 255, 0.13);
    }

    .responsible-hero-card__label {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .responsible-hero-card h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      color: var(--white);
      font-size: 40px;
      line-height: 1.06;
      letter-spacing: -0.05em;
    }

    .responsible-hero-card p {
      position: relative;
      z-index: 1;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 16px;
      line-height: 1.55;
      font-weight: 700;
    }

    .responsible-hero-rows {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin-bottom: 22px;
    }

    .responsible-hero-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .responsible-hero-row:last-child { border-bottom: 0; }

    .responsible-hero-row span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .responsible-hero-row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .summary-layout,
    .two-col-layout,
    .limits-layout,
    .selfcheck-layout,
    .security-layout,
    .minor-layout,
    .support-layout,
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
      gap: 28px;
      align-items: start;
    }

    .table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
    }

    .data-table tr {
      border-bottom: 1px solid var(--border);
    }

    .data-table tr:last-child { border-bottom: 0; }

    .data-table th,
    .data-table td {
      padding: 18px 20px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
      line-height: 1.55;
    }

    .data-table th {
      width: 34%;
      background: #f8faf8;
      color: var(--black);
      font-weight: 900;
    }

    .data-table td { color: var(--muted); }
    .data-table td strong { color: var(--black); }

    .side-stack {
      display: grid;
      gap: 16px;
    }

    .info-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .info-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .info-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .info-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .info-card--dark h3,
    .info-card--green h3 { color: var(--white); }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .info-card--dark p,
    .info-card--green p { color: rgba(255, 255, 255, 0.74); }

    .principles-section,
    .signals-section,
    .minor-section,
    .faq-section {
      background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .limits-section,
    .selfcheck-section,
    .account-security-section,
    .support-section {
      background: var(--white);
    }

    .feature-grid-3,
    .feature-grid-2,
    .signal-grid,
    .security-grid,
    .support-grid {
      display: grid;
      gap: 18px;
    }

    .feature-grid-3,
    .signal-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-grid-2,
    .security-grid,
    .support-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .signal-card,
    .support-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .feature-card--white {
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .feature-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .feature-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .feature-card h3,
    .signal-card h3,
    .support-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 21px;
      line-height: 1.3;
    }

    .feature-card p,
    .signal-card p,
    .support-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .feature-card--dark h3,
    .feature-card--green h3,
    .feature-card--dark p,
    .feature-card--green p {
      color: rgba(255, 255, 255, 0.82);
    }

    .feature-card--dark h3,
    .feature-card--green h3 { color: var(--white); }

    .card-icon,
    .signal-card__number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      border-radius: 18px;
      background: var(--green);
      color: var(--white);
      font-size: 15px;
      font-weight: 900;
    }

    .signal-card__number {
      width: auto;
      min-width: 48px;
      height: 34px;
      display: inline-flex;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
    }

    .check-list,
    .dark-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li,
    .dark-list li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.5;
    }

    .check-list li { color: var(--text); }
    .dark-list li { color: rgba(255, 255, 255, 0.84); }

    .check-list li::before,
    .dark-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .dark-list li::before { background: var(--white); }

    .notice-box {
      display: grid;
      gap: 7px;
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 4px solid var(--green);
      border-radius: 20px;
      background: var(--green-light);
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box strong { color: var(--green-dark); }

    .control-card,
    .selfcheck-card,
    .security-panel,
    .minor-card,
    .support-panel {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: 28px;
      background: var(--black);
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
    }

    .control-card h3,
    .selfcheck-card h3,
    .security-panel h3,
    .minor-card h3,
    .support-panel h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .control-card p,
    .selfcheck-card p,
    .security-panel p,
    .minor-card p,
    .support-panel p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      line-height: 1.65;
    }

    .control-steps {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .control-step {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .control-step span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 14px;
      background: var(--white);
      color: var(--green-dark);
      font-weight: 900;
    }

    .control-step strong {
      display: block;
      margin-bottom: 4px;
      color: var(--white);
      font-size: 15px;
      line-height: 1.3;
    }

    .control-step em {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      line-height: 1.5;
      font-style: normal;
    }

    .selfcheck-meter {
      display: grid;
      gap: 10px;
      margin-top: 20px;
    }

    .selfcheck-row {
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .selfcheck-row strong {
      display: block;
      color: var(--white);
      font-size: 15px;
      line-height: 1.35;
      margin-bottom: 4px;
    }

    .selfcheck-row span {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      line-height: 1.5;
    }

    .security-panel {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .minor-card,
    .support-panel {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark), var(--green));
    }

    .faq-layout {
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .sticky-intro {
      position: sticky;
      top: 120px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      display: block;
      padding: 20px 58px 20px 22px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after { content: "–"; }

    .faq-item__answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-item__answer p { margin: 0; }
    .faq-item__answer strong { color: var(--black); }

    .final-cta {
      padding: 76px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
    }

    .final-cta__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
      gap: 28px;
      align-items: center;
    }

    .final-cta__content { max-width: 780px; }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .final-cta h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .final-cta__box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .final-cta__bonus {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .final-cta .btn {
      width: 100%;
      margin-top: 10px;
    }

    .final-cta .btn:first-of-type { margin-top: 0; }

    .final-cta__small {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      line-height: 1.55;
    }

    .final-cta__points {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .final-cta__points span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__main {
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) repeat(3, minmax(160px, 1fr));
      gap: 34px;
      padding: 56px 0 38px;
    }

    .site-footer__brand img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
      margin-bottom: 18px;
    }

    .site-footer__brand p {
      margin: 0 0 18px;
      max-width: 360px;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer__age {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer__col h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      line-height: 1.3;
    }

    .site-footer__links {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-footer__links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      line-height: 1.4;
      transition: 0.2s ease;
    }

    .site-footer__links a:hover { color: var(--white); }

    .site-footer__notice {
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 0;
      font-size: 13px;
    }

    .site-footer__bottom-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .site-footer__bottom-links a { color: rgba(255, 255, 255, 0.64); }
    .site-footer__bottom-links a:hover { color: var(--white); }

    @media (max-width: 1080px) {
      .feature-grid-3,
      .signal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 980px) {
      .top-notice__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .main-nav,
      .header-actions .btn--outline { display: none; }

      .mobile-menu-btn { display: inline-flex; }
      .site-header__logo img { width: 180px; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 56px 0; }

      .page-hero__inner,
      .summary-layout,
      .two-col-layout,
      .limits-layout,
      .selfcheck-layout,
      .security-layout,
      .minor-layout,
      .support-layout,
      .faq-layout,
      .final-cta__inner {
        grid-template-columns: 1fr;
      }

      .sticky-intro { position: static; }

      .feature-grid-3,
      .signal-grid,
      .security-grid { grid-template-columns: 1fr; }

      .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 720px) {
      .feature-grid-2,
      .support-grid { grid-template-columns: 1fr; }

      .table-card { overflow-x: auto; }

      .data-table { min-width: 680px; }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 24px, var(--container)); }

      .site-header__inner {
        min-height: 72px;
        gap: 12px;
      }

      .site-header__logo img { width: 150px; }

      .header-actions .btn--primary { display: none; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 44px 0; }

      .page-hero__text,
      .sticky-intro > p,
      .content-block p,
      .section-heading p,
      .block-head p { font-size: 16px; }

      .hero__actions .btn,
      .sticky-intro .btn { width: 100%; }

      .responsible-hero-card,
      .info-card,
      .feature-card,
      .signal-card,
      .support-card,
      .control-card,
      .selfcheck-card,
      .security-panel,
      .minor-card,
      .support-panel,
      .final-cta__box { padding: 22px; }

      .responsible-hero-card h2 { font-size: 34px; }

      .faq-item summary {
        padding: 18px 54px 18px 20px;
        font-size: 16px;
      }

      .faq-item__answer { padding: 0 20px 18px; }

      .site-footer__main {
        grid-template-columns: 1fr;
        padding: 42px 0 30px;
      }

      .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

/* === contatti.html === */
:root {
      --green: #007a1f;
      --green-dark: #005f18;
      --green-light: #e9f7ee;
      --black: #0b0f0d;
      --dark: #151a17;
      --white: #ffffff;
      --gray: #f5f7f6;
      --text: #202420;
      --muted: #667067;
      --border: #dfe6e1;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .top-notice {
      background: var(--green-dark);
      color: var(--white);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-notice__inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 7px 0;
    }

    .top-notice__left,
    .top-notice__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-notice__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
    }

    .top-notice__link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .site-header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-header__logo img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 600;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(0, 122, 31, 0.24);
    }

    .btn--primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--border);
    }

    .btn--outline:hover {
      border-color: var(--green);
      background: var(--green-light);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-dark);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    }

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .btn--ghost-white:hover { background: rgba(255, 255, 255, 0.12); }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--dark);
      position: relative;
      display: block;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--dark);
    }

    .mobile-menu-btn span::before { top: -7px; }
    .mobile-menu-btn span::after { top: 7px; }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section-heading,
    .block-head {
      max-width: 850px;
      margin: 0 0 34px;
    }

    .section-heading h2,
    .block-head h2,
    .content-block h2,
    .sticky-intro h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .section-heading p,
    .block-head p,
    .content-block p,
    .sticky-intro > p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .inner-section { padding: 76px 0; }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0;
      background:
        radial-gradient(circle at 14% 16%, rgba(0, 122, 31, 0.16), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .page-hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
      gap: 42px;
      align-items: center;
    }

    .page-hero__content { max-width: 780px; }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero__label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .page-hero h1 {
      margin: 0 0 18px;
      color: var(--black);
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .page-hero__text {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
    }

    .contact-hero-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      box-shadow: 0 28px 70px rgba(0, 122, 31, 0.28);
    }

    .contact-hero-card::after {
      content: "";
      position: absolute;
      right: -64px;
      bottom: -72px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 28px solid rgba(255, 255, 255, 0.13);
    }

    .contact-hero-card__label {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .contact-hero-card h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      color: var(--white);
      font-size: 40px;
      line-height: 1.06;
      letter-spacing: -0.05em;
    }

    .contact-hero-card p {
      position: relative;
      z-index: 1;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 16px;
      line-height: 1.55;
      font-weight: 700;
    }

    .contact-hero-rows {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin-bottom: 22px;
    }

    .contact-hero-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .contact-hero-row:last-child { border-bottom: 0; }

    .contact-hero-row span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .contact-hero-row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .contact-hero-card .btn {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .summary-layout,
    .two-col-layout,
    .form-layout,
    .topics-layout,
    .prepare-layout,
    .security-layout,
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
      gap: 28px;
      align-items: start;
    }

    .table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
    }

    .data-table tr { border-bottom: 1px solid var(--border); }
    .data-table tr:last-child { border-bottom: 0; }

    .data-table th,
    .data-table td {
      padding: 18px 20px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
      line-height: 1.55;
    }

    .data-table th {
      width: 34%;
      background: #f8faf8;
      color: var(--black);
      font-weight: 900;
    }

    .data-table td { color: var(--muted); }
    .data-table td strong { color: var(--black); }

    .side-stack { display: grid; gap: 16px; }

    .info-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .info-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .info-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .info-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .info-card--dark h3,
    .info-card--green h3 { color: var(--white); }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .info-card--dark p,
    .info-card--green p { color: rgba(255, 255, 255, 0.74); }

    .channels-section,
    .prepare-section,
    .faq-section {
      background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .form-section,
    .topics-section,
    .security-section {
      background: var(--white);
    }

    .feature-grid-3,
    .feature-grid-2,
    .topic-grid,
    .prepare-grid,
    .security-grid {
      display: grid;
      gap: 18px;
    }

    .feature-grid-3,
    .topic-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-grid-2,
    .prepare-grid,
    .security-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .topic-card,
    .prepare-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .feature-card--white {
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .feature-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .feature-card h3,
    .topic-card h3,
    .prepare-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 21px;
      line-height: 1.3;
    }

    .feature-card p,
    .topic-card p,
    .prepare-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .feature-card--green h3,
    .feature-card--green p { color: rgba(255, 255, 255, 0.82); }

    .feature-card--green h3 { color: var(--white); }

    .card-icon,
    .topic-card__number,
    .prepare-card__number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      border-radius: 18px;
      background: var(--green);
      color: var(--white);
      font-size: 15px;
      font-weight: 900;
    }

    .topic-card__number,
    .prepare-card__number {
      width: auto;
      min-width: 48px;
      height: 34px;
      display: inline-flex;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
    }

    .contact-form-card,
    .contact-note-card,
    .security-panel {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: 28px;
      background: var(--black);
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
    }

    .contact-form-card h3,
    .contact-note-card h3,
    .security-panel h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .contact-form-card p,
    .contact-note-card p,
    .security-panel p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      line-height: 1.65;
    }

    .contact-form {
      display: grid;
      gap: 14px;
      margin-top: 20px;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .form-field {
      display: grid;
      gap: 7px;
    }

    .form-field label {
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
      font-weight: 800;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      min-height: 46px;
      padding: 12px 14px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font: inherit;
      outline: none;
    }

    .form-field textarea {
      min-height: 130px;
      resize: vertical;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: rgba(255, 255, 255, 0.44);
    }

    .form-field select option {
      color: var(--black);
    }

    .contact-form__small {
      margin: 0;
      color: rgba(255, 255, 255, 0.58);
      font-size: 12px;
      line-height: 1.55;
    }

    .check-list,
    .dark-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li,
    .dark-list li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.5;
    }

    .check-list li { color: var(--text); }
    .dark-list li { color: rgba(255, 255, 255, 0.84); }

    .check-list li::before,
    .dark-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .dark-list li::before { background: var(--white); }

    .notice-box {
      display: grid;
      gap: 7px;
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 4px solid var(--green);
      border-radius: 20px;
      background: var(--green-light);
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box strong { color: var(--green-dark); }

    .security-panel {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .faq-layout {
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .sticky-intro {
      position: sticky;
      top: 120px;
    }

    .faq-list { display: grid; gap: 14px; }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      display: block;
      padding: 20px 58px 20px 22px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after { content: "–"; }

    .faq-item__answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-item__answer p { margin: 0; }
    .faq-item__answer strong { color: var(--black); }

    .final-cta {
      padding: 76px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
    }

    .final-cta__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
      gap: 28px;
      align-items: center;
    }

    .final-cta__content { max-width: 780px; }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .final-cta h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .final-cta__box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .final-cta__bonus {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .final-cta .btn {
      width: 100%;
      margin-top: 10px;
    }

    .final-cta .btn:first-of-type { margin-top: 0; }

    .final-cta__small {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      line-height: 1.55;
    }

    .final-cta__points {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .final-cta__points span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__main {
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) repeat(3, minmax(160px, 1fr));
      gap: 34px;
      padding: 56px 0 38px;
    }

    .site-footer__brand img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
      margin-bottom: 18px;
    }

    .site-footer__brand p {
      margin: 0 0 18px;
      max-width: 360px;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer__age {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer__col h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      line-height: 1.3;
    }

    .site-footer__links {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-footer__links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      line-height: 1.4;
      transition: 0.2s ease;
    }

    .site-footer__links a:hover { color: var(--white); }

    .site-footer__notice {
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 0;
      font-size: 13px;
    }

    .site-footer__bottom-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .site-footer__bottom-links a { color: rgba(255, 255, 255, 0.64); }
    .site-footer__bottom-links a:hover { color: var(--white); }

    @media (max-width: 1080px) {
      .feature-grid-3,
      .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 980px) {
      .top-notice__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .main-nav,
      .header-actions .btn--outline { display: none; }

      .mobile-menu-btn { display: inline-flex; }
      .site-header__logo img { width: 180px; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 56px 0; }

      .page-hero__inner,
      .summary-layout,
      .two-col-layout,
      .form-layout,
      .topics-layout,
      .prepare-layout,
      .security-layout,
      .faq-layout,
      .final-cta__inner {
        grid-template-columns: 1fr;
      }

      .sticky-intro { position: static; }

      .feature-grid-3,
      .topic-grid,
      .security-grid { grid-template-columns: 1fr; }

      .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 720px) {
      .feature-grid-2,
      .prepare-grid,
      .form-row { grid-template-columns: 1fr; }

      .table-card { overflow-x: auto; }

      .data-table { min-width: 680px; }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 24px, var(--container)); }

      .site-header__inner {
        min-height: 72px;
        gap: 12px;
      }

      .site-header__logo img { width: 150px; }

      .header-actions .btn--primary { display: none; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 44px 0; }

      .page-hero__text,
      .sticky-intro > p,
      .content-block p,
      .section-heading p,
      .block-head p { font-size: 16px; }

      .hero__actions .btn,
      .sticky-intro .btn { width: 100%; }

      .contact-hero-card,
      .info-card,
      .feature-card,
      .topic-card,
      .prepare-card,
      .contact-form-card,
      .contact-note-card,
      .security-panel,
      .final-cta__box { padding: 22px; }

      .contact-hero-card h2 { font-size: 34px; }

      .faq-item summary {
        padding: 18px 54px 18px 20px;
        font-size: 16px;
      }

      .faq-item__answer { padding: 0 20px 18px; }

      .site-footer__main {
        grid-template-columns: 1fr;
        padding: 42px 0 30px;
      }

      .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

/* === privacy-policy.html === */
:root {
      --green: #007a1f;
      --green-dark: #005f18;
      --green-light: #e9f7ee;
      --black: #0b0f0d;
      --dark: #151a17;
      --white: #ffffff;
      --gray: #f5f7f6;
      --text: #202420;
      --muted: #667067;
      --border: #dfe6e1;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .top-notice {
      background: var(--green-dark);
      color: var(--white);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-notice__inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 7px 0;
    }

    .top-notice__left,
    .top-notice__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-notice__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
    }

    .top-notice__link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .site-header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-header__logo img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 600;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(0, 122, 31, 0.24);
    }

    .btn--primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--border);
    }

    .btn--outline:hover {
      border-color: var(--green);
      background: var(--green-light);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-dark);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    }

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .btn--ghost-white:hover { background: rgba(255, 255, 255, 0.12); }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--dark);
      position: relative;
      display: block;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--dark);
    }

    .mobile-menu-btn span::before { top: -7px; }
    .mobile-menu-btn span::after { top: 7px; }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section-heading,
    .block-head {
      max-width: 850px;
      margin: 0 0 34px;
    }

    .section-heading h2,
    .block-head h2,
    .content-block h2,
    .sticky-intro h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .section-heading p,
    .block-head p,
    .content-block p,
    .sticky-intro > p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .inner-section { padding: 76px 0; }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0;
      background:
        radial-gradient(circle at 14% 16%, rgba(0, 122, 31, 0.16), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .page-hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
      gap: 42px;
      align-items: center;
    }

    .page-hero__content { max-width: 780px; }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero__label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .page-hero h1 {
      margin: 0 0 18px;
      color: var(--black);
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .page-hero__text {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
    }

    .privacy-hero-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      box-shadow: 0 28px 70px rgba(0, 122, 31, 0.28);
    }

    .privacy-hero-card::after {
      content: "";
      position: absolute;
      right: -64px;
      bottom: -72px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 28px solid rgba(255, 255, 255, 0.13);
    }

    .privacy-hero-card__label {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .privacy-hero-card h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      color: var(--white);
      font-size: 40px;
      line-height: 1.06;
      letter-spacing: -0.05em;
    }

    .privacy-hero-card p {
      position: relative;
      z-index: 1;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 16px;
      line-height: 1.55;
      font-weight: 700;
    }

    .privacy-hero-rows {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin-bottom: 22px;
    }

    .privacy-hero-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .privacy-hero-row:last-child { border-bottom: 0; }

    .privacy-hero-row span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .privacy-hero-row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .privacy-hero-card .btn {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .summary-layout,
    .two-col-layout,
    .data-layout,
    .rights-layout,
    .security-layout,
    .retention-layout,
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
      gap: 28px;
      align-items: start;
    }

    .table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
    }

    .data-table tr { border-bottom: 1px solid var(--border); }
    .data-table tr:last-child { border-bottom: 0; }

    .data-table th,
    .data-table td {
      padding: 18px 20px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
      line-height: 1.55;
    }

    .data-table th {
      width: 34%;
      background: #f8faf8;
      color: var(--black);
      font-weight: 900;
    }

    .data-table td { color: var(--muted); }
    .data-table td strong { color: var(--black); }

    .side-stack { display: grid; gap: 16px; }

    .info-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .info-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .info-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .info-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .info-card--dark h3,
    .info-card--green h3 { color: var(--white); }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .info-card--dark p,
    .info-card--green p { color: rgba(255, 255, 255, 0.74); }

    .principles-section,
    .legal-bases-section,
    .sharing-section,
    .faq-section {
      background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .controller-section,
    .data-section,
    .rights-section,
    .security-section,
    .retention-section,
    .children-section {
      background: var(--white);
    }

    .feature-grid-3,
    .feature-grid-2,
    .rights-grid,
    .data-grid {
      display: grid;
      gap: 18px;
    }

    .feature-grid-3,
    .data-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-grid-2,
    .rights-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .rights-card,
    .data-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .feature-card--white {
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .feature-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .feature-card h3,
    .rights-card h3,
    .data-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 21px;
      line-height: 1.3;
    }

    .feature-card p,
    .rights-card p,
    .data-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .feature-card--green h3,
    .feature-card--green p { color: rgba(255, 255, 255, 0.82); }

    .feature-card--green h3 { color: var(--white); }

    .card-icon,
    .rights-card__tag,
    .data-card__tag {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      border-radius: 18px;
      background: var(--green);
      color: var(--white);
      font-size: 15px;
      font-weight: 900;
    }

    .rights-card__tag,
    .data-card__tag {
      width: auto;
      min-width: 48px;
      height: 34px;
      display: inline-flex;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
    }

    .privacy-panel,
    .controller-card,
    .rights-panel,
    .security-panel,
    .retention-card,
    .children-card {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: 28px;
      background: var(--black);
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
    }

    .privacy-panel h3,
    .controller-card h3,
    .rights-panel h3,
    .security-panel h3,
    .retention-card h3,
    .children-card h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .privacy-panel p,
    .controller-card p,
    .rights-panel p,
    .security-panel p,
    .retention-card p,
    .children-card p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      line-height: 1.65;
    }

    .privacy-panel {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark), var(--green));
    }

    .security-panel {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .contact-lines {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .contact-line {
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .contact-line span {
      display: block;
      margin-bottom: 4px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .contact-line strong {
      display: block;
      color: var(--white);
      font-size: 15px;
      line-height: 1.45;
      word-break: break-word;
    }

    .check-list,
    .dark-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li,
    .dark-list li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.5;
    }

    .check-list li { color: var(--text); }
    .dark-list li { color: rgba(255, 255, 255, 0.84); }

    .check-list li::before,
    .dark-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .dark-list li::before { background: var(--white); }

    .notice-box {
      display: grid;
      gap: 7px;
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 4px solid var(--green);
      border-radius: 20px;
      background: var(--green-light);
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box strong { color: var(--green-dark); }

    .faq-layout {
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .sticky-intro {
      position: sticky;
      top: 120px;
    }

    .faq-list { display: grid; gap: 14px; }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      display: block;
      padding: 20px 58px 20px 22px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after { content: "–"; }

    .faq-item__answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-item__answer p { margin: 0; }
    .faq-item__answer strong { color: var(--black); }

    .final-cta {
      padding: 76px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
    }

    .final-cta__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
      gap: 28px;
      align-items: center;
    }

    .final-cta__content { max-width: 780px; }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .final-cta h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .final-cta__box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .final-cta__bonus {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .final-cta .btn {
      width: 100%;
      margin-top: 10px;
    }

    .final-cta .btn:first-of-type { margin-top: 0; }

    .final-cta__small {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      line-height: 1.55;
    }

    .final-cta__points {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .final-cta__points span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__main {
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) repeat(3, minmax(160px, 1fr));
      gap: 34px;
      padding: 56px 0 38px;
    }

    .site-footer__brand img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
      margin-bottom: 18px;
    }

    .site-footer__brand p {
      margin: 0 0 18px;
      max-width: 360px;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer__age {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer__col h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      line-height: 1.3;
    }

    .site-footer__links {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-footer__links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      line-height: 1.4;
      transition: 0.2s ease;
    }

    .site-footer__links a:hover { color: var(--white); }

    .site-footer__notice {
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 0;
      font-size: 13px;
    }

    .site-footer__bottom-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .site-footer__bottom-links a { color: rgba(255, 255, 255, 0.64); }
    .site-footer__bottom-links a:hover { color: var(--white); }

    @media (max-width: 1080px) {
      .feature-grid-3,
      .data-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 980px) {
      .top-notice__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .main-nav,
      .header-actions .btn--outline { display: none; }

      .mobile-menu-btn { display: inline-flex; }
      .site-header__logo img { width: 180px; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 56px 0; }

      .page-hero__inner,
      .summary-layout,
      .two-col-layout,
      .data-layout,
      .rights-layout,
      .security-layout,
      .retention-layout,
      .faq-layout,
      .final-cta__inner {
        grid-template-columns: 1fr;
      }

      .sticky-intro { position: static; }

      .feature-grid-3,
      .data-grid,
      .rights-grid { grid-template-columns: 1fr; }

      .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 720px) {
      .feature-grid-2 { grid-template-columns: 1fr; }

      .table-card { overflow-x: auto; }

      .data-table { min-width: 680px; }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 24px, var(--container)); }

      .site-header__inner {
        min-height: 72px;
        gap: 12px;
      }

      .site-header__logo img { width: 150px; }

      .header-actions .btn--primary { display: none; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 44px 0; }

      .page-hero__text,
      .sticky-intro > p,
      .content-block p,
      .section-heading p,
      .block-head p { font-size: 16px; }

      .hero__actions .btn,
      .sticky-intro .btn { width: 100%; }

      .privacy-hero-card,
      .info-card,
      .feature-card,
      .rights-card,
      .data-card,
      .privacy-panel,
      .controller-card,
      .rights-panel,
      .security-panel,
      .retention-card,
      .children-card,
      .final-cta__box { padding: 22px; }

      .privacy-hero-card h2 { font-size: 34px; }

      .faq-item summary {
        padding: 18px 54px 18px 20px;
        font-size: 16px;
      }

      .faq-item__answer { padding: 0 20px 18px; }

      .site-footer__main {
        grid-template-columns: 1fr;
        padding: 42px 0 30px;
      }

      .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

/* === cookie-policy.html === */
:root {
      --green: #007a1f;
      --green-dark: #005f18;
      --green-light: #e9f7ee;
      --black: #0b0f0d;
      --dark: #151a17;
      --white: #ffffff;
      --gray: #f5f7f6;
      --text: #202420;
      --muted: #667067;
      --border: #dfe6e1;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .top-notice {
      background: var(--green-dark);
      color: var(--white);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-notice__inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 7px 0;
    }

    .top-notice__left,
    .top-notice__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-notice__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
    }

    .top-notice__link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .site-header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-header__logo img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 600;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(0, 122, 31, 0.24);
    }

    .btn--primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--border);
    }

    .btn--outline:hover {
      border-color: var(--green);
      background: var(--green-light);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-dark);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    }

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .btn--ghost-white:hover { background: rgba(255, 255, 255, 0.12); }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--dark);
      position: relative;
      display: block;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--dark);
    }

    .mobile-menu-btn span::before { top: -7px; }
    .mobile-menu-btn span::after { top: 7px; }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section-heading,
    .block-head {
      max-width: 850px;
      margin: 0 0 34px;
    }

    .section-heading h2,
    .block-head h2,
    .content-block h2,
    .sticky-intro h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .section-heading p,
    .block-head p,
    .content-block p,
    .sticky-intro > p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .inner-section { padding: 76px 0; }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0;
      background:
        radial-gradient(circle at 14% 16%, rgba(0, 122, 31, 0.16), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .page-hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
      gap: 42px;
      align-items: center;
    }

    .page-hero__content { max-width: 780px; }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero__label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .page-hero h1 {
      margin: 0 0 18px;
      color: var(--black);
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .page-hero__text {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
    }

    .cookie-hero-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      box-shadow: 0 28px 70px rgba(0, 122, 31, 0.28);
    }

    .cookie-hero-card::after {
      content: "";
      position: absolute;
      right: -64px;
      bottom: -72px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 28px solid rgba(255, 255, 255, 0.13);
    }

    .cookie-hero-card__label {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .cookie-hero-card h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      color: var(--white);
      font-size: 40px;
      line-height: 1.06;
      letter-spacing: -0.05em;
    }

    .cookie-hero-card p {
      position: relative;
      z-index: 1;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 16px;
      line-height: 1.55;
      font-weight: 700;
    }

    .cookie-hero-rows {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin-bottom: 22px;
    }

    .cookie-hero-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .cookie-hero-row:last-child { border-bottom: 0; }

    .cookie-hero-row span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .cookie-hero-row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .cookie-hero-card .btn {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .summary-layout,
    .two-col-layout,
    .preferences-layout,
    .duration-layout,
    .third-party-layout,
    .security-layout,
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
      gap: 28px;
      align-items: start;
    }

    .table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
    }

    .data-table tr { border-bottom: 1px solid var(--border); }
    .data-table tr:last-child { border-bottom: 0; }

    .data-table th,
    .data-table td {
      padding: 18px 20px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
      line-height: 1.55;
    }

    .data-table th {
      width: 34%;
      background: #f8faf8;
      color: var(--black);
      font-weight: 900;
    }

    .data-table td { color: var(--muted); }
    .data-table td strong { color: var(--black); }

    .side-stack { display: grid; gap: 16px; }

    .info-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .info-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .info-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .info-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .info-card--dark h3,
    .info-card--green h3 { color: var(--white); }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .info-card--dark p,
    .info-card--green p { color: rgba(255, 255, 255, 0.74); }

    .types-section,
    .duration-section,
    .faq-section {
      background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .what-section,
    .preferences-section,
    .third-party-section,
    .security-section,
    .browser-section {
      background: var(--white);
    }

    .feature-grid-3,
    .feature-grid-2,
    .cookie-grid {
      display: grid;
      gap: 18px;
    }

    .feature-grid-3,
    .cookie-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .feature-card,
    .cookie-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .feature-card--white {
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .feature-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .feature-card h3,
    .cookie-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 21px;
      line-height: 1.3;
    }

    .feature-card p,
    .cookie-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .feature-card--green h3,
    .feature-card--green p { color: rgba(255, 255, 255, 0.82); }

    .feature-card--green h3 { color: var(--white); }

    .card-icon,
    .cookie-card__tag {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      border-radius: 18px;
      background: var(--green);
      color: var(--white);
      font-size: 15px;
      font-weight: 900;
    }

    .cookie-card__tag {
      width: auto;
      min-width: 48px;
      height: 34px;
      display: inline-flex;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
    }

    .cookie-panel,
    .preferences-panel,
    .duration-panel,
    .security-panel,
    .browser-panel {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: 28px;
      background: var(--black);
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
    }

    .cookie-panel h3,
    .preferences-panel h3,
    .duration-panel h3,
    .security-panel h3,
    .browser-panel h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .cookie-panel p,
    .preferences-panel p,
    .duration-panel p,
    .security-panel p,
    .browser-panel p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      line-height: 1.65;
    }

    .cookie-panel,
    .preferences-panel {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark), var(--green));
    }

    .security-panel {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .preference-demo {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .preference-row {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .preference-row span {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      font-weight: 800;
    }

    .toggle {
      flex: 0 0 46px;
      width: 46px;
      height: 26px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.24);
      position: relative;
    }

    .toggle::after {
      content: "";
      position: absolute;
      top: 4px;
      left: 4px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--white);
    }

    .toggle.is-on {
      background: var(--white);
    }

    .toggle.is-on::after {
      left: 24px;
      background: var(--green-dark);
    }

    .check-list,
    .dark-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li,
    .dark-list li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.5;
    }

    .check-list li { color: var(--text); }
    .dark-list li { color: rgba(255, 255, 255, 0.84); }

    .check-list li::before,
    .dark-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .dark-list li::before { background: var(--white); }

    .notice-box {
      display: grid;
      gap: 7px;
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 4px solid var(--green);
      border-radius: 20px;
      background: var(--green-light);
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box strong { color: var(--green-dark); }

    .faq-layout {
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .sticky-intro {
      position: sticky;
      top: 120px;
    }

    .faq-list { display: grid; gap: 14px; }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      display: block;
      padding: 20px 58px 20px 22px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after { content: "–"; }

    .faq-item__answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-item__answer p { margin: 0; }
    .faq-item__answer strong { color: var(--black); }

    .final-cta {
      padding: 76px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
    }

    .final-cta__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
      gap: 28px;
      align-items: center;
    }

    .final-cta__content { max-width: 780px; }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .final-cta h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .final-cta__box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .final-cta__bonus {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .final-cta .btn {
      width: 100%;
      margin-top: 10px;
    }

    .final-cta .btn:first-of-type { margin-top: 0; }

    .final-cta__small {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      line-height: 1.55;
    }

    .final-cta__points {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .final-cta__points span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__main {
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) repeat(3, minmax(160px, 1fr));
      gap: 34px;
      padding: 56px 0 38px;
    }

    .site-footer__brand img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
      margin-bottom: 18px;
    }

    .site-footer__brand p {
      margin: 0 0 18px;
      max-width: 360px;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer__age {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer__col h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      line-height: 1.3;
    }

    .site-footer__links {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-footer__links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      line-height: 1.4;
      transition: 0.2s ease;
    }

    .site-footer__links a:hover { color: var(--white); }

    .site-footer__notice {
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 0;
      font-size: 13px;
    }

    .site-footer__bottom-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .site-footer__bottom-links a { color: rgba(255, 255, 255, 0.64); }
    .site-footer__bottom-links a:hover { color: var(--white); }

    @media (max-width: 1080px) {
      .feature-grid-3,
      .cookie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 980px) {
      .top-notice__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .main-nav,
      .header-actions .btn--outline { display: none; }

      .mobile-menu-btn { display: inline-flex; }
      .site-header__logo img { width: 180px; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 56px 0; }

      .page-hero__inner,
      .summary-layout,
      .two-col-layout,
      .preferences-layout,
      .duration-layout,
      .third-party-layout,
      .security-layout,
      .faq-layout,
      .final-cta__inner {
        grid-template-columns: 1fr;
      }

      .sticky-intro { position: static; }

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

      .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 720px) {
      .feature-grid-2 { grid-template-columns: 1fr; }

      .table-card { overflow-x: auto; }

      .data-table { min-width: 680px; }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 24px, var(--container)); }

      .site-header__inner {
        min-height: 72px;
        gap: 12px;
      }

      .site-header__logo img { width: 150px; }

      .header-actions .btn--primary { display: none; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 44px 0; }

      .page-hero__text,
      .sticky-intro > p,
      .content-block p,
      .section-heading p,
      .block-head p { font-size: 16px; }

      .hero__actions .btn,
      .sticky-intro .btn { width: 100%; }

      .cookie-hero-card,
      .info-card,
      .feature-card,
      .cookie-card,
      .cookie-panel,
      .preferences-panel,
      .duration-panel,
      .security-panel,
      .browser-panel,
      .final-cta__box { padding: 22px; }

      .cookie-hero-card h2 { font-size: 34px; }

      .faq-item summary {
        padding: 18px 54px 18px 20px;
        font-size: 16px;
      }

      .faq-item__answer { padding: 0 20px 18px; }

      .site-footer__main {
        grid-template-columns: 1fr;
        padding: 42px 0 30px;
      }

      .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

/* === termini-condizioni.html === */
:root {
      --green: #007a1f;
      --green-dark: #005f18;
      --green-light: #e9f7ee;
      --black: #0b0f0d;
      --dark: #151a17;
      --white: #ffffff;
      --gray: #f5f7f6;
      --text: #202420;
      --muted: #667067;
      --border: #dfe6e1;
      --radius: 18px;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .top-notice {
      background: var(--green-dark);
      color: var(--white);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-notice__inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 7px 0;
    }

    .top-notice__left,
    .top-notice__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-notice__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
    }

    .top-notice__link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .site-header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-header__logo img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--dark);
      font-size: 15px;
      font-weight: 600;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(0, 122, 31, 0.24);
    }

    .btn--primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--border);
    }

    .btn--outline:hover {
      border-color: var(--green);
      background: var(--green-light);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-dark);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    }

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .btn--ghost-white:hover { background: rgba(255, 255, 255, 0.12); }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--dark);
      position: relative;
      display: block;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--dark);
    }

    .mobile-menu-btn span::before { top: -7px; }
    .mobile-menu-btn span::after { top: 7px; }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section-heading,
    .block-head {
      max-width: 850px;
      margin: 0 0 34px;
    }

    .section-heading h2,
    .block-head h2,
    .content-block h2,
    .sticky-intro h2 {
      margin: 0 0 14px;
      color: var(--black);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .section-heading p,
    .block-head p,
    .content-block p,
    .sticky-intro > p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .inner-section { padding: 76px 0; }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0;
      background:
        radial-gradient(circle at 14% 16%, rgba(0, 122, 31, 0.16), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .page-hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
      gap: 42px;
      align-items: center;
    }

    .page-hero__content { max-width: 780px; }

    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero__label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .page-hero h1 {
      margin: 0 0 18px;
      color: var(--black);
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .page-hero__text {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-badges span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
    }

    .terms-hero-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      box-shadow: 0 28px 70px rgba(0, 122, 31, 0.28);
    }

    .terms-hero-card::after {
      content: "";
      position: absolute;
      right: -64px;
      bottom: -72px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 28px solid rgba(255, 255, 255, 0.13);
    }

    .terms-hero-card__label {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .terms-hero-card h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      color: var(--white);
      font-size: 40px;
      line-height: 1.06;
      letter-spacing: -0.05em;
    }

    .terms-hero-card p {
      position: relative;
      z-index: 1;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 16px;
      line-height: 1.55;
      font-weight: 700;
    }

    .terms-hero-rows {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin-bottom: 22px;
    }

    .terms-hero-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .terms-hero-row:last-child { border-bottom: 0; }

    .terms-hero-row span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .terms-hero-row strong {
      color: var(--white);
      font-size: 15px;
      text-align: right;
    }

    .terms-hero-card .btn {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .summary-layout,
    .two-col-layout,
    .account-layout,
    .bonus-layout,
    .payments-layout,
    .security-layout,
    .responsible-layout,
    .contacts-layout,
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
      gap: 28px;
      align-items: start;
    }

    .table-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
    }

    .data-table tr { border-bottom: 1px solid var(--border); }
    .data-table tr:last-child { border-bottom: 0; }

    .data-table th,
    .data-table td {
      padding: 18px 20px;
      text-align: left;
      vertical-align: top;
      font-size: 15px;
      line-height: 1.55;
    }

    .data-table th {
      width: 34%;
      background: #f8faf8;
      color: var(--black);
      font-weight: 900;
    }

    .data-table td { color: var(--muted); }
    .data-table td strong { color: var(--black); }

    .side-stack { display: grid; gap: 16px; }

    .info-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .info-card--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    }

    .info-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .info-card h3 {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 22px;
      line-height: 1.25;
    }

    .info-card--dark h3,
    .info-card--green h3 { color: var(--white); }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .info-card--dark p,
    .info-card--green p { color: rgba(255, 255, 255, 0.74); }

    .rules-section,
    .bonus-terms-section,
    .security-terms-section,
    .changes-section,
    .faq-section {
      background:
        radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    }

    .access-section,
    .account-section,
    .payments-terms-section,
    .games-section,
    .responsible-terms-section,
    .ip-section,
    .contacts-terms-section {
      background: var(--white);
    }

    .feature-grid-3,
    .feature-grid-2,
    .rules-grid,
    .use-grid,
    .contacts-grid {
      display: grid;
      gap: 18px;
    }

    .feature-grid-3,
    .rules-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-grid-2,
    .use-grid,
    .contacts-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .rule-card,
    .use-card,
    .contact-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: #f8faf8;
    }

    .feature-card--white {
      background: var(--white);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
    }

    .feature-card--green {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
    }

    .feature-card h3,
    .rule-card h3,
    .use-card h3,
    .contact-card h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: 21px;
      line-height: 1.3;
    }

    .feature-card p,
    .rule-card p,
    .use-card p,
    .contact-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .feature-card--green h3,
    .feature-card--green p { color: rgba(255, 255, 255, 0.82); }

    .feature-card--green h3 { color: var(--white); }

    .card-icon,
    .rule-card__tag,
    .use-card__tag,
    .contact-card__tag {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      border-radius: 18px;
      background: var(--green);
      color: var(--white);
      font-size: 15px;
      font-weight: 900;
    }

    .rule-card__tag,
    .use-card__tag,
    .contact-card__tag {
      width: auto;
      min-width: 48px;
      height: 34px;
      display: inline-flex;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
    }

    .terms-panel,
    .account-panel,
    .bonus-panel,
    .payments-panel,
    .security-panel,
    .responsible-panel,
    .contacts-panel {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: 28px;
      background: var(--black);
      color: var(--white);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
    }

    .terms-panel h3,
    .account-panel h3,
    .bonus-panel h3,
    .payments-panel h3,
    .security-panel h3,
    .responsible-panel h3,
    .contacts-panel h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 24px;
      line-height: 1.25;
    }

    .terms-panel p,
    .account-panel p,
    .bonus-panel p,
    .payments-panel p,
    .security-panel p,
    .responsible-panel p,
    .contacts-panel p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
      line-height: 1.65;
    }

    .terms-panel,
    .bonus-panel,
    .contacts-panel {
      background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--green-dark), var(--green));
    }

    .security-panel,
    .responsible-panel {
      background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--black) 0%, #123018 100%);
    }

    .check-list,
    .dark-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li,
    .dark-list li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.5;
    }

    .check-list li { color: var(--text); }
    .dark-list li { color: rgba(255, 255, 255, 0.84); }

    .check-list li::before,
    .dark-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
    }

    .dark-list li::before { background: var(--white); }

    .notice-box {
      display: grid;
      gap: 7px;
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 4px solid var(--green);
      border-radius: 20px;
      background: var(--green-light);
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .notice-box strong { color: var(--green-dark); }

    .contact-lines {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .contact-line {
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .contact-line span {
      display: block;
      margin-bottom: 4px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .contact-line strong {
      display: block;
      color: var(--white);
      font-size: 15px;
      line-height: 1.45;
      word-break: break-word;
    }

    .faq-layout {
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
      gap: 34px;
    }

    .sticky-intro {
      position: sticky;
      top: 120px;
    }

    .faq-list { display: grid; gap: 14px; }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      display: block;
      padding: 20px 58px 20px 22px;
      color: var(--black);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after { content: "–"; }

    .faq-item__answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-item__answer p { margin: 0; }
    .faq-item__answer strong { color: var(--black); }

    .final-cta {
      padding: 76px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
        linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      color: var(--white);
    }

    .final-cta__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
      gap: 28px;
      align-items: center;
    }

    .final-cta__content { max-width: 780px; }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .final-cta h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.65;
    }

    .final-cta__box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .final-cta__bonus {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .final-cta .btn {
      width: 100%;
      margin-top: 10px;
    }

    .final-cta .btn:first-of-type { margin-top: 0; }

    .final-cta__small {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      line-height: 1.55;
    }

    .final-cta__points {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .final-cta__points span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.72);
    }

    .site-footer__main {
      display: grid;
      grid-template-columns: minmax(240px, 0.9fr) repeat(3, minmax(160px, 1fr));
      gap: 34px;
      padding: 56px 0 38px;
    }

    .site-footer__brand img {
      width: 210px;
      max-height: 58px;
      object-fit: contain;
      margin-bottom: 18px;
    }

    .site-footer__brand p {
      margin: 0 0 18px;
      max-width: 360px;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer__age {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer__col h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      line-height: 1.3;
    }

    .site-footer__links {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-footer__links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      line-height: 1.4;
      transition: 0.2s ease;
    }

    .site-footer__links a:hover { color: var(--white); }

    .site-footer__notice {
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 0;
      font-size: 13px;
    }

    .site-footer__bottom-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .site-footer__bottom-links a { color: rgba(255, 255, 255, 0.64); }
    .site-footer__bottom-links a:hover { color: var(--white); }

    @media (max-width: 1080px) {
      .feature-grid-3,
      .rules-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 980px) {
      .top-notice__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .main-nav,
      .header-actions .btn--outline { display: none; }

      .mobile-menu-btn { display: inline-flex; }
      .site-header__logo img { width: 180px; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 56px 0; }

      .page-hero__inner,
      .summary-layout,
      .two-col-layout,
      .account-layout,
      .bonus-layout,
      .payments-layout,
      .security-layout,
      .responsible-layout,
      .contacts-layout,
      .faq-layout,
      .final-cta__inner {
        grid-template-columns: 1fr;
      }

      .sticky-intro { position: static; }

      .feature-grid-3,
      .rules-grid,
      .feature-grid-2,
      .use-grid,
      .contacts-grid { grid-template-columns: 1fr; }

      .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 720px) {
      .table-card { overflow-x: auto; }

      .data-table { min-width: 680px; }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 24px, var(--container)); }

      .site-header__inner {
        min-height: 72px;
        gap: 12px;
      }

      .site-header__logo img { width: 150px; }

      .header-actions .btn--primary { display: none; }

      .page-hero,
      .inner-section,
      .final-cta { padding: 44px 0; }

      .page-hero__text,
      .sticky-intro > p,
      .content-block p,
      .section-heading p,
      .block-head p { font-size: 16px; }

      .hero__actions .btn,
      .sticky-intro .btn { width: 100%; }

      .terms-hero-card,
      .info-card,
      .feature-card,
      .rule-card,
      .use-card,
      .contact-card,
      .terms-panel,
      .account-panel,
      .bonus-panel,
      .payments-panel,
      .security-panel,
      .responsible-panel,
      .contacts-panel,
      .final-cta__box { padding: 22px; }

      .terms-hero-card h2 { font-size: 34px; }

      .faq-item summary {
        padding: 18px 54px 18px 20px;
        font-size: 16px;
      }

      .faq-item__answer { padding: 0 20px 18px; }

      .site-footer__main {
        grid-template-columns: 1fr;
        padding: 42px 0 30px;
      }

      .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

/* === final assembly overrides === */
.site-footer__links a[href^="mailto:"] { word-break: break-word; }
.hero__note { margin-top: 14px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.security-note { margin-top: 18px; padding: 18px; border-radius: 18px; background: var(--green-light); color: var(--text); }


/* === Betsport24 bonus page style fix === */

.page-hero__side {
  min-width: 0;
}

.bonus-page-hero {
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 122, 31, 0.17), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(0, 122, 31, 0.09), transparent 28%),
    linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.bonus-hero-offer {
  display: grid;
  gap: 14px;
  max-width: 680px;
  margin: 26px 0 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.bonus-hero-offer__main {
  display: grid;
  gap: 6px;
}

.bonus-hero-offer__main span,
.bonus-hero-offer__meta span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bonus-hero-offer__main strong {
  color: var(--green-dark);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.bonus-hero-offer__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bonus-hero-offer__meta div {
  padding: 14px;
  border-radius: 18px;
  background: var(--green-light);
}

.bonus-hero-offer__meta strong {
  display: block;
  margin-top: 4px;
  color: var(--black);
  font-size: 17px;
  line-height: 1.2;
}

.bonus-ticket,
.bonus-code-card,
.no-deposit-card,
.bonus-payments-card,
.bonus-mistakes-side,
.bonus-responsible-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  box-shadow: 0 28px 70px rgba(0, 122, 31, 0.24);
}

.bonus-ticket::after,
.bonus-code-card::after,
.no-deposit-card::after,
.bonus-responsible-card::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -72px;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  border: 28px solid rgba(255, 255, 255, 0.12);
}

.bonus-ticket__label,
.bonus-code-card__top span,
.no-deposit-card__top span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bonus-ticket h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--white);
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.bonus-ticket p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.bonus-ticket__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bonus-ticket__list li,
.bonus-checklist li,
.free-spins-list li,
.bonus-payments-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

.bonus-ticket__list li::before,
.bonus-checklist li::before,
.free-spins-list li::before,
.bonus-payments-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
}

.bonus-summary,
.bonus-code-section,
.bonus-games-section,
.no-deposit-section,
.bonus-faq-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 122, 31, 0.10), transparent 30%),
    linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.bonus-steps,
.wagering-section,
.free-spins-section,
.other-promos-section,
.bonus-payments-section,
.bonus-mistakes-section,
.bonus-responsible-section {
  background: var(--white);
}

.bonus-summary__layout,
.bonus-steps__layout,
.wagering-layout,
.free-spins-layout,
.bonus-code__layout,
.bonus-games-layout,
.bonus-payments__layout,
.bonus-mistakes-layout,
.no-deposit__layout,
.bonus-responsible__layout,
.bonus-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 28px;
  align-items: start;
}

.bonus-summary__table-card,
.wagering-card,
.no-deposit-table-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
}

.bonus-summary__table,
.wagering-table,
.no-deposit-table {
  width: 100%;
  border-collapse: collapse;
}

.bonus-summary__table tr,
.wagering-table tr,
.no-deposit-table tr {
  border-bottom: 1px solid var(--border);
}

.bonus-summary__table tr:last-child,
.wagering-table tr:last-child,
.no-deposit-table tr:last-child {
  border-bottom: 0;
}

.bonus-summary__table th,
.bonus-summary__table td,
.wagering-table th,
.wagering-table td,
.no-deposit-table th,
.no-deposit-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.55;
}

.bonus-summary__table th,
.wagering-table th,
.no-deposit-table th {
  background: #f8faf8;
  color: var(--black);
  font-weight: 900;
}

.bonus-summary__table td,
.wagering-table td,
.no-deposit-table td {
  color: var(--muted);
}

.bonus-summary__side,
.bonus-steps__cards,
.wagering-rules,
.free-spins-grid,
.other-promos-grid,
.bonus-games-cards,
.bonus-slots-grid,
.bonus-mistakes-grid,
.bonus-responsible-grid,
.bonus-faq-list {
  display: grid;
  gap: 16px;
}

.bonus-summary-card,
.bonus-step-card,
.wagering-rule,
.free-spins-card,
.promo-card,
.bonus-game-type,
.bonus-slot-card,
.responsible-info-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
}

.bonus-summary-card {
  background: #f8faf8;
}

.bonus-summary-card--dark,
.promo-card--dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.bonus-summary-card h3,
.bonus-step-card h3,
.wagering-rule h3,
.free-spins-card h3,
.promo-card h3,
.bonus-game-type h3,
.responsible-info-card h3,
.bonus-payments-card h3,
.bonus-mistakes-side h3,
.bonus-responsible-card h2,
.no-deposit-card h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 21px;
  line-height: 1.3;
}

.bonus-summary-card p,
.bonus-step-card p,
.wagering-rule p,
.free-spins-card p,
.promo-card p,
.bonus-game-type p,
.responsible-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.bonus-summary-card--dark h3,
.bonus-summary-card--dark p,
.promo-card--dark h3,
.promo-card--dark p,
.bonus-payments-card h3,
.bonus-payments-card p,
.bonus-mistakes-side h3,
.bonus-mistakes-side p,
.bonus-responsible-card h2,
.bonus-responsible-card p {
  color: rgba(255, 255, 255, 0.82);
}

.bonus-summary-card--dark h3,
.promo-card--dark h3,
.bonus-payments-card h3,
.bonus-mistakes-side h3,
.bonus-responsible-card h2 {
  color: var(--white);
}

.bonus-step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bonus-step-card__number,
.promo-card__icon,
.bonus-game-type__icon,
.responsible-info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.bonus-example,
.wagering-alert,
.bonus-code__notice,
.bonus-payments__notice,
.bonus-games-note,
.bonus-faq__notice {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 4px solid var(--green);
  border-radius: 20px;
  background: var(--green-light);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.bonus-example strong,
.wagering-alert strong,
.bonus-code__notice strong,
.bonus-payments__notice strong,
.bonus-games-note strong,
.bonus-faq__notice strong {
  color: var(--green-dark);
}

.free-spins-card--main,
.promo-card--featured,
.bonus-game-type--featured {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 22px 52px rgba(0, 122, 31, 0.22);
}

.free-spins-card--main h3,
.free-spins-card--main p,
.promo-card--featured h3,
.promo-card--featured p,
.bonus-game-type--featured h3,
.bonus-game-type--featured p {
  color: var(--white);
}

.free-spins-list,
.bonus-checklist,
.bonus-payments-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.free-spins-list li {
  color: rgba(255, 255, 255, 0.86);
}

.free-spins-slots,
.bonus-games-note,
.bonus-mistakes-side,
.bonus-payments-card {
  align-self: start;
}

.free-spins-slots {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #f8faf8;
}

.free-spins-slots h3 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: 22px;
}

.free-spins-slots__grid {
  display: grid;
  gap: 14px;
}

.free-spins-slot,
.bonus-slot-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
}

.free-spins-slot {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
}

.free-spins-slot img {
  width: 92px;
  height: 74px;
  object-fit: cover;
}

.free-spins-slot div {
  padding: 12px;
}

.free-spins-slot strong,
.free-spins-slot span {
  display: block;
}

.free-spins-slot strong {
  color: var(--black);
  font-size: 14px;
  line-height: 1.25;
}

.free-spins-slot span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.bonus-code__layout,
.bonus-payments__layout,
.no-deposit__layout,
.bonus-responsible__layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
}

.bonus-code-card__top strong,
.no-deposit-card__top strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--white);
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bonus-code-card__rows,
.no-deposit-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 22px 0;
}

.bonus-code-card__row,
.no-deposit-card__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.bonus-code-card__row:last-child,
.no-deposit-card__row:last-child {
  border-bottom: 0;
}

.bonus-code-card__row span,
.no-deposit-card__row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.bonus-code-card__row strong,
.no-deposit-card__row strong {
  color: var(--white);
  font-size: 14px;
  text-align: right;
}

.other-promos-grid,
.bonus-games-cards,
.bonus-slots-grid,
.bonus-responsible-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.promo-card {
  position: relative;
  overflow: hidden;
}

.promo-card span {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.promo-card--featured span,
.promo-card--dark span {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.other-promos-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
}

.other-promos-cta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--black);
  font-size: 20px;
}

.other-promos-cta p {
  margin: 0;
  color: var(--muted);
}

.bonus-games-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
}

.bonus-games-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bonus-games-note {
  margin-top: 0;
  background: var(--black);
  color: var(--white);
  border-left-color: var(--white);
}

.bonus-games-note h3,
.bonus-games-note p {
  color: var(--white);
}

.bonus-slots-showcase {
  margin-top: 34px;
}

.bonus-slots-showcase__head {
  max-width: 780px;
  margin-bottom: 22px;
}

.bonus-slots-showcase__head h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 28px;
  letter-spacing: -0.02em;
}

.bonus-slots-showcase__head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.bonus-slot-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.bonus-slot-card div {
  padding: 16px;
}

.bonus-slot-card h4 {
  margin: 0 0 4px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.25;
}

.bonus-slot-card span {
  color: var(--muted);
  font-size: 13px;
}

.bonus-payments-card {
  background: var(--black);
  border-color: var(--black);
}

.bonus-payments-list li {
  color: rgba(255, 255, 255, 0.86);
}

.bonus-payments-list strong,
.bonus-payments-list span {
  display: block;
}

.bonus-payments-list strong {
  color: var(--white);
  margin-bottom: 3px;
}

.bonus-payments-list span {
  color: rgba(255, 255, 255, 0.70);
}

.bonus-payments__actions,
.bonus-responsible__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.bonus-mistakes-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bonus-mistakes-grid .bonus-summary-card {
  background: var(--white);
}

.bonus-mistakes-side {
  background: var(--black);
  border-color: var(--black);
}

.bonus-checklist li {
  color: rgba(255, 255, 255, 0.84);
}

.no-deposit-table-card {
  margin-top: 28px;
}

.no-deposit-card .btn,
.bonus-code-card .btn {
  position: relative;
  z-index: 1;
  width: 100%;
}

.bonus-responsible-card {
  min-height: 100%;
}

.bonus-responsible__age {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.bonus-responsible__age-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.bonus-responsible__age strong,
.bonus-responsible__age span {
  display: block;
}

.bonus-responsible__age strong {
  color: var(--white);
  margin-bottom: 4px;
}

.bonus-responsible__age span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.bonus-responsible__actions {
  position: relative;
  z-index: 1;
}

.bonus-faq__layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
}

.bonus-faq__intro {
  position: sticky;
  top: 120px;
}

.bonus-final-cta__points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.bonus-final-cta__points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.bonus-final-cta__secondary {
  margin-top: 10px;
}

.registration__content {
  min-width: 0;
}

@media (max-width: 1080px) {
  .other-promos-grid,
  .bonus-slots-grid,
  .bonus-responsible-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bonus-games-cards,
  .bonus-mistakes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .bonus-summary__layout,
  .bonus-steps__layout,
  .wagering-layout,
  .free-spins-layout,
  .bonus-code__layout,
  .bonus-games-layout,
  .bonus-payments__layout,
  .bonus-mistakes-layout,
  .no-deposit__layout,
  .bonus-responsible__layout,
  .bonus-faq__layout {
    grid-template-columns: 1fr;
  }

  .bonus-faq__intro {
    position: static;
  }

  .bonus-hero-offer__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .bonus-summary__table-card,
  .wagering-card,
  .no-deposit-table-card {
    overflow-x: auto;
  }

  .bonus-summary__table,
  .wagering-table,
  .no-deposit-table {
    min-width: 680px;
  }

  .other-promos-cta,
  .free-spins-slot {
    grid-template-columns: 1fr;
  }

  .other-promos-cta {
    display: grid;
  }

  .other-promos-cta .btn {
    width: 100%;
  }

  .free-spins-slot img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .bonus-ticket,
  .bonus-code-card,
  .no-deposit-card,
  .bonus-payments-card,
  .bonus-mistakes-side,
  .bonus-responsible-card,
  .bonus-summary-card,
  .bonus-step-card,
  .wagering-rule,
  .free-spins-card,
  .promo-card,
  .bonus-game-type,
  .bonus-slot-card,
  .responsible-info-card,
  .free-spins-slots {
    padding: 22px;
  }

  .bonus-ticket h2 {
    font-size: 34px;
  }

  .bonus-step-card,
  .bonus-responsible__age {
    align-items: flex-start;
  }

  .bonus-payments__actions .btn,
  .bonus-responsible__actions .btn {
    width: 100%;
  }

  .other-promos-grid,
  .bonus-slots-grid,
  .bonus-responsible-grid {
    grid-template-columns: 1fr;
  }
}

/* === End Betsport24 bonus page style fix === */

