/* CSS Document */
    :root {
      --green-900: #0d5c35;
      --green-800: #127241;
      --green-700: #17894d;
      --green-600: #1ea65d;
      --green-500: #28c76f;
      --green-100: #e8f8ef;
      --green-50: #f5fcf8;
      --white: #ffffff;
      --slate-950: #0f172a;
      --slate-900: #172033;
      --slate-700: #334155;
      --slate-600: #475569;
      --slate-500: #64748b;
      --slate-300: #cbd5e1;
      --border: #d9f2e4;
      --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
      --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.08);
      --shadow-lg: 0 22px 60px rgba(15, 23, 42, 0.12);
      --radius-xl: 20px;
      --radius-2xl: 28px;
      --radius-3xl: 34px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--slate-900);
      background: linear-gradient(180deg, #ffffff 0%, #f6fcf8 55%, #ffffff 100%);
      line-height: 1.6;
    }

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

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

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

    .section {
      padding: 72px 0;
    }

    .section-sm {
      padding: 36px 0;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--green-800);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 700;
      font-size: 12px;
    }

    .section-title {
      max-width: 820px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .section-title h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.15;
    }

    .section-title p {
      margin: 16px 0 0;
      color: var(--slate-600);
      font-size: 18px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }

    .topbar-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-size: 28px;
      font-weight: 800;
      color: var(--green-800);
      white-space: nowrap;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .nav a {
      font-size: 15px;
      font-weight: 700;
      color: var(--slate-700);
      transition: color 0.2s ease;
    }

    .nav a:hover {
      color: var(--green-800);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 16px;
      font-weight: 700;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--green-600), var(--green-800));
      color: var(--white);
      box-shadow: var(--shadow-sm);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--green-800);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .hero {
      padding: 72px 0 48px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.9fr;
      gap: 36px;
      align-items: center;
    }

    .hero-badge {
      display: inline-block;
      padding: 10px 16px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: var(--white);
      color: var(--green-800);
      font-size: 14px;
      font-weight: 700;
      box-shadow: var(--shadow-sm);
      margin-bottom: 20px;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(38px, 6vw, 68px);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .hero p.lead {
      margin: 22px 0 0;
      max-width: 700px;
      font-size: 20px;
      color: var(--slate-600);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 28px;
      color: var(--slate-600);
      font-size: 14px;
      font-weight: 700;
    }

    .hero-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-3xl);
      padding: 28px;
      box-shadow: var(--shadow-lg);
    }

    .hero-card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 18px;
    }

    .hero-card-top p {
      margin: 0 0 8px;
      color: var(--green-800);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 12px;
      font-weight: 700;
    }

    .hero-card-top h2 {
      margin: 0;
      font-size: 32px;
      line-height: 1.1;
    }

    .rating-pill {
      background: var(--green-600);
      color: var(--white);
      padding: 10px 14px;
      border-radius: 16px;
      font-weight: 800;
      white-space: nowrap;
    }

    .bonus-box {
      background: linear-gradient(135deg, var(--green-700), var(--green-900));
      color: var(--white);
      border-radius: 28px;
      padding: 28px;
    }

    .bonus-box .label {
      margin: 0 0 8px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 700;
    }

    .bonus-box .big {
      margin: 0;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.1;
      font-weight: 800;
    }

    .bonus-box .text {
      margin: 14px 0 24px;
      color: rgba(255, 255, 255, 0.92);
    }

    .grid-3,
    .grid-2 {
      display: grid;
      gap: 24px;
    }

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

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

    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-2xl);
      padding: 26px;
      box-shadow: var(--shadow-md);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .card h3 {
      margin: 0;
      font-size: 24px;
      line-height: 1.2;
    }

    .card p {
      margin: 14px 0 0;
      color: var(--slate-600);
    }

    .advantage-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: var(--green-100);
      color: var(--green-800);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 18px;
      font-weight: 800;
    }

    .casino-grid {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(3, 1fr);
    }

    .casino-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }

    .casino-card-header .small {
      margin-top: 8px;
      color: var(--slate-500);
      font-size: 14px;
      font-weight: 700;
    }

    .note-badge {
      background: var(--green-50);
      color: var(--green-800);
      border-radius: 16px;
      padding: 10px 12px;
      font-weight: 800;
      font-size: 14px;
      white-space: nowrap;
    }

    .stars {
      margin-top: 16px;
      color: var(--green-700);
      letter-spacing: 2px;
      font-size: 18px;
    }

    .bonus-panel {
      margin-top: 18px;
      border-radius: 24px;
      background: var(--green-50);
      padding: 18px;
    }

    .bonus-panel .bonus-title {
      margin: 0 0 8px;
      color: var(--green-800);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 12px;
      font-weight: 800;
    }

    .bonus-panel .bonus-value {
      margin: 0;
      font-size: 24px;
      font-weight: 800;
      line-height: 1.2;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
    }

    .feature-list li {
      position: relative;
      padding-left: 22px;
      margin-bottom: 10px;
      color: var(--slate-600);
    }

    .feature-list li::before {
      content: "›";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--green-800);
      font-weight: 800;
    }

    .card .full-btn {
      width: 100%;
      margin-top: 20px;
    }

    .text-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-2xl);
      padding: 32px;
      box-shadow: var(--shadow-md);
    }

    .text-box p {
      margin: 0 0 18px;
      color: var(--slate-600);
      font-size: 17px;
    }

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

    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
    }

    .faq-item h3 {
      margin: 0;
      font-size: 20px;
    }

    .faq-item p {
      margin: 12px 0 0;
      color: var(--slate-600);
    }

    .footer {
      margin-top: 40px;
      background: var(--slate-950);
      color: var(--white);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 28px;
      padding: 48px 0;
    }

    .footer h2,
    .footer h3 {
      margin: 0;
    }

    .footer h2 {
      color: var(--green-500);
      font-size: 28px;
    }

    .footer p,
    .footer li,
    .footer a {
      color: var(--slate-300);
      font-size: 15px;
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin: 16px 0 0;
    }

    .footer li {
      margin-bottom: 10px;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .casino-grid,
      .grid-3,
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-grid {
        align-items: stretch;
      }
    }

    @media (max-width: 820px) {
      .topbar-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 0;
      }

      .nav {
        justify-content: center;
      }

      .hero-grid,
      .grid-3,
      .grid-2,
      .casino-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 42px;
      }

      .hero-card-top {
        flex-direction: column;
      }

      .section,
      .section-sm {
        padding: 56px 0;
      }

      .logo {
        text-align: center;
      }
    }

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

      .hero h1 {
        font-size: 38px;
      }

      .btn {
        width: 100%;
      }

      .hero-actions {
        flex-direction: column;
      }

      .nav {
        gap: 12px 16px;
      }

      .nav a {
        font-size: 14px;
      }
    }
