/* ============================================================
   ukcasinovault365.com — Dark Elite Theme
   ============================================================ */

:root {
  --bg-primary: #0d1117;
  --bg-card: #161b22;
  --bg-elevated: #1c2230;
  --bg-hover: #21262d;
  --accent: #ffb300;
  --accent-hover: #ffc933;
  --accent-dim: rgba(255, 179, 0, 0.12);
  --red: #e53935;
  --red-dim: rgba(229, 57, 53, 0.12);
  --text-primary: #e6edf3;
  --text-secondary: #8b949e;
  --text-muted: #484f58;
  --border: #30363d;
  --border-light: #21262d;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(255, 179, 0, 0.15);
  --font-main:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 0.2s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-hover);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.3;
  font-weight: 700;
}
h1 {
  font-size: clamp(28px, 4vw, 48px);
}
h2 {
  font-size: clamp(22px, 3vw, 32px);
}
h3 {
  font-size: clamp(18px, 2.5vw, 22px);
}
h4 {
  font-size: 17px;
}
.section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.view-all {
  font-size: 13px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  transition: all var(--transition);
  white-space: nowrap;
}
.view-all:hover {
  background: var(--accent);
  color: #000;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 179, 0, 0.3);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: #c62828;
  color: #fff;
}
.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-top {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--text-primary);
}
.header-logo img {
  width: 36px;
  height: 36px;
}
.header-logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}
.header-logo-text span {
  color: var(--accent);
}
.header-search {
  flex: 1;
  max-width: 420px;
  position: relative;
}
.header-search input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px 9px 40px;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}
.header-search input::placeholder {
  color: var(--text-muted);
}
.header-search input:focus {
  border-color: var(--accent);
}
.header-search .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.header-nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.header-nav ul {
  display: flex;
  gap: 2px;
  padding: 0;
}
.header-nav ul li a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.header-nav ul li a:hover,
.header-nav ul li a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: var(--accent-dim);
}
.nav-icon {
  font-size: 16px;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 40%, #0f1620 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 179, 0, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(229, 57, 53, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 179, 0, 0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 {
  margin-bottom: 16px;
}
.hero h1 span {
  color: var(--accent);
}
.hero-desc {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}
.hero-cat:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}
.hero-cat .cat-icon {
  font-size: 18px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   TABS
   ============================================================ */
.tabs-section {
  padding: 52px 0;
}
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  margin-bottom: -1px;
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.cards-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Casino Card ── */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.casino-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.casino-card-logo {
  background: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.casino-card-logo img {
  max-height: 52px;
  max-width: 160px;
  object-fit: contain;
  margin: 0 auto;
}
.casino-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.casino-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.casino-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars {
  display: flex;
  gap: 2px;
}
.star {
  color: var(--accent);
  font-size: 13px;
}
.star.empty {
  color: var(--text-muted);
}
.rating-num {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}
.casino-card-tag {
  display: inline-block;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(255, 179, 0, 0.2);
}
.casino-card-tag.red {
  background: var(--red-dim);
  color: var(--red);
  border-color: rgba(229, 57, 53, 0.2);
}
.casino-card-features {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.casino-card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border-light);
}
.casino-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ── Slot Card ── */
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.slot-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.slot-card-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #111;
}
.slot-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.slot-card:hover .slot-card-img img {
  transform: scale(1.05);
}
.slot-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.slot-card:hover .slot-card-overlay {
  opacity: 1;
}
.slot-badge-provider {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
}
.slot-card-body {
  padding: 14px;
}
.slot-card-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.slot-card-meta {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: var(--text-secondary);
}
.slot-rtp {
  color: var(--accent);
  font-weight: 600;
}

/* ── Sportsbook Card ── */
.sportsbook-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  transition: all var(--transition);
}
.sportsbook-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.sportsbook-logo {
  background: #fff;
  border-radius: 8px;
  width: 80px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}
.sportsbook-logo img {
  max-width: 64px;
  max-height: 40px;
  object-fit: contain;
}
.sportsbook-info {
  flex: 1;
  min-width: 0;
}
.sportsbook-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.sportsbook-desc {
  font-size: 12px;
  color: var(--text-secondary);
}
.sportsbook-card .btn {
  flex-shrink: 0;
}

/* ── Bonus Card ── */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.bonus-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
}
.bonus-casino-logo {
  background: #fff;
  border-radius: 6px;
  width: 56px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}
