/* ============================================================
   BETCASINOPRO - GLOBAL STYLES
   Theme: White & Pink
   ============================================================ */

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

:root {
  --pink: #e91e8c;
  --pink-dark: #c0156d;
  --pink-light: #ff6ec7;
  --pink-bg: #fff0f8;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --light-gray: #f2f2f2;
  --mid-gray: #e0e0e0;
  --text-dark: #1a1a2e;
  --text-mid: #444;
  --text-light: #777;
  --dark-bg: #0f0f1a;
  --purple-dark: #1e0a3c;
  --gradient-pink: linear-gradient(135deg, #e91e8c, #ff6ec7);
  --gradient-dark: linear-gradient(135deg, #1e0a3c, #3d0073);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.pink-text { color: var(--pink); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gradient-pink);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(233, 30, 140, 0.5); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--pink); color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.15); }

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 8px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  margin-right: 20px;
  flex-shrink: 0;
}
.logo-bet { color: var(--text-dark); }
.logo-casino { color: var(--pink); }
.logo-pro { color: var(--text-dark); }

.logo-bet-f { color: white; }
.logo-casino-f { color: var(--pink); }
.logo-pro-f { color: white; }

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

.nav-dropdown { position: relative; }
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--pink); }
.nav-link.active { border-bottom: 2px solid var(--pink); }

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  z-index: 100;
}
.dropdown-content a {
  display: block;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.2s, color 0.2s;
}
.dropdown-content a:hover { background: var(--pink-bg); color: var(--pink); }
.nav-dropdown:hover .dropdown-content { display: block; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn-login {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 8px 18px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-login:hover { border-color: var(--pink); color: var(--pink); }

.btn-signup {
  font-size: 13px;
  font-weight: 700;
  color: white;
  padding: 8px 18px;
  background: var(--gradient-pink);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(233,30,140,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-signup:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(233,30,140,0.45); }

.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 6px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color 0.2s;
}
.nav-search:hover { color: var(--pink); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* Search bar */
.search-bar {
  display: none;
  border-top: 1px solid var(--mid-gray);
  padding: 12px 24px;
}
.search-bar.open { display: block; }
.search-inner {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 8px;
}
.search-inner input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.search-inner input:focus { border-color: var(--pink); }
.search-inner button {
  background: var(--pink);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding-left: 100px;
  overflow: hidden;
  background: var(--dark-bg);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(233, 30, 142, 0) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  max-width: 580px;
}
.hero-badge {
  display: inline-block;
  background: var(--pink);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 82px;
  line-height: 1;
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin-bottom: 10px;
}
.hero-sub {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.hero-bonus {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.bonus-box {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
}
.bonus-box.pink { background: rgba(233,30,140,0.4); border-color: var(--pink); }
.bonus-amount { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: white; line-height: 1; }
.bonus-label { display: block; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 1px; margin-top: 4px; }
.bonus-plus { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--pink); }

.hero-phones {
  position: absolute;
  right: 5%;
  bottom: 0;
  z-index: 2;
  width: 300px;
  opacity: 0.6;
}
.phone-img { width: 100%; object-fit: contain; }

/* ============================================================
   GAME STRIP
   ============================================================ */
.game-strip {
  background: var(--dark-bg);
  border-top: 2px solid var(--pink);
  overflow: hidden;
  padding: 12px 0;
}
.game-strip-inner {
  display: flex;
  gap: 12px;
  padding: 0 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.game-strip-inner::-webkit-scrollbar { display: none; }
.game-strip-inner img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.game-strip-inner img:hover { border-color: var(--pink); transform: scale(1.05); }

/* ============================================================
   EXCLUSIVE SECTION
   ============================================================ */
.exclusive-section { padding: 50px 0; }
.exclusive-bg {
  background: linear-gradient(135deg, #1e0a3c, #3d0073);
  padding: 50px 0;
}
.exclusive-header {
  text-align: center;
  margin-bottom: 32px;
}
.exclusive-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: white;
  letter-spacing: 2px;
}
.exclusive-header .num { color: var(--pink); font-size: 80px; }
.exclusive-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ex-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 20px 32px;
  text-align: center;
  min-width: 180px;
}
.ex-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--pink); }
.ex-label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.5px; margin-top: 4px; }

/* ============================================================
   BEST CASINO
   ============================================================ */
.best-casino { background: var(--white); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.section-desc { font-size: 14px; line-height: 1.7; color: var(--text-mid); max-width: 780px; margin-bottom: 48px; }

.stats-row {
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.stat-item { flex: 1; min-width: 180px; border-left: 3px solid var(--pink); padding-left: 16px; }
.stat-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--text-dark); }
.stat-label { display: block; font-size: 11px; font-weight: 700; color: var(--text-light); letter-spacing: 1px; margin-top: 4px; }

.features-row { display: flex; gap: 48px; align-items: flex-start; }
.features-content { flex: 1; display: flex; flex-direction: column; gap: 32px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--pink-bg);
  border: 1.5px solid var(--pink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}
.feature-item h3 { font-size: 13px; font-weight: 800; color: var(--pink); letter-spacing: 0.5px; margin-bottom: 6px; }
.feature-item p { font-size: 13px; line-height: 1.6; color: var(--text-mid); }
.features-image { width: 410px; height: auto; flex-shrink: 0; }
.features-image img { border-radius: 12px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0); width: 100%; object-fit: contain; height: auto; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1e0a3c, #3d0073);
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-sub { display: block; color: var(--pink); font-size: 12px; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; }
.cta-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: white; max-width: 420px; line-height: 1.1; margin-bottom: 24px; }
.cta-bonus { text-align: center; }
.bonus-badge { background: var(--pink); color: white; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; padding: 4px 12px; border-radius: 2px; margin-bottom: 12px; display: inline-block; }
.cta-bonus-content { display: flex; align-items: center; gap: 12px; }

