/* ============================================
   CASINO RATING - LIGHT MINIMAL DESIGN
   ============================================ */

/* --- Variables --- */
:root {
  --bg: #f8f9fb;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --accent: #0066ff;
  --accent-light: #e6f0ff;
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

/* --- Container --- */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.logo i {
  color: var(--accent);
  font-size: 22px;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}

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

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

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.btn-quick {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-quick:hover {
  background: #0052cc;
}

.btn-quick i {
  font-size: 11px;
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-menu-btn:hover {
  background: var(--bg-light);
}

.hamburger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.active {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85%;
  height: 100%;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  transition: all 0.2s;
}

.mobile-menu-close:hover {
  background: var(--accent);
  color: #fff;
}

.mobile-nav {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  border-radius: 10px;
  transition: all 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: var(--accent);
  color: #fff;
}

.mobile-nav a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 20px !important;
  font-size: 15px !important;
}

.mobile-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-badge { display: none; }
  .btn-quick:not(.mobile-cta) {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- Scroll to Top Button --- */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #0052cc;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

@media (max-width: 640px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* --- Hero --- */
.hero {
  padding: 60px 0 40px;
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--warning-light);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--warning);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 28px;
}

.hero-text strong {
  color: var(--text);
}

.hero-text em {
  font-style: normal;
  color: var(--accent);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
}

.feature i {
  color: var(--success);
}

.feature strong {
  color: var(--text);
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.btn-main:hover {
  background: #0052cc;
}

/* --- Filters --- */
.filters {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
}

.filters-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.filters-title i {
  color: var(--accent);
}

.filters-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.filter-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-item label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-item label i {
  color: var(--accent);
  font-size: 12px;
}

.filter-item input,
.filter-item select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.filter-item input:focus,
.filter-item select:focus {
  outline: none;
  border-color: var(--accent);
}

.filter-item input[type="range"] {
  padding: 0;
  height: 6px;
  border: none;
  border-radius: 3px;
  background: var(--border);
  cursor: pointer;
  margin-top: 8px;
}

.filter-item input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

/* --- Section Titles --- */
.section-title {
  margin-bottom: 24px;
}

.section-title h2 {
  display: flex;
  align-items: center;
    gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title h2 i {
  color: var(--accent);
}

.section-title p {
  font-size: 15px;
  color: var(--text-light);
}

.section-title p strong {
  color: var(--text);
}

.section-title p em {
  font-style: normal;
  color: var(--accent);
}

/* Section Text */
.section-text {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.section-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 12px;
}

.section-text p:last-child {
  margin-bottom: 0;
}

.section-text p i {
  color: var(--accent);
  margin-right: 8px;
}

.section-text p strong {
  color: var(--text);
}

.section-text p em {
  font-style: normal;
  color: var(--accent);
}

/* --- Rating Section --- */
.rating-section {
  margin-bottom: 48px;
}

/* --- Casino Row (Table-like) --- */
.rating-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.casino-row {
  display: grid;
  grid-template-columns: 50px 100px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.casino-row:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.casino-rank {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.casino-rank.gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
}

.casino-rank.silver {
  background: linear-gradient(135deg, #94a3b8, #64748b);
  color: #fff;
}

.casino-rank.bronze {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
}

.casino-logo {
  width: 100px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: #2b323e;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  padding: 10px;
}

.casino-logo img,
.casino-logo svg {
    width: 100%;
  height: 100%;
  object-fit: contain;
}

.casino-info {
  min-width: 0;
}

.casino-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.casino-name .rating-stars {
  color: #fbbf24;
  font-size: 13px;
}

.casino-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--bg);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-light);
}

.tag i {
  font-size: 10px;
  color: var(--accent);
}

.casino-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
}

.casino-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.casino-meta i {
  color: var(--accent);
  font-size: 12px;
}

.casino-meta strong {
  color: var(--text);
}

.casino-bonus {
  padding: 10px 14px;
  background: var(--accent-light);
  border-radius: 8px;
  margin-top: 10px;
}

.casino-bonus .label {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-bonus .value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.casino-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.smart-score {
  text-align: right;
}

.smart-score .score-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.smart-score .score-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.score-bar {
  width: 80px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}

.score-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.btn-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s;
    white-space: nowrap;
  }

.btn-go:hover {
  background: #0052cc;
}

@media (max-width: 700px) {
  .casino-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .casino-rank {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  
  .casino-row {
    position: relative;
  }
  
  .casino-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .smart-score {
    text-align: left;
  }
  
  .btn-go {
    flex: 1;
    justify-content: center;
  }
}

/* --- Rating Table Section --- */
.rating-table-section {
  margin-bottom: 48px;
}

.rating-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rating-data-table thead {
  background: linear-gradient(135deg, var(--accent), #0052cc);
  color: #fff;
}

.rating-data-table thead th {
  padding: 16px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.rating-data-table thead th i {
  margin-right: 6px;
  opacity: 0.8;
}

.rating-data-table thead .th-rank {
  width: 50px;
  text-align: center;
}

.rating-data-table thead .th-action {
  width: 60px;
  text-align: center;
}

.rating-data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.rating-data-table tbody tr:hover {
  background: var(--bg);
}

.rating-data-table tbody tr:last-child {
  border-bottom: none;
}

.rating-data-table tbody td {
  padding: 14px;
  vertical-align: middle;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
}

.rank-badge.gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
}

.rank-badge.silver {
  background: linear-gradient(135deg, #94a3b8, #64748b);
  color: #fff;
}

.rank-badge.bronze {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
}

.td-casino {
  display: flex;
  align-items: center;
  gap: 12px;
}

.table-logo {
  width: 50px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b323e;
  border-radius: 6px;
  padding: 4px;
  flex-shrink: 0;
}

.table-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.td-casino span {
  font-weight: 600;
  color: var(--text);
}

.stars-small {
  display: inline-flex;
  gap: 1px;
  color: #fbbf24;
  font-size: 11px;
  margin-right: 6px;
}

.license-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}

.license-badge.mga {
  background: #dbeafe;
  color: #1d4ed8;
}

.table-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}

.table-btn:hover {
  background: #0052cc;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .rating-data-table {
    font-size: 13px;
  }
  
  .rating-data-table thead th,
  .rating-data-table tbody td {
    padding: 12px 10px;
  }
  
  .table-logo {
    width: 40px;
    height: 26px;
  }
}

/* --- Casino Reviews --- */
.reviews-section {
  margin-bottom: 48px;
}

.casino-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.review-logo {
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b323e;
  border-radius: 10px;
  padding: 8px;
  flex-shrink: 0;
}

.review-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.review-title {
  flex: 1;
}

.review-title h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  color: #fbbf24;
}

.review-rating span {
  margin-left: 8px;
  color: var(--text-light);
  font-weight: 600;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}

.review-btn:hover {
  background: #0052cc;
}

.review-body {
  padding: 20px;
}

.review-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
}