.bonus-casino-logo img {
  max-width: 44px;
  max-height: 28px;
  object-fit: contain;
}
.bonus-casino-name {
  font-size: 14px;
  font-weight: 700;
}
.bonus-card-body {
  padding: 16px;
  flex: 1;
}
.bonus-amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.bonus-type {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.bonus-details {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.bonus-card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border-light);
}
.bonus-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ── News Card ── */
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.news-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.news-card-img {
  height: 180px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--border);
}
.news-card-body {
  padding: 20px;
}
.news-card-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 10px;
}
.news-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}
.news-card-date {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Review Card ── */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}
.review-user {
  flex: 1;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
}
.review-date {
  font-size: 11px;
  color: var(--text-muted);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.review-stars .star {
  font-size: 14px;
}
.review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}
.review-casino {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
  width: 100%;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* ── Stats Block ── */
.stats-block {
  background: linear-gradient(135deg, #1a1f10 0%, #0f1a0a 100%);
  border: 1px solid rgba(255, 179, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin: 0;
}
.stats-block.red-theme {
  background: linear-gradient(135deg, #1a0f0f 0%, #150a0a 100%);
  border-color: rgba(229, 57, 53, 0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-top: 28px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── About Blocks ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.about-block:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.about-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.about-block h3 {
  margin-bottom: 12px;
}
.about-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Section Spacing ── */
.section {
  padding: 56px 0;
}
.section--dark {
  background: var(--bg-card);
}
.section--elevated {
  background: var(--bg-elevated);
}
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Filters ── */
.filters-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0;
  margin-bottom: 24px;
}
.filter-btn {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.filters-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 4px;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}
.page-hero h1 {
  margin-bottom: 10px;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 680px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--text-muted);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb span {
  color: var(--text-primary);
}

/* ── Forms ── */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.form-control {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-main);
  transition: border-color var(--transition);
  outline: none;
}
.form-control::placeholder {
  color: var(--text-muted);
}
.form-control:focus {
  border-color: var(--accent);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
select.form-control {
  cursor: pointer;
}
.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ── Rating Stars Display ── */
.rating-display {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rating-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  flex: 1;
  min-width: 80px;
}
.rating-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}

/* ── Badge ── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-gold {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(255, 179, 0, 0.3);
}
.badge-red {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(229, 57, 53, 0.3);
}
.badge-green {
  background: rgba(46, 160, 67, 0.12);
  color: #3fb950;
  border: 1px solid rgba(46, 160, 67, 0.3);
}

/* ── Page Content / Articles ── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.sidebar-card h4 {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--accent);
}

/* ── Info Box ── */
.info-box {
  background: var(--accent-dim);
  border: 1px solid rgba(255, 179, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.info-box.red {
  background: var(--red-dim);
  border-color: rgba(229, 57, 53, 0.2);
}

/* ── Steps ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content h4 {
  margin-bottom: 6px;
  font-size: 15px;
}
.step-content p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── Resource Cards (Responsible Gambling) ── */
.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}
.resource-card:hover {
  border-color: var(--accent);
}
.resource-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.resource-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
}
.resource-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080c11;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 32px;
  height: 32px;
}
.footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}
.footer-logo-text span {
  color: var(--accent);
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-rg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 6px;
  margin-top: 8px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-text {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
}
.footer-links-inline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links-inline a {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-links-inline a:hover {
  color: var(--accent);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-search {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-nav {
    display: none;
  }
  .header-nav.open {
    display: block;
  }
  .header-nav ul {
    flex-direction: column;
    padding: 8px 0;
  }
  .header-nav ul li a {
    padding: 12px 20px;
    border-bottom: none;
    border-left: 2px solid transparent;
  }
  .header-nav ul li a.active,
  .header-nav ul li a:hover {
    border-left-color: var(--accent);
    border-bottom: none;
  }
  .hero {
    padding: 40px 0 36px;
  }
  .hero-stats {
    gap: 20px;
  }
  .cards-grid--5,
  .cards-grid--4,
  .cards-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid--5,
  .cards-grid--4,
  .cards-grid--3,
  .cards-grid--2 {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .hero-cats {
    gap: 8px;
  }
  .hero-cat {
    padding: 8px 14px;
    font-size: 13px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 20px;
  }
  .stats-block {
    padding: 28px 20px;
  }
}

/* ── Utility ── */
.text-accent {
  color: var(--accent);
}
.text-muted {
  color: var(--text-muted);
}
.text-secondary {
  color: var(--text-secondary);
}
.text-center {
  text-align: center;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}
.hidden {
  display: none !important;
}
.w-full {
  width: 100%;
}

/* ── Image placeholders — shown while AI-generated images are not yet in place ── */
.img-placeholder {
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    var(--bg-hover) 100%
  );
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}
.img-placeholder::after {
  content: attr(data-label);
}

/* Feature/hero images */
.site-image {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.site-image-hero {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.site-image-banner {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.site-image-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-image-featured {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

/* Provider banner cards */
.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.provider-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.provider-card-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.provider-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.provider-card:hover .provider-card-img img {
  transform: scale(1.04);
}
.provider-card-body {
  padding: 16px;
}
.provider-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.provider-card-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* Sport category cards */
.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.sport-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.sport-card-img {
  height: 180px;
  overflow: hidden;
}
.sport-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.sport-card:hover .sport-card-img img {
  transform: scale(1.05);
}
.sport-card-label {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

/* News featured image in article */
.article-featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 28px;
}

/* Hero visual split */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}
.hero-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  .hero-split-img {
    display: none;
  }
  .article-featured-img {
    height: 220px;
  }
  .site-image-featured {
    height: 200px;
  }
  .provider-card-img {
    height: 120px;
  }
  .sport-card-img {
    height: 140px;
  }
}