/* ============================================================
   BEST SECTION
   ============================================================ */
.best-section { background: var(--off-white); }
.best-inner { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.best-content { flex: 1; min-width: 280px; }
.best-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 38px; line-height: 1.1; margin-bottom: 16px; }
.best-content > p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
.best-list { display: flex; flex-direction: column; gap: 16px; }
.best-item { display: flex; gap: 14px; align-items: flex-start; }
.best-check {
  width: 28px; height: 28px;
  background: var(--gradient-pink);
  color: white;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}
.best-item h4 { font-size: 13px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.best-item p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.best-image { width: 400px; flex-shrink: 0; }
.best-image img { border-radius: 12px; width: 100%; height: 420px; object-fit: cover; box-shadow: 0 16px 48px rgba(0,0,0,0.12); }

/* ============================================================
   REWARDS
   ============================================================ */
.rewards-section { padding: 0; }
.rewards-bg {
  background: linear-gradient(135deg, #e91e8c, #6a0080);
  padding: 60px 0;
}
.rewards-inner { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.rewards-content { flex: 1; min-width: 280px; }
.rewards-label { font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.7); letter-spacing: 3px; margin-bottom: 8px; }
.rewards-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: white; line-height: 1; margin-bottom: 8px; }
.rewards-sub { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 1px; margin-bottom: 16px; }
.rewards-content p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 28px; }
.rewards-image { width: 320px; flex-shrink: 0; }
.rewards-image img { border-radius: 16px; width: 100%; height: 280px; object-fit: cover; }

/* ============================================================
   MORE ABOUT
   ============================================================ */
.more-about h2 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; margin-bottom: 12px; }
.more-about > .container > p { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; }
.about-list { display: flex; flex-direction: column; gap: 10px; }
.about-list li {
  padding: 14px 18px;
  background: var(--pink-bg);
  border-left: 3px solid var(--pink);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.2s;
}
.about-list li:hover { background: #ffd6ef; }

/* ============================================================
   GUIDES BANNER
   ============================================================ */
.guides-banner {
  background: var(--gradient-pink);
  padding: 48px 0;
  text-align: center;
}
.guides-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.guides-banner p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 24px; }
.guides-banner .btn-outline { border-color: white; color: white; }
.guides-banner .btn-outline:hover { background: white; color: var(--pink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--light-gray); }
.faq-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 38px; margin-bottom: 32px; color: var(--text-dark); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px;
  background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text-dark); text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--pink); }