.review-body p strong {
  color: var(--text);
}

.review-body p em {
  font-style: normal;
  color: var(--accent);
}

.review-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.review-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.review-feature i {
  font-size: 16px;
  color: var(--accent);
}

@media (max-width: 600px) {
  .review-header {
    flex-wrap: wrap;
  }
  
  .review-btn {
  width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
  
  .review-features {
    grid-template-columns: 1fr;
  }
}

/* --- Info Section --- */
.info-section {
  margin-bottom: 48px;
}

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

.tip {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tip-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 12px;
  flex-shrink: 0;
}

.tip-icon i {
  font-size: 20px;
  color: var(--accent);
}

.tip-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tip-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.tip-content p strong {
  color: var(--text);
}

.tip-content p em {
  font-style: normal;
  color: var(--accent);
}

/* --- Featured Casinos --- */
.featured-casinos {
  margin-top: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.featured-casinos h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}

.featured-casinos h3 i {
  color: #fbbf24;
}

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

.featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.featured-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.featured-logo {
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b323e;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 12px;
}

.featured-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.featured-info {
  margin-bottom: 14px;
}

.featured-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.featured-bonus {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.featured-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.featured-meta span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.featured-meta i {
  font-size: 10px;
  color: var(--success);
}

.featured-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 12px;
  color: #fbbf24;
}

.featured-rating span {
  margin-left: 6px;
  color: var(--text-light);
  font-weight: 600;
}

.featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s;
  width: 100%;
  justify-content: center;
}

