    :root {
      --bg: #0b0b0b;
      --panel: #ffffff;

      --topbar: #A3A3A3;
      --header: #000000;
      --nav: #171717;

      --footerMenuBg: #1F1F1F;
      --footerCopyBg: #000000;

      --line: #e6e6e6;
      --btn: #61cf6b;
      --btnText: #fff;
      --star: #f3a32a;
    }

    * {
      box-sizing: border-box
    }

    body {
      margin: 0;
      font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: #111;
      color: #111;
    }

    /* ===== TOP BAR (shorter height) ===== */
    .topbar {
      background: var(--topbar);
      color: #111;
      font-size: 14px;
      padding: 6px 16px;
      text-align: center;
      font-weight: 800;
      line-height: 1.2;
    }

    /* ===== HEADER ===== */
    header {
      background: var(--header);
    }

    .header-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 22px 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      direction: ltr;
      background: var(--header);
    }

    /* LEFT flag (bigger) */
    .flag {
      width: 64px;
      height: 40px;
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, .15);
      flex: 0 0 auto;
      background: var(--header);
    }

    .flag img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* RIGHT logo (bigger) */
    .logo {
      width: 270px;
      height: 76px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex: 0 0 auto;
      background: var(--header);
    }

    .logo img {
      width: 100%;
      height: 180px;
      object-fit: contain;
      display: block;
      padding: 6px;
    }

    .header-spacer {
      flex: 1 1 auto;
      height: 1px;
    }

    /* ===== NAV (Header links - right aligned inline + white) ===== */
    nav {
      background: var(--nav);
    }

    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 10px 16px;
      display: flex;
      gap: 18px;
      justify-content: flex-start;
      align-items: center;
      font-size: 14px;
      direction: rtl;
      white-space: nowrap;
    }

    .nav-inner a {
      color: #fff;
      text-decoration: none;
      font-weight: 800;
    }

    .nav-inner a:hover {
      opacity: .85
    }

    /* ===== PAGE ===== */
    .wrap {
      background: #fff;
      padding: 18px 0 0;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 16px 24px;
    }

    .col-title {
      margin: 0 0 10px;
      font-weight: 800;
      text-align: right;
      color: #111;
      line-height: 1.2;
    }

    .main .col-title {
      font-size: 34px;
    }

    .feature .col-title {
      font-size: 26px;
    }

    .title-hr {
      border: 0;
      height: 1px;
      background: #111;
      opacity: .65;
      margin: 0 0 14px;
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr 2.2fr;
      gap: 22px;
      align-items: stretch;
      direction: ltr;
    }

    .feature,
    .main {
      direction: rtl;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    /* ===== LEFT FEATURE ===== */
    .feature-card {
      background: #f3f3f3;
      /* border: 1px solid #e2e2e2; */
      padding: 18px 16px 14px;
      border-radius: 2px;
      display: flex;
      flex-direction: column;
    }

    .emirbet-logo-container {
      height: 70px; /* ✅ Increased height */
      margin: 0 auto 16px;
      max-width: 280px; /* ✅ Increased max-width */
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .emirbet-logo-container img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .arabic-text-container {
      width: 100%;
      margin: 0 0 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .arabic-text-container img {
      width: 100%;
      max-width: 300px; /* ✅ Increased max-width */
      height: auto;
      display: block;
    }

    .feature-text {
      font-size: 22px;
      font-weight: 800;
      line-height: 1.4;
      text-align: center;
      margin: 0 0 14px;
      display: none;
    }

    .feature-text strong {
      font-weight: 900
    }

    /* ✅ Make <a> behave like buttons */
    a.btn, a.btn-sm, a.mbtn {
      text-decoration: none;
      text-align: center;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
    }

    .btn {
      width: 100%;
      background: var(--btn);
      color: var(--btnText);
      font-weight: 900;
      font-size: 18px;
      padding: 14px 10px; /* ✅ Increased padding */
      border-radius: 8px;
      margin-top: auto;
    }

    .btn:active {
      transform: translateY(1px)
    }

    .mini-table {
      margin-top: 16px;
      /* border: 1px solid #dadada; */
      border-radius: 2px;
      overflow: hidden;
      background: #fff;
    }

    .mini-head {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: #3b3b3b;
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      min-height: 50px; /* ✅ Increased height */
    }

    .mini-head div,
    .mini-row div {
      padding: 12px 8px; /* ✅ Increased padding */
      text-align: center;
    }

    .mini-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      /* border-top: 1px solid #ededed; */
      align-items: center;
      min-height: 60px; /* ✅ Increased height */
    }

    .mini-row img {
      width: 100px; /* ✅ Increased size */
      height: 40px; /* ✅ Increased size */
      object-fit: contain;
      display: block;
      margin: 0 auto;
      border-radius: 6px; /* ✅ Increased border-radius */
    }

    .mini-row .mbtn {
      background: var(--btn);
      color: #fff;
      font-weight: 900;
      border-radius: 8px; /* ✅ Increased border-radius */
      padding: 9px 12px; /* ✅ Increased padding */
      font-size: 15px; /* ✅ Increased font size */
      margin: 0 auto;
      width: 80px; /* ✅ Increased width */
    }

    /* ===== MAIN TABLE ===== */
    .table {
      /* border: 1px solid #d9d9d9; */
      border-radius: 10px; /* ✅ Increased border-radius */
      overflow: hidden;
      background: #fff;
      margin-top: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* ✅ Added shadow */
    }

    .thead {
      display: grid;
      grid-template-columns: 80px 220px 1fr 150px 110px; /* ✅ Increased column widths */
      background: #3b3b3b;
      color: #fff;
      font-weight: 800;
      font-size: 15px; /* ✅ Increased font size */
      min-height: 65px; /* ✅ Increased height */
    }

    .thead div {
      padding: 12px 6px; /* ✅ Increased padding */
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trow {
      display: grid;
      grid-template-columns: 80px 220px 1fr 150px 110px; /* ✅ Increased column widths */
      align-items: center;
      /* border-top: 1px solid #ececec; */
      min-height: 95px; /* ✅ Significantly increased height */
      background: #fff;
      transition: background-color 0.2s ease; /* ✅ Added transition */
    }

    .trow:hover {
      background-color: #f9f9f9; /* ✅ Added hover effect */
    }

    .trow>div {
      padding: 12px 6px; /* ✅ Increased padding */
      text-align: center;
    }

    .rank {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rank .bubble {
      width: 60px; /* ✅ Increased size */
      height: 60px; /* ✅ Increased size */
      border-radius: 50%;
      background: linear-gradient(135deg, #6e6e6e, #8a8a8a);
      color: #fff;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px; /* ✅ Increased font size */
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    }

    .casino-cell {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5px;
    }

    .casino-cell .casino-img {
      width: 100%; /* ✅ Increased size */
      height: 100%; /* ✅ Increased size */
      object-fit: contain;
      display: block;
      border-radius: 8px; /* ✅ Increased border-radius */
      background: white;
    }

    .bonus {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5px;
    }

    .bonus img {
     width: 100%; /* ✅ Increased size */
      height: 100%; /* ✅ Increased size */
      object-fit: contain;
      display: block;
      border-radius: 8px; /* ✅ Increased border-radius */
     
      background: white;
    }

    .rating {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px; /* ✅ Increased gap */
      direction: ltr;
    }

    .star {
      width: 22px; /* ✅ Increased size */
      height: 22px; /* ✅ Increased size */
      display: inline-block;
      background: conic-gradient(from 0deg, var(--star) 0 100%);
      clip-path: polygon(50% 0%, 62% 35%, 98% 35%, 68% 57%,
          79% 91%, 50% 70%, 21% 91%, 32% 57%,
          2% 35%, 38% 35%);
      filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
    }

    .try {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5px;
    }

    .try .btn-sm {
      width: 120px; /* ✅ Increased width */
      padding: 14px 12px; /* ✅ Increased padding */
      font-size: 16px; /* ✅ Increased font size */
      border-radius: 10px; /* ✅ Increased border-radius */
      background: var(--btn);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 3px 8px rgba(97, 207, 107, 0.4);
      transition: all 0.2s ease;
    }

    .try .btn-sm:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(97, 207, 107, 0.5);
    }

    /* ===== FOOTER (2 parts) ===== */
    footer {
      margin: 0;
      padding: 0;
    }

    .footer-menu {
      background: var(--footerMenuBg);
      padding: 18px 0;
    }

    .foot-links {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 16px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
      direction: rtl;
      font-weight: 800;
      font-size: 14px;
      color: #fff;
    }

    .foot-links a {
      color: #fff;
      text-decoration: none;
      text-align: right;
      width: 100%;
      display: block;
    }

    .foot-links a:hover {
      opacity: .85
    }

    .footer-copy {
      background: var(--footerCopyBg);
      padding: 14px 0 16px;
    }

    .copyright {
      text-align: center;
      font-size: 12px;
      color: #dcdcdc;
      opacity: .9;
      margin: 0;
    }

    /* ===== MOBILE ===== */
    @media (max-width: 900px) {
      .nav-inner {
        justify-content: flex-end;
        padding: 10px 16px;
        overflow-x: auto;
      }

      .grid {
        grid-template-columns: 1fr;
        direction: rtl;
      }

      .feature {
        order: 2;
      }

      .main {
        order: 1;
      }

      .feature-card {
        padding: 18px 16px 14px;
      }

      .emirbet-logo-container {
        height: 60px;
        margin-bottom: 14px;
      }

      .arabic-text-container img {
        max-width: 100%;
        margin-bottom: 14px;
      }

      /* ✅ Updated mobile table layout with bigger sizes */
      .thead,
      .trow {
        grid-template-columns: 120px 1fr 110px; /* ✅ Increased column widths for mobile */
      }

      .thead {
        min-height: 55px; /* ✅ Increased height for mobile */
        font-size: 14px;
      }

      .trow {
        min-height: 85px; /* ✅ Increased height for mobile */
      }

      .thead .col-rating,
      .thead .col-rank,
      .trow .col-rating,
      .trow .col-rank {
        display: none;
      }

      .rank,
      .rating {
        display: none !important;
      }

      .bonus img {
        width: 160px; /* ✅ Increased for mobile */
        height: 50px; /* ✅ Increased for mobile */
      }

      .casino-cell .casino-img {
        width: 140px; /* ✅ Increased for mobile */
        height: 45px; /* ✅ Increased for mobile */
      }

      .try .btn-sm {
        width: 100px; /* ✅ Increased for mobile */
        padding: 12px 10px;
        font-size: 15px;
      }

      .mini-row {
        min-height: 55px; /* ✅ Increased for mobile */
      }

      .mini-row img {
        width: 90px; /* ✅ Increased for mobile */
        height: 35px; /* ✅ Increased for mobile */
      }

      .mini-row .mbtn {
        padding: 8px 10px;
        font-size: 14px;
        width: 75px;
      }

      .foot-links a {
        text-align: right;
        width: auto;
        display: block;
      }

      .logo {
        width: 250px;
        height: 70px;
      }

      .flag {
        width: 60px;
        height: 38px;
      }

      .main .col-title {
        font-size: 28px;
      }

      .feature .col-title {
        font-size: 24px;
      }
    }

    /* Extra small devices */
    @media (max-width: 480px) {
      .nav-inner {
        gap: 12px;
        font-size: 13px;
      }

      .logo {
        width: 220px;
        margin-right: -20px;
      }

      .flag {
        width: 54px;
        height: 34px;
      }

      .main .col-title {
        font-size: 24px;
      }

      .feature .col-title {
        font-size: 22px;
      }

      .arabic-text-container img {
        max-width: 95%;
      }

      /* ✅ Further increased for small mobile */
      .thead,
      .trow {
        grid-template-columns: 110px 1fr 95px;
      }

      .trow {
        min-height: 80px;
      }

      .casino-cell .casino-img {
        width: 120px;
        height: 40px;
      }

      .bonus img {
        width: 140px;
        height: 45px;
      }

      .try .btn-sm {
        width: 90px;
        font-size: 14px;
        padding: 10px 8px;
      }

      .mini-row {
        min-height: 50px;
      }

      .mini-row img {
        width: 80px;
        height: 30px;
      }

      .mini-row .mbtn {
        width: 70px;
        padding: 7px 8px;
        font-size: 13px;
      }
    }