.faq-q span { font-size: 20px; color: var(--pink); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--mid-gray);
  padding-top: 14px;
}
.faq-a.open { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-bg); padding: 60px 0 0; }
.footer-top { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand { flex: 1.2; min-width: 220px; }
.footer-logo { display: flex; align-items: center; font-family: 'Bebas Neue', sans-serif; font-size: 28px; margin-bottom: 16px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; font-weight: 700;
  transition: background 0.2s;
}
.social-link:hover { background: var(--pink); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; }
.footer-links { display: flex; gap: 32px; flex: 3; flex-wrap: wrap; }
.footer-col { flex: 1; min-width: 120px; }
.footer-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 1px; color: var(--pink); margin-bottom: 14px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* ============================================================
   PAGE BANNER (used on interior pages)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, #1e0a3c, #3d0073);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1524673360092-4064cb990fcc?w=1600&q=60') center/cover;
  opacity: 0.07;
}
.page-banner-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.page-banner h1 { font-family: 'Bebas Neue', sans-serif; font-size: 54px; color: white; letter-spacing: 2px; line-height: 1.1; }
.page-banner p { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 560px; margin-top: 12px; }
.page-banner-icon { font-size: 80px; opacity: 0.6; }

/* ============================================================
   CASINO GUIDE PAGE
   ============================================================ */
.guide-featured {
  padding: 60px 0;
  background: white;
}
.guide-featured-inner { display: flex; gap: 48px; align-items: flex-start; flex-wrap: wrap; }
.guide-featured-main { flex: 1.5; min-width: 280px; }
.guide-featured-main img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.guide-featured-main .guide-date { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.guide-featured-main h2 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--pink); margin-bottom: 10px; }
.guide-featured-main p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.guide-featured-list { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 24px; }
.guide-list-item .guide-date { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.guide-list-item h3 { font-size: 15px; font-weight: 700; color: var(--pink); margin-bottom: 6px; cursor: pointer; }
.guide-list-item h3:hover { text-decoration: underline; }
.guide-list-item p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

.explore-section { padding: 60px 0; background: var(--off-white); }
.explore-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 38px; margin-bottom: 24px; }
.explore-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--mid-gray);
  background: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-dark);
}
.tab-btn.active, .tab-btn:hover { background: var(--pink); color: white; border-color: var(--pink); }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.guide-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.07); transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(233,30,140,0.15); }
.guide-card img { width: 100%; height: 130px; object-fit: cover; }
.guide-card-body { padding: 14px; }
.guide-card-body .guide-date { font-size: 11px; color: var(--text-light); margin-bottom: 6px; }
.guide-card-body h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.guide-card-body h4:hover { color: var(--pink); }

/* PAGINATION */
.pagination { display: flex; gap: 6px; margin-top: 28px; align-items: center; }
.page-num {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 4px; border: 1.5px solid var(--mid-gray);
  font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; color: var(--text-dark);
}
.page-num.active { background: var(--pink); color: white; border-color: var(--pink); }
.page-num:hover:not(.active) { border-color: var(--pink); color: var(--pink); }

