@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;500&family=Montserrat:wght@400;700&family=Open+Sans:wght@600&display=swap');

/* ============================================
   Locks & Clocks - Avada Theme Rebuild
   Orange branding, white content, escape room heritage
   Fonts: Barlow Semi Condensed + Montserrat + Open Sans
   ============================================ */

:root {
  /* Primary palette */
  --primary: #ff7900;
  --primary-dark: #f25800;
  --secondary: #65bc7b;
  --tertiary: #FFB16D;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f6f6f6;
  --bg-grey-bar: #696969;
  --bg-dark-section: #262626;
  --bg-footer: #363839;
  --bg-copyright: #1d242d;

  /* Text */
  --text-body: #000000;
  --text-white: #ffffff;
  --text-muted: #4a4e57;
  --text-light: rgba(255,255,255,0.8);
  --text-copyright: rgba(255,255,255,0.4);

  /* Borders */
  --border-sep: #e0dede;
  --border-footer: #e9eaee;
  --border-copyright: #4b4c4d;

  /* Fonts */
  --font-heading: 'Barlow Semi Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-footer-heading: 'Open Sans', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 84px;
  --section-padding: 80px;
  --radius: 0px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 12pt;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-body);
  background: var(--bg-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  transition: top 0.2s;
}
.skip-nav:focus {
  top: 16px;
}
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 0;
}

h1 {
  font-size: 34pt;
  line-height: 1.0;
}
h2 {
  font-size: 26pt;
  line-height: 1.0;
}
h3 {
  font-size: 20pt;
  font-weight: 300;
  line-height: 1.1;
}
h4 {
  font-size: 20pt;
  line-height: 1.2;
}
h5 {
  font-family: var(--font-heading);
  font-size: 26pt;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-white);
}
h6 {
  font-size: 20pt;
  line-height: 1.2;
}

p { margin-bottom: 1em; }

.page-content h2 { margin: 2em 0 0.75em; }
.page-content h3 { margin: 1.5em 0 0.6em; }
.page-content h4 { margin: 1.5em 0 0.6em; }
.page-content p { margin-bottom: 1.2em; line-height: 1.7; }
.page-content ul, .page-content ol {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 0.4em; line-height: 1.6; }
.page-content strong { font-weight: 700; }
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.page-content table th,
.page-content table td {
  padding: 10px 14px;
  border: 1px solid var(--border-sep);
  text-align: left;
}
.page-content table th {
  background: var(--bg-light);
  font-weight: 700;
}

/* Custom Avada heading classes */
.lc-heading-h1 { font-size: 54px; }
.lc-subheading { font-size: 27px; font-weight: 300; }
.lc-text { font-size: 16px; }

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0);
  height: var(--nav-height);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.site-header.scrolled {
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: opacity 0.3s;
}
.logo-img-dark { display: none; }
.scrolled .logo-img-light { display: none; }
.scrolled .logo-img-dark { display: block; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.logo-text .logo-amp { color: var(--primary); }
.scrolled .logo-text { color: var(--text-body); }

/* Navigation */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav li { position: relative; }

.site-nav > ul > li > a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  padding: 0 16px;
  line-height: var(--nav-height);
  display: block;
  transition: color 0.2s;
}

.site-nav > ul > li > a:hover,
.site-nav > ul > li > a.is-active {
  color: var(--primary);
}

.scrolled .site-nav > ul > li > a {
  color: var(--text-body);
}
.scrolled .site-nav > ul > li > a:hover,
.scrolled .site-nav > ul > li > a.is-active {
  color: var(--primary);
}

/* Dropdown menus */
.site-nav li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #000000;
  z-index: 1001;
  padding: 8px 0;
}

.site-nav li:hover .dropdown {
  display: block;
}

.site-nav .dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  transition: color 0.2s;
}
.site-nav .dropdown a:hover {
  color: var(--primary);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-white);
  margin-bottom: 5px;
  transition: transform 0.3s, opacity 0.3s;
}
.scrolled .nav-toggle span { background: var(--text-body); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  color: var(--text-white);
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: linear-gradient(to bottom, var(--primary-dark), var(--primary-dark));
  color: var(--text-white);
}

.btn-secondary {
  background: linear-gradient(to bottom, #000000, #000000);
  color: var(--text-white);
  border: 2px solid #000000;
}
.btn-secondary:hover {
  color: var(--primary);
}

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

.btn-dark {
  background: linear-gradient(to bottom, #333333, #333333);
  color: var(--text-white);
  border: 2px solid #333333;
}
.btn-dark:hover {
  background: linear-gradient(to bottom, #000000, #000000);
}

.btn-small { padding: 8px 20px; font-size: 14px; }
.btn-large { padding: 18px 42px; font-size: 18px; }

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-padding) 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 54px;
  color: var(--text-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero .hero-highlight {
  color: var(--primary);
}

.hero-lead {
  font-size: 22px;
  color: var(--text-white);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.5;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}
.hero-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-white);
}

/* Hero background image placeholder (dark atmospheric) */
.hero-home {
  background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d0d1a 100%);
}

