﻿:root{
      --cta-space: 0px;
      --cta-btn-padding-y: 13px;
      --cta-btn-padding-x: 16px;
      --cta-btn-line-height: 1.1;
      --cta-btn-min-height: 48px;
      /* User palette */
      --bg:#1A1917;
      --panel:#242220;
      --card:#2F2D2B;

      /* Derived surfaces */
      --surface:#2A2826;
      --surface2:#1F1E1C;
      --hover:#343230;

      /* Text */
      --text:rgba(255,255,255,0.90);
      --muted:rgba(255, 255, 255, 0.756);

      /* Accent */
      --brand:#D6A24A;

      /* Effects */
      --shadow:0 12px 32px rgba(0,0,0,.65);
      --r:10px;
    }

    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
      background:var(--bg);
      color:var(--text);
      line-height:1.55;
    }
    a{color:inherit;text-decoration:none}
    p a,
    li a{
      color:rgba(255,255,255,0.95);
      text-decoration:underline;
      text-decoration-color:rgba(214,162,74,0.7);
      text-decoration-thickness:1.5px;
      text-underline-offset:3px;
      transition:color .15s ease,text-decoration-color .15s ease;
    }
    p a:hover,
    li a:hover{
      color:#fff;
      text-decoration-color:var(--brand);
    }
    p a:focus-visible,
    li a:focus-visible{
      outline:2px solid rgba(214,162,74,0.75);
      outline-offset:2px;
      border-radius:4px;
    }
    .wrap{max-width:1180px;margin:0 auto;padding:20px 16px calc(70px + var(--cta-space))}

    /* reserve space for bottom CTA on mobile so footer is visible */
    @media(max-width:520px){
      .wrap{padding-bottom:140px}
    }

    /* HEADER */
    .topbar{
      display:grid;
      grid-template-columns:auto minmax(0,1fr) auto;
      align-items:center;
      gap:14px;
      padding:14px;
      background:var(--panel);
      border-radius:var(--r);
      box-shadow:var(--shadow);
      position:relative;
      z-index:20;
    }
    .brand{display:flex;align-items:center;gap:10px;font-weight:700}
    .brand{grid-column:1}
    .logo{height:44px;display:flex;align-items:center}
    .logo img{height:100%;width:auto;max-width:180px;object-fit:contain;display:block}

    .nav{
      grid-column:2;
      min-width:0;
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:10px 8px;
      color:var(--muted);
    }
    .nav a{padding:8px 10px;border-radius:10px;line-height:1.2}
    .nav a:hover{background:var(--hover);color:var(--text)}

    .actions{grid-column:3;display:flex;gap:10px;justify-content:flex-end}
    .btn{
      padding:12px 16px;
      border-radius:var(--r);
      font-weight:700;
      font-size:16px;
      border:none;
      background:var(--surface);
      color:var(--text);
      cursor:pointer;
      transition:.15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn.primary{
      background:var(--brand);
      color:#ffffff;
      box-shadow:0 8px 22px rgba(214,162,74,.25);
    }
    .btn.primary,
    .download-btn{
      padding:var(--cta-btn-padding-y) var(--cta-btn-padding-x);
      line-height:var(--cta-btn-line-height);
      min-height:var(--cta-btn-min-height);
      display:inline-flex;
      align-items:center;
      justify-content:center;
    }
    .btn.primary:hover{filter:brightness(1.05)}
    .btn.ghost{background:var(--surface)}

    .burger{
      grid-column:3;
      justify-self:end;
      display:none;
      width:44px;height:44px;
      border-radius:var(--r);
      border:none;
      background:var(--surface);
      color:var(--text);
      cursor:pointer;
      transition:.15s ease;
    }
    .burger:hover{transform:translateY(-1px)}
    .burger-lines{
      display:grid;
      gap:5px;
    }
    .burger-lines span{
      display:block;
      width:18px;
      height:2px;
      border-radius:999px;
      background:currentColor;
    }

    /* MOBILE DRAWER */
    .drawer-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.55);display:none;z-index:29}
    .drawer-backdrop.open{display:block}

    .mobile-menu{
      position:fixed;top:0;right:0;bottom:0;
      width:min(320px, 86vw);
      background:var(--panel);
      padding:16px;
      transform:translateX(100%);
      transition:.25s ease;
      z-index:30;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .mobile-menu.open{transform:translateX(0)}

    .mobile-head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:6px 2px 10px;margin-bottom:6px}
    .mobile-head strong{font-size:14px}
    .xbtn{width:44px;height:44px;border-radius:var(--r);border:none;background:var(--surface);color:var(--text);cursor:pointer}
    .mobile-menu a{display:block;padding:12px 10px;border-radius:var(--r);color:var(--text)}
    .mobile-menu a:hover{background:var(--hover)}
    .mobile-menu .row{margin-top:auto;display:grid;gap:10px}

    /* HERO */
    .hero{margin-top:18px;background:var(--card);border-radius:var(--r);box-shadow:var(--shadow)}
    .hero-inner{padding:26px;display:grid;grid-template-columns:1fr 320px;gap:20px}
    .kicker{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 12px}
    .pill{font-size:12px;color:var(--muted);padding:6px 10px;border-radius:var(--r);background:var(--surface)}
    .pill.provider{display:inline-flex;align-items:center;gap:8px}
    .pill.provider img{width:16px;height:16px;display:block}
    .hero h1{margin:0 0 12px;font-size:42px;line-height:1.05}
    .lead{color:var(--muted);margin:0 0 18px}
    .hero-cta{display:flex;gap:12px;flex-wrap:wrap}
    .preview{border-radius:var(--r);aspect-ratio:4/3;overflow:hidden;background:var(--surface2)}
    .preview img{width:100%;height:100%;object-fit:cover;display:block}
    .contacts-hero .hero-inner{grid-template-columns:1fr}

    /* CASINO REVIEW HERO */
    .section.casino-review-section{margin-top:18px;padding-bottom:0;overflow:hidden}
    .casino-card{background:var(--card)}
    .casino-head{
      display:grid;
      grid-template-columns:104px minmax(0,1fr);
      gap:22px;
      padding:24px 18px;
      align-items:center;
    }
    .casino-logo{
      width:104px;
      height:104px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(214,162,74,0.14), transparent 55%), var(--surface2);
      border:1px solid rgba(255,255,255,0.08);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,0.03);
    }
    .casino-logo img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      border-radius:inherit;
    }
    .casino-logo-mark{
      font-size:42px;
      line-height:1;
      font-weight:900;
      letter-spacing:.06em;
      color:var(--brand);
    }
    .casino-main{min-width:0}
    .casino-title-row{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-bottom:18px;
    }
    .casino-title-row h1{
      margin:0;
      font-size:42px;
      line-height:1.05;
      color:var(--text);
    }
    .casino-meta{
      display:grid;
      grid-template-columns:repeat(5,minmax(0,1fr));
      gap:16px;
      margin:0;
    }
    .meta-item{
      margin:0;
      padding-right:16px;
      border-right:1px solid rgba(255,255,255,0.08);
    }
    .meta-item:last-child{
      padding-right:0;
      border-right:none;
    }
    .meta-item dt{
      margin:0 0 6px;
      color:var(--muted);
      font-size:14px;
    }
    .meta-item dd{
      margin:0;
      font-size:18px;
      line-height:1.2;
      font-weight:700;
      color:var(--text);
    }
    .meta-item dd a{
      color:var(--text);
      text-decoration:none;
      border-bottom:1px solid rgba(214,162,74,0.5);
    }
    .casino-offer{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:20px 18px 24px;
      border-top:1px solid rgba(255,255,255,0.08);
      background:rgba(255,255,255,0.02);
    }
    .offer-text{
      display:flex;
      align-items:center;
      margin:0;
      font-size:20px;
      line-height:1.3;
      font-weight:700;
      color:var(--text);
    }
    .offer-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:188px;
      min-height:48px;
      padding:12px 18px;
      font-size:16px;
      white-space:nowrap;
    }

    /* FACTS */
    .card{margin-top:18px;background:var(--card);border-radius:var(--r)}
    .card-h{padding:20px 18px 14px;display:flex;justify-content:space-between;align-items:center;gap:10px;border-bottom:1px solid rgba(255,255,255,0.08)}
    .card-h strong{font-size:16px;font-weight:600;letter-spacing:.2px}
    .facts-table-wrap{padding:16px;overflow-x:auto;-webkit-overflow-scrolling:touch}
    .facts-table{width:100%;border-collapse:separate;border-spacing:0;background:var(--surface);border-radius:var(--r);overflow:hidden}
    .facts-table th,.facts-table td{padding:12px;border-bottom:1px solid rgba(255,255,255,0.08);vertical-align:top}
    .facts-table tr:last-child th,.facts-table tr:last-child td{border-bottom:none}
    .facts-table th{width:42%;color:var(--muted);font-size:13px;font-weight:500;text-align:left;background:rgba(255,255,255,0.02)}
    .facts-table td{color:var(--text);font-weight:700}

    /* SECTIONS */
    .section{margin-top:40px;background:var(--card);border-radius:var(--r);padding-bottom:28px}
    .section-h{padding:22px 18px 14px;display:flex;justify-content:space-between;align-items:center;gap:10px;border-bottom:1px solid rgba(255,255,255,0.08)}
    .section-h h2{margin:0;font-size:17px;font-weight:600;letter-spacing:.2px}

    /* DEMO */
    .demo-mini{padding:18px 18px 22px}
    .demo-mini p{margin:0 0 16px;color:var(--muted);max-width:none}
    .demo-hero{position:relative;margin:0 18px 0;border-radius:var(--r);overflow:hidden;height:420px;background:var(--surface2)}
    .demo-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.45);transform:scale(1.02)}
    .demo-overlay{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px}

    /* BONUSES */
    .bonuses-wrap{padding:18px}
    .bonuses-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
    .bonus-card{background:var(--surface);border:1px solid rgba(255,255,255,0.08);border-radius:var(--r);overflow:hidden;display:flex;flex-direction:column}
    .bonus-card img{width:100%;height:200px;object-fit:cover;display:block;background:var(--surface2)}
    .bonus-body{padding:12px;display:grid;gap:10px}
    .bonus-body h3{margin:0;font-size:16px;line-height:1.2}
    .bonus-meta{display:grid;gap:8px}
    .bonus-meta .row{padding:10px;border-radius:var(--r);background:var(--surface2);border:1px solid rgba(255,255,255,0.08)}
    .bonus-meta span{display:block;font-size:12px;color:var(--muted)}
    .bonus-meta b{display:block;margin-top:3px;font-size:15px;line-height:1.15}
    .bonus-body .btn{width:100%}

    /* SHOTS */
    .shots{padding:18px}
    .shots-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
    .shot{margin:0;display:flex;flex-direction:column;gap:10px}
    .shot img{width:100%;aspect-ratio:9/16;border-radius:var(--r);background:var(--surface);object-fit:cover;display:block}
    .shot-caption{margin:0;font-size:13px;line-height:1.4;color:var(--muted)}

    /* DOWNLOAD */
    .download-wrap{padding:18px}
    .download-lead{margin:0 0 16px;color:var(--muted)}
    .download-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
    .download-card{padding:14px;border-radius:var(--r);background:var(--surface);border:1px solid rgba(255,255,255,0.08)}
    .download-head{display:flex;align-items:center;gap:12px;margin-bottom:12px}
    .download-logo{width:54px;height:54px;border-radius:12px;overflow:hidden;background:var(--surface2);display:flex;align-items:center;justify-content:center;flex:0 0 auto}
    .download-logo img{width:36px;height:36px;object-fit:contain;display:block}
    .download-title h3{margin:0;font-size:1.17em;;line-height:1.1;color:var(--text)}
    .download-sub{margin-top:2px;font-size:13px;color:var(--muted)}
    .download-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-bottom:10px}
    .download-fact{padding:10px 12px;border-radius:var(--r);background:var(--surface2);border:1px solid rgba(255,255,255,0.08)}
    .download-fact span{display:block;font-size:12px;color:var(--muted)}
    .download-fact b{display:block;margin-top:4px;font-size:16px;line-height:1.1;font-weight:700;color:var(--text)}
    .download-btn{width:100%;border-radius:var(--r);border:none;background:var(--brand);color:#fff;font-weight:700;font-size:16px;cursor:pointer;gap:10px;box-shadow:0 8px 22px rgba(214,162,74,.25);transition:.15s ease}
    .download-btn:hover{transform:translateY(-1px);filter:brightness(1.05)}
    .download-btn .icon{width:22px;height:22px;border-radius:6px;background:rgba(0,0,0,0.18);display:inline-flex;align-items:center;justify-content:center;font-size:11px;font-weight:700}

    /* CONTENT */
    .content{padding:18px;color:var(--muted);overflow-x:visible}
    .content > :first-child{margin-top:0}
    .content p{margin:0 0 12px}

    .content a{color:rgba(255,255,255,0.92);text-decoration:underline;text-decoration-color:rgba(214,162,74,0.55);text-underline-offset:3px}
    .content a:hover{color:rgba(255,255,255,0.98);text-decoration-color:rgba(214,162,74,0.9)}

    .content ul,.content ol{margin:12px 0 14px;padding-left:22px}
    .content li{margin:6px 0}
    .content ul li::marker,.content ol li::marker{color:var(--brand)}

    .content blockquote{margin:14px 0;padding:12px 14px;border-radius:var(--r);background:var(--surface2);color:rgba(255,255,255,0.78);box-shadow:inset 3px 0 0 0 var(--brand)}
    .content blockquote p{margin:0}
    .content blockquote cite{display:block;margin-top:10px;color:var(--muted);font-style:normal}

    .table-wrap{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;margin:14px 0 16px}
    .table-wrap table{width:100%;min-width:640px;border-collapse:separate;border-spacing:0;background:var(--surface);border-radius:var(--r)}
    .table-wrap thead th{text-align:left;font-weight:700;font-size:13px;color:rgba(255,255,255,0.9);background:var(--surface2);padding:12px;white-space:nowrap}
    .table-wrap tbody td{padding:12px;vertical-align:top;color:rgba(255,255,255,0.75);white-space:nowrap}
    .table-wrap tbody tr:not(:last-child) td{box-shadow:inset 0 -1px 0 rgba(255,255,255,0.06)}
    .table-wrap tbody tr:hover td{background:rgba(255,255,255,0.03)}

    .content code{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:0.95em;background:var(--surface2);padding:2px 6px;border-radius:8px;color:rgba(255,255,255,0.85)}
    .content pre{margin:14px 0 16px;padding:14px;border-radius:var(--r);background:var(--surface2);overflow:auto}
    .content pre code{background:transparent;padding:0;border-radius:0;display:block;color:rgba(255,255,255,0.85)}

    /* CONTACTS */
    .contact-grid{padding:18px}
    .contact-card{
      padding:18px;
      border-radius:var(--r);
      background:var(--surface);
      border:1px solid rgba(255,255,255,0.08);
      display:grid;
      gap:12px;
      align-content:start;
    }
    .contact-card h3,
    .contact-form-card h3{margin:0;font-size:20px;line-height:1.15}
    .contact-card p{margin:0;color:var(--muted)}
    .contact-list{margin:0;padding-left:0;list-style:none;display:grid;gap:10px}
    .contact-list li{padding:12px;border-radius:var(--r);background:var(--surface2);border:1px solid rgba(255,255,255,0.08);color:var(--text)}
    .contact-label{display:block;margin-bottom:4px;font-size:12px;color:var(--muted)}
    .contact-form-card{
      padding:18px;
      border-radius:var(--r);
      background:var(--surface);
      border:1px solid rgba(255,255,255,0.08);
    }
    .contact-form-intro{
      margin:0;
      padding:18px 18px 0;
      color:var(--muted);
    }
    .contact-form{margin-top:18px;display:grid;gap:14px}
    .contact-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
    .field{display:grid;gap:8px}
    .field label{font-size:14px;font-weight:600;color:var(--text)}
    .field input,
    .field textarea{
      width:100%;
      padding:13px 14px;
      border-radius:var(--r);
      border:1px solid rgba(255,255,255,0.1);
      background:var(--surface2);
      color:var(--text);
      font:inherit;
      resize:vertical;
    }
    .field input::placeholder,
    .field textarea::placeholder{color:var(--muted)}
    .field input:focus,
    .field textarea:focus{
      outline:none;
      border-color:rgba(214,162,74,0.55);
      box-shadow:0 0 0 3px rgba(214,162,74,0.12);
    }
    .contact-note{margin:0;color:var(--muted);font-size:13px}

    /* REVIEWS */
    .reviews-wrap{padding:18px}
    .reviews-lead{margin:0 0 16px;color:var(--muted)}
    .reviews-grid{display:grid;grid-template-columns:1fr;gap:14px}
    .review-card{
      padding:18px;
      border-radius:var(--r);
      background:var(--surface);
      border:1px solid rgba(255,255,255,0.08);
      display:grid;
      gap:12px;
    }
    .review-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
    .review-author{margin:0;font-size:17px;line-height:1.2;color:var(--text)}
    .review-meta{margin:4px 0 0;font-size:13px;color:var(--muted)}
    .review-rating{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:52px;
      min-height:32px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(214,162,74,0.12);
      border:1px solid rgba(214,162,74,0.28);
      font-size:14px;
      font-weight:800;
      color:var(--brand);
      white-space:nowrap;
    }
    .review-text{margin:0;color:var(--muted)}

    /* FOOTER */
    footer{margin-top:28px;padding:18px;font-size:13px;color:var(--muted);display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;background:var(--card);border-radius:var(--r)}
    .footer-col{display:grid;gap:8px;align-content:start}
    .footer-col-wide{grid-column:1/-1}
    .footer-title{margin:0;font-size:14px;color:var(--text);font-weight:700}
    .footer-text{margin:0}
    .footer-list{margin:0;padding-left:0;list-style:none}
    .footer-list li{color:var(--muted)}
    .footer-list li + li{margin-top:8px}
    .lang-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .lang-links li + li{margin-top:0}
    .lang-links a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:9px 12px;
      border-radius:10px;
      background:var(--surface2);
      border:1px solid rgba(255,255,255,0.08);
      color:var(--text);
      text-decoration:none;
      transition:background .15s ease,border-color .15s ease,transform .15s ease;
    }
    .lang-links a img{
      width:18px;
      height:18px;
      border-radius:50%;
      object-fit:cover;
      flex:0 0 auto;
    }
    .lang-links a:hover{
      background:var(--hover);
      border-color:rgba(214,162,74,0.4);
      transform:translateY(-1px);
    }
    .lang-links a:focus-visible{
      outline:2px solid rgba(214,162,74,0.75);
      outline-offset:2px;
    }
    .footer-logos{grid-column:1/-1;margin:0;padding:8px 0;list-style:none;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;border-top:1px solid rgba(255,255,255,0.08);border-bottom:1px solid rgba(255,255,255,0.08)}
    .footer-logo-item{height:52px;border-radius:var(--r);background:var(--surface2);border:1px solid rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;padding:8px}
    .footer-logo-item img{max-width:100%;max-height:28px;object-fit:contain;display:block}
    .footer-bottom{grid-column:1/-1;display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}

    /* BOTTOM STICKY CTA */
    .bottom-cta{position:fixed;left:0;right:0;bottom:0;background:rgba(26,25,23,.92);backdrop-filter:blur(8px);padding:12px 14px calc(12px + env(safe-area-inset-bottom));transform:translateY(120%);transition:.3s ease;z-index:60;box-shadow:0 -12px 30px rgba(0,0,0,.6)}
    .bottom-cta.show{transform:translateY(0)}
    .bottom-cta-inner{max-width:1180px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:14px}
    .bottom-cta-text{font-size:15px;font-weight:600}
    @media(max-width:520px){.bottom-cta-inner{flex-direction:column;align-items:stretch}.bottom-cta .btn{width:100%}}

    /* DEMO MODAL */
    .modal-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.62);display:none;align-items:center;justify-content:center;padding:18px;z-index:50}
    .modal-backdrop.open{display:flex}
    .modal{width:min(980px, 100%);border-radius:var(--r);background:var(--panel);box-shadow:var(--shadow);overflow:hidden}
    .modal-h{display:flex;align-items:center;justify-content:flex-end;gap:12px;padding:14px}
    .modal-close{width:44px;height:44px;border-radius:var(--r);border:none;background:var(--surface);color:var(--text);cursor:pointer}
    .modal-b{padding:14px}
    .modal-frame{width:100%;aspect-ratio:16/9;border-radius:var(--r);background:var(--surface2);overflow:hidden}
    .modal-frame iframe{width:100%;height:100%;border:0;display:block}
    .modal-actions{margin-top:12px}
    .modal-actions .btn{width:100%}

    @media(max-width:900px){
      .hero-inner{grid-template-columns:1fr}
      .casino-meta{grid-template-columns:repeat(3,minmax(0,1fr))}
      .meta-item:nth-child(3){padding-right:0;border-right:none}
      .contact-grid{grid-template-columns:1fr}
      .reviews-grid{grid-template-columns:1fr}
      .shots-grid{grid-template-columns:repeat(2,1fr)}
      .download-grid{grid-template-columns:1fr}
    }
    @media(max-width:980px){
      .nav{display:none}
      .actions{display:none}
      .burger{display:inline-flex;align-items:center;justify-content:center}
      .topbar{grid-template-columns:auto 1fr auto}
    }
    @media(max-width:720px){
      .casino-head{grid-template-columns:1fr}
      .casino-logo{width:84px;height:84px}
      .casino-title-row h1{font-size:34px}
      .casino-meta{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 16px}
      .meta-item{padding-right:0;border-right:none}
      .casino-offer{flex-direction:column;align-items:stretch}
      .offer-btn{width:100%}
      .bonuses-wrap{padding:18px 0 18px 18px}
      .bonuses-grid{display:flex;overflow-x:auto;gap:12px;scroll-snap-type:x mandatory;padding:0 18px 4px 0}
      .bonus-card{flex:0 0 80%;max-width:80%;scroll-snap-align:start}
    }
    @media(max-width:520px){
      .hero h1{font-size:32px}
      .casino-head{padding:18px}
      .casino-title-row h1{font-size:30px}
      .casino-offer{padding:18px}
      .offer-text{font-size:18px;align-items:flex-start}
      .contact-form-grid{grid-template-columns:1fr}
      .hero-cta .btn{width:100%}
      .download-facts{grid-template-columns:1fr}
      footer{grid-template-columns:1fr}
      .footer-logos{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