/* VIDEO SECTION */
.videos-section {
  background: linear-gradient(135deg, #1e0a3c, #3d0073);
  padding: 60px 0;
  text-align: center;
}
.videos-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: white; letter-spacing: 2px; margin-bottom: 32px; }
.videos-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.video-card { background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; width: 240px; cursor: pointer; transition: transform 0.2s; }
.video-card:hover { transform: scale(1.04); }
.video-thumb { position: relative; height: 140px; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px;
  background: rgba(255,0,80,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.play-btn::after { content: ''; border-left: 16px solid white; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 3px; }
.video-title { padding: 12px; font-size: 12px; font-weight: 600; color: white; text-align: left; }
.explore-more-btn { margin-top: 28px; }

/* ============================================================
   OHIO / VIRGINIA BETTING PAGE
   ============================================================ */
.sport-hero {
  background: linear-gradient(135deg, #0a1628, #0d2347);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.sport-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?w=1600&q=60') center/cover;
  opacity: 0.1;
}
.sport-hero-inner { position: relative; z-index: 1; }
.sport-badge { background: var(--pink); color: white; font-size: 10px; font-weight: 800; letter-spacing: 2px; padding: 4px 12px; border-radius: 2px; display: inline-block; margin-bottom: 16px; }
.sport-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: white; letter-spacing: 2px; line-height: 1; margin-bottom: 12px; }
.sport-hero p { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 520px; }

.parlays-bar {
  background: linear-gradient(90deg, #e91e8c, #6a0080);
  padding: 20px 0;
}
.parlays-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.parlays-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: white; letter-spacing: 1px; white-space: nowrap; margin-right: 12px; }
.parlays-sub { font-size: 12px; color: rgba(255,255,255,0.7); flex: 1; min-width: 180px; }
.parlay-type {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 6px 12px;
  color: white; font-size: 11px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
.parlay-type:hover { background: rgba(255,255,255,0.3); }
.parlay-cta { background: white; color: var(--pink); font-weight: 800; font-size: 12px; padding: 8px 18px; border-radius: 4px; cursor: pointer; transition: all 0.2s; }
.parlay-cta:hover { background: var(--pink-bg); }

.wager-table { padding: 60px 0; background: white; }
.wager-table h2 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; margin-bottom: 24px; }
.info-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}

.info-table td{
  padding:14px 18px;
  border-bottom:1px solid var(--mid-gray);
}

.info-table td:first-child{
  font-weight:600;
}

.info-table tr:nth-child(odd) td{
  background:var(--off-white);
}

.check-green{
  color:#2ecc71;
  margin-right:10px;
  font-weight:bold;
}

.check-pink { color: var(--pink); font-size: 18px; }

.sportsbook-features { padding: 60px 0; background: var(--off-white); }
.sportsbook-features h2 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; margin-bottom: 12px; }
.sportsbook-features > .container > p { font-size: 14px; color: var(--text-mid); max-width: 680px; margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-block { background: white; border-radius: 12px; padding: 28px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); border-top: 3px solid var(--pink); }
.feature-block h3 { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.feature-block p { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.feature-block img { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; }
.feature-btn { display: inline-block; background: var(--pink); color: white; font-size: 12px; font-weight: 700; padding: 8px 18px; border-radius: 4px; margin-top: 14px; transition: background 0.2s; }
.feature-btn:hover { background: var(--pink-dark); }

.teams-section { padding: 60px 0; background: linear-gradient(135deg, #0a1628, #0d2347); }
.teams-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: white; margin-bottom: 8px; }
.teams-section > .container > p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 32px; }
.teams-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.team-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: background 0.2s;
}
.team-card:hover { background: rgba(233,30,140,0.2); border-color: var(--pink); }
.team-abbr { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--pink); min-width: 40px; }
.team-name { font-size: 12px; font-weight: 700; color: white; }

.resp-gambling { padding: 60px 0; background: var(--light-gray); }
.resp-gambling h2 { font-family: 'Bebas Neue', sans-serif; font-size: 34px; margin-bottom: 12px; }
.resp-gambling p { font-size: 14px; color: var(--text-mid); max-width: 740px; margin-bottom: 20px; line-height: 1.7; }

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-featured { padding: 60px 0; background: white; }
.news-featured-inner { display: flex; gap: 32px; flex-wrap: wrap; }
.news-main-story {
  flex: 2;
  min-width: 280px;
  position: relative;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
}

/* Image covers full div */
.news-main-story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay over image */
.story-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
}

