/* =============================================
   MENACASINO — New Design System
   RTL Arabic | Dark Casino Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:      #070b14;
  --bg-dark:      #0d1221;
  --bg-card:      #121929;
  --bg-card-alt:  #0f1520;
  --border:       #1e2840;
  --border-light: #263050;
  --gold:         #d4a017;
  --gold-light:   #f0c040;
  --gold-dim:     #8a6a10;
  --green:        #16a34a;
  --green-hover:  #15803d;
  --text:         #e2e8f0;
  --text-muted:   #8892a4;
  --text-dim:     #5a6478;
  --white:        #ffffff;
  --red:          #dc2626;
  --nav-h:        56px;
  --header-h:     120px;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 4px 24px rgba(0,0,0,.5);
  --shadow-card:  0 2px 12px rgba(0,0,0,.4);
}

html {
  direction: rtl;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }


/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: .8rem;
  color: var(--text-muted);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.trust-bar .trust-items {
  display: flex;
  gap: 20px;
  align-items: center;
}
.trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-bar .trust-item svg { width: 14px; height: 14px; fill: var(--gold); }
.trust-bar .trust-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
}
.trust-bar .trust-lang a {
  color: var(--text-muted);
  padding: 2px 6px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: .75rem;
}
.trust-bar .trust-lang a:hover { color: var(--gold); border-color: var(--gold-dim); }


/* =============================================
   HEADER / BRANDING
   ============================================= */
.site-header {
  background: linear-gradient(135deg, #0d1221 0%, #111827 100%);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 52px; width: auto; }
.site-logo-text { display: flex; flex-direction: column; }
.site-logo-text .brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.2;
}
.site-logo-text .brand-tagline {
  font-size: .72rem;
  color: var(--text-muted);
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn-bonus {
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #0a0e1a;
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: filter .2s;
}
.header-cta .btn-bonus:hover { filter: brightness(1.1); color: #0a0e1a; }
.header-cta .badge-18 {
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: .7rem;
  padding: 4px 8px;
  border-radius: 4px;
}


/* =============================================
   NAV
   ============================================= */
.site-nav {
  background: #0f1624;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  align-items: stretch;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: var(--nav-h);
  color: var(--text);
  font-size: .88rem;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.nav-menu > li > a svg { width: 12px; height: 12px; fill: currentColor; transition: transform .2s; }
.nav-menu > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  z-index: 200;
  overflow: hidden;
}

.nav-menu > li:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text);
  font-size: .85rem;
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: var(--border); color: var(--gold-light); }
.dropdown-menu li:last-child a { border-bottom: none; }

/* Nav CTA */
.nav-bonus-pill {
  background: var(--green);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin: auto 16px auto 0;
  white-space: nowrap;
  transition: background .2s;
}
.nav-bonus-pill:hover { background: var(--green-hover); color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 16px;
  margin-left: 0;
  margin-right: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}


/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}


/* =============================================
   PAGE LAYOUT (sidebar + main)
   ============================================= */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 32px 0 48px;
  align-items: start;
}

.page-main { min-width: 0; }
.page-sidebar { min-width: 0; }

/* Page title */
.page-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.page-subtitle {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 24px;
}

/* Section heading */
.section-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  padding: 0 0 12px;
  border-bottom: 2px solid var(--gold-dim);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-heading::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
}


/* =============================================
   CASINO RATING CARD
   ============================================= */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 36px 100px 1fr auto auto;
  align-items: center;
  gap: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.casino-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 1px var(--gold-dim), var(--shadow-card);
}

.casino-card.gold-card { border-color: var(--gold-dim); }
.casino-card.gold-card .card-rank { color: var(--gold); }

.card-rank {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dim);
  text-align: center;
}

