/* =========================================
   me88 Malaysia - Main Stylesheet
   Brand: me88 | Domain: malaysiame88.com
   ========================================= */

/* CSS Variables */
:root {
  --orange: #ff4e00;
  --orange-light: #ff6a24;
  --orange-dark: #cc3d00;
  --dark-bg: #171718;
  --darker-bg: #0c0c0c;
  --card-bg: #1e1e20;
  --card-border: #2a2a2e;
  --nav-bg: #121214;
  --text-primary: #ffffff;
  --text-secondary: #9da5b7;
  --text-muted: #6b7280;
  --gold: #f5c518;
  --green: #22c55e;
  --footer-bg: #0a0a0b;
  --border: #2a2a2e;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =================== TYPOGRAPHY =================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
}
.section-title span { color: var(--orange); }
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* =================== NAVBAR =================== */
.navbar {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-primary);
  background: rgba(255, 78, 0, 0.12);
}
.nav-menu a.active { color: var(--orange); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-login {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-login:hover {
  background: var(--orange);
  color: #fff;
}
.btn-register {
  background: var(--orange);
  border: 1.5px solid var(--orange);
  color: #fff;
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-register:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =================== HERO / SLIDER =================== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--darker-bg);
}
.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 5%;
}
.slide-content {
  max-width: 540px;
}
.slide-content .badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.slide-content h1 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.slide-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.slide-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.slider-nav {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.slider-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.slider-arrow:hover { background: var(--orange); }
.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }

/* =================== MARQUEE =================== */
.marquee-bar {
  background: var(--orange);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0 2rem;
}
.marquee-inner span::before { content: "★ "; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =================== SECTION =================== */
section { padding: 4rem 0; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }

/* =================== TRUST BADGES =================== */
.trust-bar {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item .icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* =================== GAME CATEGORIES =================== */
.game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.game-cat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}
.game-cat-card:hover {
  border-color: var(--orange);
  background: rgba(255,78,0,0.08);
  transform: translateY(-3px);
}
.game-cat-card .cat-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.game-cat-card .cat-name {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
}
.game-cat-card .cat-count {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

/* =================== GAME GRID =================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
}
.game-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,78,0,0.2);
}
.game-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.game-card .game-info {
  padding: 0.6rem 0.75rem;
}
.game-card .game-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card .game-provider {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.game-card .hot-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}
.game-card .new-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* =================== PROVIDERS STRIP =================== */
.providers-strip {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.provider-badge {
  background: var(--darker-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
}
.provider-badge:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* =================== PROMOTIONS =================== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.promo-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
}
.promo-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,78,0,0.15);
}
.promo-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.promo-content {
  padding: 1.25rem;
}
.promo-tag {
  display: inline-block;
  background: rgba(255,78,0,0.15);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.promo-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.promo-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.promo-card .btn-claim {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.promo-card .btn-claim:hover { background: var(--orange-dark); }

/* =================== STATS / WHY US =================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.stat-card .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.stat-card .stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* =================== CONTENT SECTION =================== */
.content-section {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 2.5rem;
  margin-top: 2rem;
}
.content-section h2 { margin-bottom: 1rem; }
.content-section h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--orange); }
.content-section p { color: var(--text-secondary); }
.content-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.content-section ul li { margin-bottom: 0.4rem; }

/* =================== FAQ =================== */
.faq-section { background: var(--darker-bg); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--card-bg);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.1rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* =================== PAYMENT METHODS =================== */
.payment-section { background: var(--card-bg); padding: 3rem 0; }
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.payment-badge {
  background: var(--darker-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}
.payment-badge:hover {
  border-color: var(--orange);
  color: var(--text-primary);
}
.payment-badge .pay-icon { font-size: 1.1rem; }

/* =================== FEATURES LIST =================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--orange); }
.feature-card .feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.feature-card h4 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; margin: 0; }

/* =================== BUTTONS =================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,78,0,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--orange);
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--orange);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* =================== TABLE =================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.comparison-table th {
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.9rem;
}
.comparison-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.comparison-table tr:hover td { background: rgba(255,78,0,0.05); }
.comparison-table .check { color: var(--green); font-size: 1.1rem; }

/* =================== BREADCRUMB =================== */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 0.4rem; }

/* =================== HERO (inner pages) =================== */
.page-hero {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1c 50%, rgba(255,78,0,0.08) 100%);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p {
  max-width: 680px;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,78,0,0.12);
  border: 1px solid rgba(255,78,0,0.3);
  color: var(--orange);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* =================== FOOTER =================== */
footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 36px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-col h5 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.cert-badge {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal a:hover { color: var(--orange); }
.age-badge {
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* =================== MOBILE MENU =================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nav-bg);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-secondary);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--orange); background: rgba(255,78,0,0.08); }
.mobile-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.mobile-actions a { flex: 1; text-align: center; }

/* =================== PAGE SPECIFIC =================== */
.sports-odds-table { overflow-x: auto; }
.odds-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  align-items: center;
}
.odds-row:hover { border-color: var(--orange); }
.odds-team { font-weight: 600; font-size: 0.9rem; }
.odds-val {
  text-align: center;
  background: var(--darker-bg);
  padding: 0.3rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
}

/* Esports cards */
.esport-game-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.25s;
}
.esport-game-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.esport-game-card .esport-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.esport-game-card h4 { margin-bottom: 0.25rem; }
.esport-game-card p { font-size: 0.82rem; margin: 0; }

/* =================== 404 =================== */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 1.5rem;
}
.error-page .error-code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 60px rgba(255,78,0,0.3);
}
.error-page h2 { font-size: 1.8rem; }
.error-page p { max-width: 480px; }

/* =================== RIBBON =================== */
.ribbon {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  padding: 0.85rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.ribbon a { color: #fff; text-decoration: underline; }

/* =================== LIVE BADGE =================== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #dc2626;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* =================== SCROLL TO TOP =================== */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--orange);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(255,78,0,0.35);
  transition: all 0.2s;
}
#scrollTop:hover { background: var(--orange-dark); transform: translateY(-2px); }
#scrollTop.visible { display: flex; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .slide img { height: 260px; }
  .slide-content h1 { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 2.5rem 0; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .promo-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-section { padding: 1.5rem; }
  .trust-items { gap: 1.25rem; }
}
@media (max-width: 480px) {
  .nav-actions .btn-login { display: none; }
  .slide-overlay { padding: 0 1rem; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