/* ============================================
   GREY INFO BAR
   ============================================ */

.grey-bar {
  background: var(--bg-grey-bar);
  padding: 10px 0;
  text-align: center;
  color: var(--text-white);
  font-size: 14px;
}
.grey-bar a { color: var(--text-white); text-decoration: underline; }
.grey-bar a:hover { color: var(--primary); }

/* ============================================
   CLOCK GEAR PATTERN (CSS-only SVG)
   ============================================ */

.section-pattern {
  background-color: var(--bg-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cdefs%3E%3Cstyle%3E.g%7Bfill:none;stroke:rgba(0,0,0,0.04);stroke-width:1.5%7D%3C/style%3E%3C/defs%3E%3Ccircle class='g' cx='100' cy='100' r='40'/%3E%3Ccircle class='g' cx='100' cy='100' r='30'/%3E%3Ccircle class='g' cx='100' cy='100' r='8'/%3E%3Cline class='g' x1='100' y1='60' x2='100' y2='52'/%3E%3Cline class='g' x1='100' y1='148' x2='100' y2='140'/%3E%3Cline class='g' x1='60' y1='100' x2='52' y2='100'/%3E%3Cline class='g' x1='148' y1='100' x2='140' y2='100'/%3E%3Cline class='g' x1='72' y1='72' x2='66' y2='66'/%3E%3Cline class='g' x1='128' y1='128' x2='134' y2='134'/%3E%3Cline class='g' x1='128' y1='72' x2='134' y2='66'/%3E%3Cline class='g' x1='72' y1='128' x2='66' y2='134'/%3E%3Crect class='g' x='94' y='48' width='12' height='8' rx='1'/%3E%3Crect class='g' x='94' y='144' width='12' height='8' rx='1'/%3E%3Crect class='g' x='48' y='94' width='8' height='12' rx='1'/%3E%3Crect class='g' x='144' y='94' width='8' height='12' rx='1'/%3E%3Crect class='g' x='63' y='63' width='10' height='8' rx='1' transform='rotate(-45 68 67)'/%3E%3Crect class='g' x='127' y='129' width='10' height='8' rx='1' transform='rotate(-45 132 133)'/%3E%3Crect class='g' x='127' y='63' width='10' height='8' rx='1' transform='rotate(45 132 67)'/%3E%3Crect class='g' x='63' y='129' width='10' height='8' rx='1' transform='rotate(45 68 133)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */

.section-white {
  background: var(--bg-white);
  padding: var(--section-padding) 0;
}

.section-pattern {
  padding: var(--section-padding) 0;
}

.section-dark {
  background: var(--bg-dark-section);
  padding: 40px 0;
  color: var(--text-white);
}
.section-dark a { color: var(--text-white); }
.section-dark a:hover { color: var(--text-white); }

.section-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: var(--section-padding) 0;
  color: var(--text-white);
  position: relative;
}
.section-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.section-parallax .container { position: relative; z-index: 2; }

.text-center { text-align: center; }

/* Column layouts */
.row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.col-half { flex: 1 1 calc(50% - 16px); min-width: 280px; }
.col-third { flex: 1 1 calc(33.333% - 22px); min-width: 260px; }
.col-two-thirds { flex: 1 1 calc(66.666% - 16px); min-width: 280px; }
.col-quarter { flex: 1 1 calc(25% - 24px); min-width: 220px; }

/* ============================================
   PAGE BANNER
   ============================================ */

.page-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d0d1a 100%);
  padding: 140px 0 60px;
  text-align: center;
  color: var(--text-white);
}
.page-banner h1 {
  color: var(--text-white);
  margin-bottom: 16px;
}
.page-banner .page-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 8px; color: rgba(255,255,255,0.3); }
.breadcrumb span:last-child { color: rgba(255,255,255,0.9); }

/* ============================================
   CARD GRID
   ============================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border-sep);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--text-body);
}

a.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  color: var(--text-body);
}

.card h2, .card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.card-arrow {
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--primary);
  margin-top: auto;
}

/* ============================================
   CASINO TOPLIST
   ============================================ */

.affiliate-bar {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 8px 0;
  text-align: center;
}
.affiliate-bar a { color: rgba(255,255,255,0.9); text-decoration: underline; }

.casino-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-sep);
  padding: 24px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}
.casino-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.casino-card.casino-featured {
  border-color: var(--primary);
  border-width: 2px;
}

.casino-rank {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--primary);
  min-width: 40px;
  text-align: center;
}

.casino-logo {
  width: 120px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.casino-info { flex-grow: 1; }

.casino-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 4px;
}
.casino-award {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.casino-bonus {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 60px;
}
.casino-rating-score {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--primary);
}
.casino-rating-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.casino-cta {
  flex-shrink: 0;
}

/* Casino detail section */
.casino-detail {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-sep);
}
.casino-detail:last-child { border-bottom: none; }

.casino-detail h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.casino-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.casino-detail-logo {
  width: 100px;
  height: 54px;
  object-fit: contain;
}