.story-date {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.story-title {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-top: 4px;
}
.follow-bar {
  background: linear-gradient(90deg, #1e0a3c, #3d0073);
  padding: 14px 24px;
  border-radius: 8px;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.follow-bar span { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: white; letter-spacing: 1px; }
.follow-icons { display: flex; gap: 10px; }
.follow-icon { width: 30px; height: 30px; background: rgba(255,255,255,0.15); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.follow-icon:hover { background: var(--pink); }
.news-sidebar { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 18px; }
.news-sidebar-item { display: flex; gap: 12px; cursor: pointer; }
.news-sidebar-item img { width: 90px; height: 65px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.news-sidebar-item-content .item-date { font-size: 11px; color: var(--text-light); }
.news-sidebar-item-content h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-top: 4px; line-height: 1.4; }
.news-sidebar-item-content h4:hover { color: var(--pink); }
.news-sidebar-item-content .item-author { font-size: 11px; color: var(--pink); margin-top: 4px; }

.news-tabs { padding: 40px 0 0; background: white; border-bottom: 1px solid var(--mid-gray); }
.news-tabs .container { display: flex; gap: 4px; }
.news-tab {
  padding: 12px 20px; font-size: 13px; font-weight: 700;
  border: none; background: none; cursor: pointer;
  color: var(--text-mid); border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.news-tab.active, .news-tab:hover { color: var(--pink); border-bottom-color: var(--pink); }

.news-grid-section { padding: 48px 0; background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.news-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.06); transition: transform 0.2s; cursor: pointer; }
.news-card:hover { transform: translateY(-4px); }
.news-card img { width: 100%; height: 130px; object-fit: cover; }
.news-card-body { padding: 14px; }
.news-card-body .card-date { font-size: 11px; color: var(--text-light); margin-bottom: 6px; }
.news-card-body h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 8px; }
.news-card-body .card-author { font-size: 11px; color: var(--pink); }
.see-all-btn { margin-top: 28px; display: flex; justify-content: center; }
.btn-see-all { background: none; border: 2px solid var(--pink); color: var(--pink); font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; padding: 10px 28px; border-radius: 4px; cursor: pointer; transition: all 0.2s; }
.btn-see-all:hover { background: var(--pink); color: white; }

.section-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-header-row h2 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; }
.see-all-link { font-size: 13px; color: var(--pink); font-weight: 700; display: flex; align-items: center; gap: 4px; }
.see-all-link:hover { text-decoration: underline; }

.big-wins-section { padding: 48px 0; background: white; }
.big-win-card { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); background: white; }
.big-win-card img { width: 100%; height: 140px; object-fit: cover; }
.big-win-card-body { padding: 14px; }
.big-win-card-body h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 6px; }
.big-win-card-body .card-author { font-size: 11px; color: var(--pink); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; background: var(--off-white); }
.contact-inner { display: flex; gap: 48px; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 260px; }
.contact-info h2 { font-family: 'Bebas Neue', sans-serif; font-size: 38px; margin-bottom: 16px; }
.contact-info p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.detail-icon {
  width: 44px; height: 44px;
  background: var(--pink-bg);
  border: 1.5px solid var(--pink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}
.detail-icon svg { width: 20px; height: 20px; }
.detail-content h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.detail-content p, .detail-content a { font-size: 13px; color: var(--text-mid); }
.detail-content a:hover { color: var(--pink); }

.contact-form-wrap { flex: 1.4; min-width: 280px; }
.contact-form {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.contact-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; margin-bottom: 24px; }
.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-group { flex: 1; min-width: 200px; margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text-dark); letter-spacing: 0.5px; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.full { flex: 100%; min-width: 100%; }
.form-submit { width: 100%; padding: 14px; background: var(--gradient-pink); color: white; border: none; border-radius: 6px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 16px rgba(233,30,140,0.4); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,30,140,0.5); }
.form-success { display: none; text-align: center; padding: 24px; }
.form-success h3 { color: var(--pink); font-family: 'Bebas Neue', sans-serif; font-size: 28px; margin-bottom: 8px; }
.form-success p { color: var(--text-mid); font-size: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-title { font-size: 60px; }
  .hero-phones { display: none; }
  .features-image { width: 300px; }
  .best-image { width: 320px; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 0;
    border-top: 1px solid var(--mid-gray);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-link { padding: 12px 24px; width: 100%; }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--mid-gray);
    border-radius: 0;
    background: var(--off-white);
  }
  .dropdown-content a { padding-left: 36px; }
  .hamburger { display: flex; }
  .btn-login, .btn-signup { font-size: 12px; padding: 6px 12px; }

  .hero { min-height: 480px; padding-left: 0;}
  .hero-content { padding: 60px 24px; }
  .hero-title { font-size: 52px; }
  .section-title { font-size: 32px; }
  .stats-row { gap: 24px; }
  .features-row { flex-direction: column; }
  .features-image { width: 100%; }
  .features-image img { height: 240px; }
  .best-inner { flex-direction: column; }
  .best-image { width: 100%; }
  .best-image img { height: 260px; }
  .cta-inner { flex-direction: column; }
  .rewards-inner { flex-direction: column; }
  .guide-featured-inner { flex-direction: column; }
  .news-featured-inner { flex-direction: column; }
  .news-sidebar { flex-direction: row; flex-wrap: wrap; }
  .contact-inner { flex-direction: column; }
  .contact-form { padding: 24px; }

  .page-banner h1 { font-size: 40px; }
  .sport-hero h1 { font-size: 42px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .hero-bonus { flex-wrap: wrap; }
  .bonus-box {
  padding: 14px 16px;
}
  .bonus-amount { font-size: 32px; }
  .exclusive-header h2 { font-size: 36px; }
  .exclusive-header .num { font-size: 60px; }
  .section-pad { padding: 48px 0; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
}
