/* =============================================
   me88baccarat.com - Main Stylesheet
   Brand Colors: Orange #ff4e00 on Dark #171718
   ============================================= */

:root {
  --primary: #ff4e00;
  --primary-hover: #e04400;
  --primary-glow: rgba(255, 78, 0, 0.3);
  --secondary: #f88c00;
  --gold: #ecc01e;
  --bg-dark: #171718;
  --bg-darker: #0c0c0c;
  --bg-card: #1e1e20;
  --bg-nav: #0f0f10;
  --bg-section: #222224;
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #9da5b7;
  --text-gold: #ecc01e;
  --border: rgba(255,78,0,0.2);
  --border-light: rgba(255,255,255,0.08);
  --green: #44972a;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-orange: 0 4px 20px rgba(255,78,0,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { color: var(--text-light); margin-bottom: 1rem; }

ul, ol { padding-left: 1.5rem; color: var(--text-light); }
li { margin-bottom: 0.4rem; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 20px;
}

.logo-wrap img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: rgba(255,78,0,0.1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: var(--shadow);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: none;
  font-weight: 500;
}

.dropdown-menu a:hover {
  color: var(--primary);
  background: rgba(255,78,0,0.08);
}

.header-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,78,0,0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #f0a000);
  color: #1a1000;
  font-weight: 800;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236,192,30,0.4);
  color: #1a1000;
}

.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--bg-darker);
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.slide-content h2 {
  font-size: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  margin-bottom: 12px;
  color: #fff;
}

.slide-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.slider-dot.active { background: var(--primary); transform: scale(1.3); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.slider-arrow:hover { background: var(--primary); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ---- TICKER ---- */
.marquee-bar {
  background: var(--primary);
  padding: 8px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- SECTIONS ---- */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--bg-darker); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 20px auto 0;
}

.badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

/* ---- GRID ---- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ---- CARDS ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}

.card-img {
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ---- PROVIDER CARDS ---- */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.provider-card:hover {
  border-color: var(--primary);
  background: rgba(255,78,0,0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}

.provider-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
}

.provider-card h3 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.provider-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.provider-card .card-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  border: 1px solid var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ---- GAME CATEGORY ---- */
.game-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game-cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  display: block;
  text-decoration: none;
}

.game-cat-card:hover { transform: scale(1.03); }

.game-cat-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.game-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.game-cat-overlay h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}

.game-cat-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.stat-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin: 0;
}

/* ---- FEATURES ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-orange);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- PROMO CARDS ---- */
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.promo-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-orange);
}

.promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.promo-body {
  padding: 20px;
}

.promo-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.promo-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.promo-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ---- BONUS HIGHLIGHT ---- */
.bonus-highlight {
  background: linear-gradient(135deg, rgba(255,78,0,0.15), rgba(248,140,0,0.1));
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.bonus-text h2 { font-size: 1.8rem; color: var(--gold); }
.bonus-text p { color: var(--text-muted); }
.bonus-amount {
  text-align: center;
  min-width: 180px;
}
.bonus-amount .number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.bonus-amount .label {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ---- FAQ ---- */
.faq-section { padding: 64px 0; }

.faq-list { max-width: 860px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--primary); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--bg-card);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(255,78,0,0.08); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 18px 22px;
  background: rgba(255,78,0,0.04);
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ---- PAYMENT ---- */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 24px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.payment-item:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img { height: 38px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-disclaimer {
  background: rgba(0,0,0,0.3);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-section) 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,78,0,0.12) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248,140,0,0.08) 0%, transparent 70%);
}

.page-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

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

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,78,0,0.1), rgba(236,192,30,0.05));
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.highlight-box p { margin: 0; color: var(--text-light); }

/* ---- TABLE ---- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.styled-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}

.styled-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
}

.styled-table tr { background: var(--bg-card); }
.styled-table tr:nth-child(even) { background: rgba(255,78,0,0.04); }
.styled-table tr:hover { background: rgba(255,78,0,0.08); }

/* ---- CONTENT AREA ---- */
.content-area {
  max-width: 900px;
  margin: 0 auto;
}

.content-area h2 {
  font-size: 1.6rem;
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.content-area h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--secondary);
}

/* ---- 404 ---- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.error-number {
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.8;
}

.error-page h2 {
  font-size: 1.8rem;
  margin: 16px 0 12px;
}

.error-page p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ---- MOBILE MENU ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- TRUST BADGES ---- */
.trust-bar {
  background: var(--bg-section);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-item .icon { color: var(--primary); font-size: 1.2rem; }

/* ---- STEP CARDS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 16px;
}

.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, rgba(255,78,0,0.15), rgba(0,0,0,0));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}

.cta-section h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-section p { color: var(--text-muted); max-width: 540px; margin: 0 auto 28px; }

/* ---- REVIEW STARS ---- */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

/* ---- LIVE BADGE ---- */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(68,151,42,0.15);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ---- PROVIDER PAGE SPECIFIC ---- */
.provider-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-darker), var(--bg-section));
  border-bottom: 1px solid var(--border);
}

.provider-logo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
}

/* ---- NOTIFICATION BAR ---- */
.notif-bar {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  padding: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.notif-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .provider-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 44px 0; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  .slide img { height: 260px; }
  .slide-content h2 { font-size: 1.4rem; }
  .slide-overlay { padding: 0 24px; }

  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .game-cat-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .bonus-highlight { flex-direction: column; text-align: center; }
  .header-btns .btn-outline { display: none; }
}

@media (max-width: 480px) {
  .provider-grid { grid-template-columns: 1fr; }
  .error-number { font-size: 5rem; }
}