.card-logo {
  background: #fff;
  border-radius: var(--radius);
  padding: 6px;
  width: 100px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-logo img { max-height: 52px; max-width: 90px; object-fit: contain; }
.card-logo .logo-placeholder {
  font-size: .7rem;
  color: #999;
  text-align: center;
  line-height: 1.2;
}

.card-info { min-width: 0; }
.card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.card-bonus {
  font-size: .85rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 4px;
}
.card-stars { display: flex; gap: 2px; }
.card-stars .star { color: var(--gold); font-size: .9rem; }
.card-stars .star.empty { color: var(--border-light); }

.card-review {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.card-review a { color: var(--text-muted); text-decoration: underline dotted; }
.card-review a:hover { color: var(--gold); }

.card-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.badge-tag {
  font-size: .7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}
.badge-tag.new { background: #1e3a2a; color: #4ade80; border: 1px solid #166534; }
.badge-tag.hot { background: #3a1e1e; color: #f87171; border: 1px solid #991b1b; }
.badge-tag.top { background: #2a1e0a; color: var(--gold-light); border: 1px solid var(--gold-dim); }

.card-cta { }
.btn-get-bonus {
  display: block;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-align: center;
  white-space: nowrap;
  transition: filter .2s;
  min-width: 130px;
}
.btn-get-bonus:hover { filter: brightness(1.1); color: #fff; }
.btn-get-bonus small {
  display: block;
  font-size: .68rem;
  font-weight: 400;
  opacity: .8;
  margin-top: 2px;
}


/* =============================================
   CASINO REVIEW PAGE — HERO CARD
   ============================================= */
.review-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
}

.review-hero .hero-logo {
  background: #fff;
  border-radius: var(--radius);
  padding: 12px;
  width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-hero .hero-logo img { max-height: 76px; max-width: 120px; object-fit: contain; }

.review-hero .hero-info .casino-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.review-hero .hero-info .hero-stars { display: flex; gap: 4px; margin-bottom: 10px; }
.review-hero .hero-info .hero-stars .star { color: var(--gold); font-size: 1.1rem; }
.review-hero .hero-info .hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .stat-label { font-size: .72rem; color: var(--text-muted); }
.hero-stat .stat-value { font-size: .9rem; font-weight: 700; color: var(--white); }
.hero-stat .stat-value.gold { color: var(--gold-light); }

.review-hero .hero-cta { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.review-hero .btn-play {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0e1a;
  font-weight: 900;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: filter .2s;
  min-width: 160px;
  text-align: center;
}
.review-hero .btn-play:hover { filter: brightness(1.08); color: #0a0e1a; }
.review-hero .hero-cta .cta-note {
  font-size: .7rem;
  color: var(--text-muted);
  max-width: 160px;
}

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.pros-cons .pc-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.pros-cons .pc-box.pros { border-top: 3px solid #16a34a; }
.pros-cons .pc-box.cons { border-top: 3px solid var(--red); }
.pros-cons .pc-title {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pros-cons .pc-box.pros .pc-title { color: #4ade80; }
.pros-cons .pc-box.cons .pc-title { color: #f87171; }
.pros-cons ul li {
  font-size: .83rem;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.pros-cons ul li:last-child { border-bottom: none; }
.pros-cons ul li::before {
  flex-shrink: 0;
  margin-top: 2px;
}
.pc-box.pros ul li::before { content: '✓'; color: #4ade80; font-weight: 700; }
.pc-box.cons ul li::before { content: '✗'; color: #f87171; font-weight: 700; }

/* Article content */
.article-body { font-size: .93rem; line-height: 1.85; color: var(--text); }
.article-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 28px 0 12px;
  padding-right: 12px;
  border-right: 3px solid var(--gold);
}
.article-body p { margin-bottom: 14px; }
.article-body a { color: var(--gold); }
.article-body a:hover { color: var(--gold-light); }


/* =============================================
   RATING TABLE (inside review)
   ============================================= */
.rating-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.rating-row:last-child { border-bottom: none; }
.rating-row .r-label { color: var(--text-muted); }
.rating-row .r-value { font-weight: 600; color: var(--white); }
.rating-row .r-stars { display: flex; gap: 3px; }
.rating-row .r-stars .star { color: var(--gold); font-size: .85rem; }
.rating-row .r-stars .star.empty { color: var(--border-light); }
.rating-row .r-bar { display: flex; align-items: center; gap: 8px; }
.rating-row .bar-track {
  width: 100px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.rating-row .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 3px;
}


/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.widget-title {
  background: #0f1624;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-title::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--gold);
  border-radius: 2px;
  display: block;
}

.widget-body { padding: 16px; }

/* Top casino widget */
.sidebar-casino-card {
  text-align: center;
  padding: 8px 0;
}
.sidebar-casino-card .sc-logo {
  background: #fff;
  border-radius: var(--radius);
  width: 80px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  padding: 6px;
}
.sidebar-casino-card .sc-name { font-weight: 700; color: var(--white); font-size: .9rem; margin-bottom: 4px; }
.sidebar-casino-card .sc-bonus { font-size: .8rem; color: var(--gold-light); margin-bottom: 10px; }
.sidebar-casino-card .btn-sc {
  display: block;
  background: linear-gradient(135deg, var(--green), var(--green-hover));
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: filter .2s;
}
.sidebar-casino-card .btn-sc:hover { filter: brightness(1.1); color: #fff; }

/* Game links widget */
.game-link-list { display: flex; flex-direction: column; gap: 2px; }
.game-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  transition: background .15s;
  cursor: pointer;
}
.game-link-item:hover { background: var(--border); }
.game-link-item img { width: 36px; height: 36px; border-radius: 4px; object-fit: cover; }
.game-link-item .game-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.game-link-item .game-text .game-name {
  font-size: .83rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.game-link-item .game-text .game-sub {
  font-size: .72rem;
  color: var(--text-muted);
}

/* Banner widget */
.banner-widget { text-align: center; }
.banner-widget a { display: block; }
.banner-widget img { border-radius: var(--radius); width: 100%; }
.banner-widget .banner-placeholder {
  background: var(--border);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: .8rem;
}

/* Country links */
.country-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.country-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .8rem;
  color: var(--text);
  transition: border-color .15s, color .15s;
}
.country-link:hover { border-color: var(--gold-dim); color: var(--gold-light); }
.country-link .flag { font-size: 1rem; }


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

.footer-top {
  padding: 40px 0 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand .brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px;
  height: 34px;
  background: var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .85rem;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--gold-dim); color: var(--gold-light); }

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: .8rem; color: var(--text-muted); transition: color .15s; }
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom .copyright {
  font-size: .78rem;
  color: var(--text-dim);
}
.footer-trust { display: flex; align-items: center; gap: 12px; }
.footer-trust img { height: 28px; width: auto; filter: grayscale(1) brightness(.7); }
.footer-trust img:hover { filter: none; }

.footer-disclaimer {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: .73rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

.footer-logos-section {
  border-top: 1px solid var(--border);
  padding: 24px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-logos-label {
  font-size: .68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 100px;
  border-inline-end: 1px solid var(--border);
  padding-inline-end: 14px;
}
.footer-logos-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-logos-strip img {
  height: 28px;
  width: auto;
  filter: grayscale(1) brightness(.45);
  opacity: .65;
  transition: filter .2s, opacity .2s;
}
.footer-logos-strip img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}


/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--text); }


/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    z-index: 300;
  }
  .nav-menu.open > li > a { height: auto; padding: 14px 20px; border-bottom: 1px solid var(--border); border-left: none; }
  .dropdown-menu { position: static; display: none; box-shadow: none; border: none; border-radius: 0; background: var(--bg-deep); }
  .nav-menu.open > li.open .dropdown-menu { display: block; }

  .header-inner { flex-wrap: wrap; }
  .header-cta .badge-18 { display: none; }

  .casino-card { grid-template-columns: 28px 80px 1fr; }
  .card-tag, .card-cta { grid-column: 1 / -1; display: flex; flex-direction: row; align-items: center; justify-content: space-between; }
  .btn-get-bonus { min-width: unset; width: 100%; }

  .review-hero { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-bar .trust-items { gap: 10px; font-size: .72rem; }

  .site-nav { position: relative; }
}

@media (max-width: 420px) {
  .trust-bar .trust-items { display: none; }
}


/* =============================================
   HERO BANNER (homepage)
   ============================================= */
.hero-banner {
  position: relative;
  overflow: hidden;
}
.hero-inner {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(7,11,20,.85) 0%, rgba(7,11,20,.45) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  max-width: 520px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--gold-dim);
}
.hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 10px;
}
.hero-title span { color: var(--gold-light); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 22px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #07111a;
  font-weight: 800;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 8px;
  display: inline-block;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212,160,23,.4);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,160,23,.55); }
.hero-btn-secondary {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.4);
}
.hero-btn-secondary:hover { color: var(--gold-light); border-color: var(--gold-dim); }
@media (max-width: 640px) {
  .hero-inner { min-height: 240px; }
  .hero-title { font-size: 1.4rem; }
  .hero-inner::after { background: rgba(7,11,20,.7); }
}


/* =============================================
   CASINO LOGO STRIP (homepage companies bar)
   ============================================= */
.casino-logo-strip {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.casino-logo-strip .container { display: flex; align-items: center; gap: 6px; }
.cls-label {
  font-size: .68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
  flex-shrink: 0;
  padding-inline-end: 16px;
  border-inline-end: 1px solid var(--border);
}
.cls-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  overflow: hidden;
}
.cls-logos img {
  height: 36px;
  width: auto;
  filter: grayscale(1) brightness(.55);
  opacity: .65;
  transition: filter .2s, opacity .2s;
  flex-shrink: 0;
}
.cls-logos img:hover { filter: none; opacity: 1; }


/* =============================================
   GAMES GRID (homepage)
   ============================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 24px;
}
.game-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .15s, border-color .15s;
}
.game-card:hover { transform: translateY(-3px); border-color: var(--gold-dim); }
.game-card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.game-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,.75) 0%, transparent 55%);
}
.game-card-body {
  padding: 14px;
}
.game-card-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.game-card-links { display: flex; gap: 8px; flex-wrap: wrap; }
.game-card-links a {
  font-size: .75rem;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 600;
}
.game-link-play {
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid rgba(212,160,23,.3);
}
.game-link-play:hover { background: rgba(212,160,23,.25); color: var(--gold-light); }
.game-link-free {
  background: rgba(255,255,255,.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.game-link-free:hover { color: var(--text); border-color: var(--text-muted); }
@media (max-width: 640px) {
  .games-grid { grid-template-columns: 1fr; }
}


/* =============================================
   BONUS HIGHLIGHT CARDS (homepage)
   ============================================= */
.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0;
}
.bonus-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color .15s;
}
.bonus-card:hover { border-color: var(--gold-dim); }
.bonus-card-logo img { width: 48px; height: 48px; object-fit: contain; border-radius: 6px; }
.bonus-card-info { min-width: 0; }
.bonus-card-name { font-size: .85rem; font-weight: 700; color: var(--text); }
.bonus-card-offer { font-size: .8rem; color: var(--gold-light); margin-top: 2px; }
.bonus-card-code {
  display: inline-block;
  margin-top: 4px;
  font-size: .7rem;
  background: rgba(212,160,23,.12);
  color: var(--gold);
  border: 1px dashed var(--gold-dim);
  border-radius: 4px;
  padding: 2px 7px;
  font-family: monospace;
}
.bonus-card-cta a {
  display: inline-block;
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 700;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #07111a;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity .15s;
}
.bonus-card-cta a:hover { opacity: .9; }
@media (max-width: 500px) {
  .bonus-card { grid-template-columns: 42px 1fr; }
  .bonus-card-cta { grid-column: 1 / -1; }
  .bonus-card-cta a { width: 100%; text-align: center; display: block; }
}


/* =============================================
   PARTNER SITES TABLE
   ============================================= */
.partner-sites {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 16px 0;
}
.partner-row {
  display: grid;
  grid-template-columns: 1.2fr 2.5fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.partner-row:last-child { border-bottom: none; }
.partner-row:nth-child(even) { background: rgba(255,255,255,.02); }
.partner-name { font-size: .85rem; font-weight: 700; color: var(--text); }
.partner-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }
.partner-link a {
  font-size: .75rem;
  padding: 6px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.partner-link a:hover { color: var(--gold); border-color: var(--gold-dim); }
@media (max-width: 500px) {
  .partner-row { grid-template-columns: 1fr; gap: 6px; }
}
