/* =========================================
   PUB CASINO UK — STYLESHEET
   Brand: warm amber / dark wood / British pub
   ========================================= */

/* === TOKENS & RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:       #b5872a;
  --gold-light: #d4a84b;
  --gold-pale:  #f0e0b0;
  --dark:       #1a1208;
  --dark-2:     #241a0e;
  --dark-3:     #2e2010;
  --mid:        #4a3520;
  --warm-white: #fdf6ec;
  --warm-off:   #f5ead6;
  --warm-gray:  #9e8a72;
  --text:       #2c1e0f;
  --text-light: #5c4a35;
  --green:      #2e7d32;
  --red:        #c62828;

  --radius:     10px;
  --radius-sm:  6px;
  --shadow:     0 4px 24px rgba(26,18,8,0.13);
  --shadow-card:0 2px 12px rgba(26,18,8,0.10);

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  'Segoe UI', Arial, Helvetica, sans-serif;

  --max-w: 1100px;
  --section-pad: 64px 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-white);
}

img { display: none; }

/* === CONTAINER === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* === TOP BONUS BAR === */
.top-bonus-bar {
  background: linear-gradient(90deg, var(--dark) 0%, var(--dark-3) 60%, var(--mid) 100%);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 20px;
  flex-wrap: wrap;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.bonus-bar-text {
  color: var(--warm-off);
  font-size: 0.9rem;
  font-family: var(--font-sans);
}

.bonus-bar-text strong {
  color: var(--gold-light);
}

.btn-bonus-bar {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 20px;
  padding: 7px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}

.btn-bonus-bar:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* === HEADER === */
.site-header {
  background: var(--dark);
  border-bottom: 1px solid rgba(181,135,42,0.3);
  position: sticky;
  top: 44px;
  z-index: 90;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}

.logo-wrap {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg {
  width: 160px;
  height: 43px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.main-nav a {
  color: var(--warm-gray);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--gold-light);
  background: rgba(181,135,42,0.1);
}

.btn-nav-cta {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 8px;
  transition: background 0.2s;
}

.btn-nav-cta:hover {
  background: var(--gold-light);
}

/* === HERO === */
.hero-section {
  background: linear-gradient(155deg, var(--dark) 0%, var(--dark-3) 45%, var(--mid) 100%);
  padding: 70px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(181,135,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(181,135,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(181,135,42,0.18);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-section h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(181,135,42,0.3);
}

.hero-sub {
  color: var(--warm-off);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.stat-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(181,135,42,0.3);
  border-radius: var(--radius);
  padding: 14px 22px;
  min-width: 110px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.btn-hero {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  border: none;
  border-radius: 30px;
  padding: 16px 42px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 24px rgba(181,135,42,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(181,135,42,0.5);
}

.hero-disclaimer {
  color: var(--warm-gray);
  font-size: 0.72rem;
  margin-top: 14px;
  opacity: 0.75;
}

/* === QUICK FACTS TABLE === */
.quick-facts-section {
  background: var(--dark-2);
  padding: 36px 20px;
  overflow-x: auto;
}

.quick-facts-table {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.quick-facts-table th,
.quick-facts-table td {
  padding: 11px 18px;
  border-bottom: 1px solid rgba(181,135,42,0.15);
  text-align: left;
}

.quick-facts-table th {
  color: var(--gold-light);
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  background: rgba(181,135,42,0.1);
}

.quick-facts-table td:first-child {
  color: var(--warm-gray);
  font-weight: 600;
  width: 200px;
  white-space: nowrap;
}

.quick-facts-table td:last-child {
  color: var(--warm-off);
}

.quick-facts-table tr:last-child td {
  border-bottom: none;
}

/* === SECTION BASES === */
.section-alt {
  background: var(--warm-white);
  padding: var(--section-pad);
}

.section-light {
  background: var(--warm-off);
  padding: var(--section-pad);
}

.review-section {
  background: var(--warm-white);
}

/* === TYPOGRAPHY === */
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--dark-3);
  margin: 32px 0 12px;
  line-height: 1.3;
}

p {
  margin-bottom: 16px;
  color: var(--text);
}

.container > h2 {
  display: block;
}

/* === MID BONUS BAR === */
.mid-bonus-bar {
  background: linear-gradient(100deg, var(--dark) 0%, #2a1f10 50%, var(--dark-3) 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 20px 20px;
}

.mid-bonus-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.mid-bonus-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mid-bonus-headline {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-pale);
}

.mid-bonus-sub {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.btn-mid-bonus {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  border: none;
  border-radius: 25px;
  padding: 13px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 16px rgba(181,135,42,0.3);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.btn-mid-bonus:hover {
  transform: translateY(-2px);
}

/* === BONUS CARDS === */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin: 32px 0 24px;
}

.bonus-card {
  background: var(--warm-white);
  border: 1px solid rgba(181,135,42,0.25);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.bonus-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.bonus-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  margin: 0 0 8px;
}

.bonus-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.55;
}

.bonus-terms-note {
  background: rgba(181,135,42,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* === DATA TABLES === */
.games-table-wrap,
.payments-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.data-table {
  width: 100%;
  min-width: 550px;
  border-collapse: collapse;
  font-size: 0.87rem;
}

.data-table th {
  background: var(--dark);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 13px 16px;
  text-align: left;
  white-space: nowrap;
}

.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(181,135,42,0.12);
  color: var(--text);
  vertical-align: middle;
}

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

.data-table tbody tr:nth-child(even) td {
  background: rgba(181,135,42,0.04);
}

.data-table tbody tr:hover td {
  background: rgba(181,135,42,0.08);
}

/* === CHECK LIST === */
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.check-list li {
  padding: 7px 0 7px 30px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(181,135,42,0.1);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* === PROS / CONS === */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.pros-box,
.cons-box {
  border-radius: var(--radius);
  padding: 22px 20px;
}

.pros-box {
  background: rgba(46,125,50,0.06);
  border: 1px solid rgba(46,125,50,0.25);
}

.cons-box {
  background: rgba(198,40,40,0.05);
  border: 1px solid rgba(198,40,40,0.2);
}

.pros-box h3,
.cons-box h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin: 0 0 12px;
}

.pros-box h3 { color: var(--green); }
.cons-box h3 { color: var(--red); }

.pros-box ul,
.cons-box ul {
  list-style: none;
  padding: 0;
}

.pros-box ul li,
.cons-box ul li {
  font-size: 0.87rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text);
}

.pros-box ul li:last-child,
.cons-box ul li:last-child {
  border-bottom: none;
}

/* === MOBILE FEATURES === */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.mobile-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--warm-white);
  border: 1px solid rgba(181,135,42,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.mf-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.mf-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* === SUPPORT CHANNELS === */
.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.support-channel-card {
  text-align: center;
  background: var(--warm-white);
  border: 1px solid rgba(181,135,42,0.25);
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: var(--shadow-card);
}

.sc-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.sc-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.sc-detail {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* === FAQ === */
.faq-list {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(181,135,42,0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(181,135,42,0.15);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: var(--warm-white);
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  line-height: 1.4;
}

.faq-question:hover {
  background: rgba(181,135,42,0.07);
}

.faq-question.open {
  background: rgba(181,135,42,0.1);
  color: var(--gold);
}

.faq-arrow {
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
  display: inline-block;
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(181,135,42,0.03);
}

.faq-answer p {
  padding: 16px 20px;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid rgba(181,135,42,0.1);
}

/* === FINAL CTA === */
.final-cta-section {
  background: var(--dark);
}

.final-cta-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}

.final-cta-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--gold-pale);
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(181,135,42,0.4);
  padding-bottom: 10px;
  display: block;
}

.final-cta-box p {
  color: var(--warm-off);
  font-size: 0.97rem;
  opacity: 0.85;
  margin-bottom: 14px;
}

.btn-final-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  border: none;
  border-radius: 30px;
  padding: 17px 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin: 10px 0 16px;
  box-shadow: 0 4px 24px rgba(181,135,42,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}

.btn-final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(181,135,42,0.55);
}

.cta-disclaimer {
  color: var(--warm-gray);
  font-size: 0.7rem;
  opacity: 0.6;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(181,135,42,0.2);
  padding: 48px 20px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-logo-wrap {
  text-align: center;
}

.footer-logo-svg {
  width: 140px;
  height: 37px;
  display: block;
  margin: 0 auto 8px;
}

.footer-tagline {
  font-size: 0.76rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}

.footer-nav a {
  color: var(--warm-gray);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-rg-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.rg-badge {
  background: rgba(181,135,42,0.12);
  border: 1px solid rgba(181,135,42,0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.footer-disclaimer {
  text-align: center;
  max-width: 720px;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(158,138,114,0.65);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-disclaimer p:last-child {
  margin: 0;
}

.footer-disclaimer strong {
  color: rgba(158,138,114,0.85);
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 900px) {
  :root {
    --section-pad: 48px 16px;
  }

  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 10px 16px;
    gap: 8px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav a {
    font-size: 0.78rem;
    padding: 5px 8px;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .top-bonus-bar {
    top: 0;
  }

  .site-header {
    top: 0;
    position: relative;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --section-pad: 36px 14px;
  }

  .top-bonus-bar {
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
  }

  .header-inner {
    padding: 10px 14px;
  }

  .main-nav {
    gap: 4px;
    justify-content: center;
  }

  .main-nav a {
    font-size: 0.74rem;
    padding: 4px 7px;
  }

  .hero-section {
    padding: 48px 14px 56px;
  }

  .hero-stats {
    gap: 8px;
  }

  .stat-item {
    min-width: 88px;
    padding: 12px 14px;
  }

  .stat-num {
    font-size: 1.3rem;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
  }

  .mid-bonus-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .btn-mid-bonus {
    width: 100%;
    max-width: 300px;
  }

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .mobile-features {
    grid-template-columns: 1fr;
  }

  .support-channels {
    grid-template-columns: 1fr;
  }

  .quick-facts-section {
    padding: 20px 0;
  }

  .quick-facts-table {
    font-size: 0.8rem;
    min-width: 500px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .quick-facts-table th,
  .quick-facts-table td {
    padding: 9px 12px;
  }

  .faq-question {
    font-size: 0.88rem;
    padding: 15px 14px;
  }

  .btn-final-cta {
    padding: 15px 28px;
    font-size: 1rem;
    width: 100%;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-nav {
    gap: 4px 12px;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .main-nav a {
    font-size: 0.7rem;
    padding: 3px 5px;
  }

  .logo-svg {
    width: 130px;
    height: 35px;
  }

  h2 {
    font-size: 1.4rem;
  }
}