.casino-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-light);
}
.casino-data-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 20px 0;
}
.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}
.pros li::before { content: '+ '; color: var(--secondary); font-weight: 700; }
.cons li::before { content: '- '; color: #e94560; font-weight: 700; }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.comparison-table th {
  background: var(--primary);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-sep);
}
.comparison-table tr:nth-child(even) {
  background: var(--bg-light);
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--border-sep);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  text-align: left;
}
.faq-question:hover { color: var(--primary); }
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  content: '-';
}
.faq-answer {
  display: none;
  padding: 0 0 20px;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================
   RESPONSIBLE GAMBLING NOTICE
   ============================================ */

.rg-notice {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
}
.rg-notice a { color: var(--primary); text-decoration: underline; }

.rg-banner {
  background: var(--bg-light);
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-sep);
}
.rg-banner a { color: var(--primary); }

/* ============================================
   AUTHOR PROFILE
   ============================================ */

.author-profile { padding: var(--section-padding) 0; }

.author-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-sep);
}

.author-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
}

.author-info h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.author-title {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.author-location {
  font-size: 14px;
  color: var(--text-muted);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 24px 0;
}
.expertise-item {
  padding: 24px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
}
.expertise-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* Author snippet on casino page */
.author-snippet {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  margin: 32px 0;
}
.author-snippet img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.author-snippet-info { font-size: 14px; }
.author-snippet-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-body);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--bg-footer);
  color: var(--text-white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-copyright);
}

.footer-about p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 12px;
}
.footer-amp { color: var(--primary); }

.site-footer h4 {
  font-family: var(--font-footer-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a {
  color: var(--text-light);
  font-size: 14px;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--secondary); }

.footer-bottom {
  background: var(--bg-copyright);
  margin: 0 -24px;
  padding: 16px 24px;
  text-align: center;
  color: var(--text-copyright);
  font-size: 13px;
}
.footer-bottom a { color: var(--text-light); }
.footer-bottom a:hover { color: var(--secondary); }

/* ============================================
   PAGE LIST (section index pages)
   ============================================ */

.page-list {
  padding: var(--section-padding) 0;
}

.page-single {
  padding: var(--section-padding) 0;
}
.page-single .container {
  max-width: 800px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero h1, .lc-heading-h1 { font-size: 40px; }
  .hero-lead, .lc-subheading { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }

  .site-header {
    background: #000000;
  }
  .site-header.scrolled {
    background: #000000;
  }
  .scrolled .logo-text { color: var(--text-white); }
  .scrolled .nav-toggle span { background: var(--text-white); }
  .scrolled .site-nav > ul > li > a { color: var(--text-white); }

  .nav-toggle { display: block; }

  .site-nav ul {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #000000;
    flex-direction: column;
    padding: 16px 0;
  }
  .site-nav.open ul { display: flex; }

  .site-nav > ul > li > a {
    line-height: 1;
    padding: 14px 24px;
    color: var(--text-white);
  }

  .site-nav li .dropdown {
    position: static;
    display: none;
    background: #111111;
    padding-left: 16px;
  }
  .site-nav li.dropdown-open .dropdown { display: block; }

  .hero {
    min-height: 400px;
    padding: 120px 16px 60px;
  }
  .hero h1 { font-size: 34px; line-height: 1.1; }
  .hero-lead { font-size: 16px; }
  .lc-heading-h1 { font-size: 34px; line-height: 44px; }
  .lc-subheading { font-size: 20px; line-height: 22px; }
  .lc-text { font-size: 14px; line-height: 18px; }

  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }

  .page-banner { padding: 100px 0 24px; }
  .page-banner .page-lead { font-size: 14px; margin-bottom: 0; }

  /* Money page: hide intro on mobile to get toplist above fold (SF-21) */
  .casino-intro { display: none; }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .row { flex-direction: column; gap: 24px; }
  .col-half, .col-third, .col-two-thirds, .col-quarter { flex: 1 1 100%; min-width: 0; }

  .casino-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
  }
  .casino-card .casino-logo { width: 100px; height: 54px; }

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

  /* Tighter section padding after hidden intro */
  .casino-intro + .section-pattern { padding-top: 24px; }
  .casino-intro + .section-pattern h2 { margin-bottom: 16px; font-size: 20px; }

  .author-header { flex-direction: column; text-align: center; }
  .author-photo { width: 120px; height: 120px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { margin: 0 -24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 110px 16px 50px; }
  .hero h1 { font-size: 28px; }
  .page-banner { padding: 90px 0 16px; }
  .page-banner h1 { font-size: 24px; }
  .casino-card { padding: 16px 12px; }
  .casino-name { font-size: 18px; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 8px 10px; }
}

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */

.home-sections {
  padding: var(--section-padding) 0;
}

.home-entertainment {
  text-align: center;
  margin-bottom: 48px;
}
.home-entertainment h2 {
  margin-bottom: 16px;
}
.home-entertainment p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Steps / How-to */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.step {
  text-align: center;
  padding: 24px;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   INTERNAL LINK NOTICE
   ============================================ */

.internal-link-notice {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
}
.internal-link-notice a { color: var(--primary); font-weight: 700; }