.featured-btn:hover {
  background: #0052cc;
}

@media (max-width: 700px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Bonuses Section --- */
.bonuses-section {
  margin-bottom: 48px;
}

.bonus-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.bonus-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.bonus-block h3 i {
  color: var(--accent);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}

.data-table thead th {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: var(--bg);
}

.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: var(--bg);
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

.score-pill.high {
  background: var(--success-light);
  color: var(--success);
}

/* --- How Section --- */
.how-section {
  margin-bottom: 48px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.how-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.how-num {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
}

.how-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.how-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.how-item p strong {
  color: var(--text);
}

.how-item p em {
  font-style: normal;
  color: var(--accent);
}

/* --- Text Section --- */
.text-section {
  margin-bottom: 48px;
}

.text-block {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.text-block:last-child {
  margin-bottom: 0;
}

.text-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.text-block h2 i {
  color: var(--accent);
}

.text-block p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.text-block p i {
  color: var(--success);
  margin-right: 8px;
}

.text-block p strong {
  color: var(--text);
}

.text-block p em {
  font-style: normal;
  color: var(--accent);
}

/* --- Casino Games --- */
.games-section {
  margin-bottom: 48px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.game-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: center;
}

.game-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.game-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin: 0 auto 16px;
}

.game-icon i {
  font-size: 24px;
  color: #fff;
}

.game-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.game-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 14px;
}

.game-card p strong {
  color: var(--text);
}

.game-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.game-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.game-stats i {
  font-size: 11px;
  color: var(--accent);
}

/* --- Payment Methods --- */
.payments-section {
  margin-bottom: 48px;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.payment-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.payment-category:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.payment-header i {
  font-size: 20px;
  color: var(--accent);
}

.payment-header h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.payment-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.payment-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.payment-item i {
  font-size: 16px;
  color: var(--text-light);
}

.payment-item i.fa-cc-visa {
  color: #1a1f71;
}

.payment-item i.fa-cc-mastercard {
  color: #eb001b;
}

.payment-item i.fa-bitcoin {
  color: #f7931a;
}

.payment-item i.fa-ethereum {
  color: #627eea;
}

.payment-item i.fa-google-pay {
  color: #4285f4;
}

.payment-item i.fa-apple-pay {
  color: #000;
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.payment-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.payment-info i {
  font-size: 11px;
  color: var(--success);
}

/* --- Providers --- */
.providers-section {
  margin-bottom: 48px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.provider-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.provider-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.provider-card .provider-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.provider-card .provider-info {
  flex: 1;
  min-width: 0;
}

.provider-card .provider-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.provider-card .provider-games {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.provider-card .provider-games i {
  font-size: 10px;
  color: var(--success);
}

/* --- FAQ --- */
.faq-section {
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
    flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--bg);
}

.faq-item summary .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 6px;
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}

.faq-item[open] summary .icon {
  background: var(--accent);
  color: #fff;
}

.faq-item .answer {
  padding: 0 20px 20px 56px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item .answer strong {
  color: var(--text);
}

.faq-item .answer em {
  font-style: normal;
  color: var(--accent);
}

/* --- Warning --- */
.warning-section {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--warning-light);
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  margin-bottom: 48px;
}

.warning-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warning);
  border-radius: 12px;
  flex-shrink: 0;
}

.warning-icon i {
  font-size: 20px;
  color: #fff;
}

.warning-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.warning-text p {
  font-size: 14px;
  color: #92400e;
  line-height: 1.6;
}

.warning-text p strong {
  color: #78350f;
}

.warning-text p em {
  font-style: normal;
  text-decoration: underline;
}

@media (max-width: 500px) {
  .warning-section {
    flex-direction: column;
    text-align: center;
  }
  
  .warning-icon {
    margin: 0 auto;
  }
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.footer-left span,
.footer-right span,
.footer-right a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--accent);
}

@media (max-width: 500px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-left,
  .footer-right {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- Modal --- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  padding: 20px;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.modal-header strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
}

.modal-header strong i {
  color: var(--accent);
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: none;
  border-radius: 8px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #fee2e2;
  color: #dc2626;
}

.modal-body {
  padding: 20px;
}
