/* =====================================================================
   HOTEL GUIDE - GLOBAL STYLESHEET
   Design Spec: Futuristic Editorial Luxury / Artificial Intelligence Motif
   Color Palette: Deep Purple, Lavender, Cyan, Crisp White, Jet Black
   ===================================================================== */

:root {
  /* Color Tokens */
  --color-white: #FFFFFF !important;
  --color-off-white: #F8FAFC !important;
  --color-light-gray: #EEF2F6 !important;
  --color-text-black: #111111 !important;
  --color-text-dark: #191919 !important;
  --color-text-muted: #747474 !important;
  --color-text-light: #A2A2A2 !important;

  --color-purple: #7956E8 !important;
  --color-purple-dark: #5A35B8 !important;
  --color-purple-light: #A78BFA !important;
  --color-lavender: #E8E1FF !important;
  --color-lavender-soft: #F4F1FF !important;

  --color-blue: #4B75FF !important;
  --color-cyan: #37D8C2 !important;
  --color-cyan-dark: #20BFAE !important;

  --color-dark: #111111 !important;
  --color-dark-soft: #171717 !important;
  --color-dark-card: #202020 !important;
  --color-dark-border: #343434 !important;

  --color-star: #F6C744 !important;
  --color-accent-coral: #FF655F !important;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #18235F 0%, #5C4BC8 45%, #A06DE9 100%) !important;
  --gradient-purple-blue: linear-gradient(135deg, #5C4BC8, #9B74F5) !important;
  --gradient-lavender: linear-gradient(135deg, #F8F7FF, #E9E4FF) !important;
  --gradient-neural: linear-gradient(135deg, #16172B, #553BB2, #B08AFF) !important;
  --gradient-footer: linear-gradient(135deg, #13131A, #252047) !important;
  --gradient-cta: linear-gradient(135deg, #15152D, #6844C8 55%, #4F86DD) !important;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing */
  --space-xs: 5px;
  --space-sm: 9px;
  --space-md: 15px;
  --space-lg: 24px;
  --space-xl: 36px;
  --space-xxl: 55px;
  --space-section: 80px;

  /* Radius */
  --radius-small: 5px;
  --radius-medium: 8px;
  --radius-large: 12px;
  --radius-pill: 999px;

  /* Borders */
  --border-light: 1px solid #E7E7E7;
  --border-dark: 1px solid #333333;
  --border-purple: 1px solid #B8A4F7;

  /* Max Widths */
  --container-max-width: 1200px;
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  font-size: 14px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

a:hover, a:focus {
  color: var(--color-purple);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 350ms ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 220ms ease;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 3px;
}

/* Container Utility */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text-black);
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.8px;
}

h2 {
  font-size: clamp(26px, 3.8vw, 40px);
  line-height: 1.1;
  letter-spacing: -1.2px;
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.2;
}

h4 {
  font-size: 18px;
  line-height: 1.3;
}

h5 {
  font-size: 15px;
  font-weight: 600;
}

p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.2px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-purple);
  margin-bottom: var(--space-sm);
}

.eyebrow-cyan {
  color: var(--color-cyan) !important;
}

.eyebrow-white {
  color: #FFFFFF !important;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all 220ms ease;
  cursor: pointer;
  text-decoration: none;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--color-purple);
  color: var(--color-white) !important;
}

.btn-primary:hover {
  background-color: var(--color-purple-dark);
  box-shadow: 0 8px 20px rgba(121, 86, 232, 0.35);
}

.btn-dark {
  background-color: var(--color-dark);
  color: var(--color-white) !important;
}

.btn-dark:hover {
  background-color: var(--color-purple);
  box-shadow: 0 8px 20px rgba(121, 86, 232, 0.3);
}

.btn-cyan {
  background-color: var(--color-cyan);
  color: var(--color-dark) !important;
}

.btn-cyan:hover {
  background-color: var(--color-cyan-dark);
  box-shadow: 0 8px 20px rgba(55, 216, 194, 0.35);
}

.btn-coral {
  background-color: var(--color-accent-coral);
  color: var(--color-white) !important;
  border-radius: var(--radius-small);
}

.btn-coral:hover {
  background-color: #E64E48;
  box-shadow: 0 8px 20px rgba(255, 101, 95, 0.35);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-purple-dark) !important;
}

.btn-white:hover {
  background-color: var(--color-lavender-soft);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-outline {
  border: 1px solid #D5D0ED;
  color: var(--color-purple);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-lavender-soft);
  border-color: var(--color-purple);
}

/* =====================================================================
   HEADER & NAVIGATION
   ===================================================================== */
.announcement-bar {
  background-color: var(--color-white);
  border-bottom: 1px solid #EEEEEE;
  font-size: 11px;
  color: var(--color-text-muted);
  padding: 6px 0;
}

.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-text {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-badge {
  background: var(--color-lavender);
  color: var(--color-purple-dark);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 600;
}

.announcement-links {
  display: flex;
  gap: 16px;
  font-size: 11px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ECECEC;
  transition: box-shadow 250ms ease;
  height: 64px;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-black);
  letter-spacing: -0.4px;
}

.brand-logo svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.brand-logo span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-logo small {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--color-purple);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-purple);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-purple);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--color-text-black);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================================================================
   HERO SECTIONS
   ===================================================================== */
.hero-gradient {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 85px 0 95px;
  color: var(--color-white);
}

.hero-art-layer {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
  background-repeat: no-repeat;
  background-position: center right;
}

.hero-glow {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(55, 216, 194, 0.3) 0%, rgba(121, 86, 232, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--color-white) !important;
  margin-bottom: var(--space-md);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-side-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-large);
  padding: var(--space-lg);
  backdrop-filter: blur(12px);
  color: var(--color-white);
}

.hero-badge-strip {
  display: flex;
  gap: 12px;
  margin-top: var(--space-lg);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-badge-strip span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-badge-strip span::before {
  content: '•';
  color: var(--color-cyan);
}

/* Subpage Hero */
.subpage-hero {
  padding: 60px 0 50px;
  background: var(--gradient-lavender);
  border-bottom: 1px solid #E6E1F5;
  position: relative;
}

.subpage-hero h1 {
  margin-bottom: var(--space-sm);
}

.subpage-hero p {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 680px;
  margin-bottom: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--color-text-dark);
}

.breadcrumbs a:hover {
  color: var(--color-purple);
}

.breadcrumbs span.separator {
  color: #BDBDBD;
}

.breadcrumbs span.current {
  color: var(--color-purple);
  font-weight: 600;
}

/* =====================================================================
   FEATURE CARDS STRIP
   ===================================================================== */
.feature-strip {
  padding: 40px 0 60px;
  background: var(--color-white);
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--color-white);
  border: var(--border-light);
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  box-shadow: 0 4px 18px rgba(30, 20, 70, 0.04);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-purple-light);
  box-shadow: 0 12px 30px rgba(90, 53, 184, 0.1);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-small);
  background: var(--color-lavender-soft);
  color: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.55;
}

/* =====================================================================
   EDITORIAL HOTEL REVIEWS SECTION
   ===================================================================== */
.ranking-section {
  padding: var(--space-section) 0;
  background-color: var(--color-off-white);
}

.section-intro {
  margin-bottom: var(--space-xl);
  max-width: 680px;
}

.section-intro h2 {
  margin-bottom: 10px;
}

.hotel-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hotel-card {
  background: var(--color-white);
  border: var(--border-light);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.hotel-card:hover {
  border-color: #D3C9F6;
  box-shadow: 0 10px 32px rgba(121, 86, 232, 0.08);
}

.hotel-card-visual {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.hotel-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.hotel-card:hover .hotel-card-visual img {
  transform: scale(1.03);
}

.hotel-badge-rank {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.hotel-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0) 100%);
  color: var(--color-white);
  z-index: 2;
}

.hotel-card-overlay .location-tag {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-cyan);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.hotel-card-overlay h3 {
  color: var(--color-white) !important;
  font-size: 28px;
  margin-bottom: 0;
}

.hotel-card-content {
  padding: var(--space-xl);
}

.verdict-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid #EFEFEF;
  flex-wrap: wrap;
  gap: 16px;
}

.verdict-title {
  max-width: 500px;
}

.verdict-title h4 {
  font-size: 20px;
  color: var(--color-text-black);
  margin-top: 4px;
}

/* Rating Dials */
.dials-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dial-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.dial-circle-wrap {
  position: relative;
  width: 68px;
  height: 68px;
}

.dial-circle-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.dial-bg {
  fill: none;
  stroke: #EAE6F8;
  stroke-width: 6;
}

.dial-fill-hotel {
  fill: none;
  stroke: var(--color-purple);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-out;
}

.dial-fill-casino {
  fill: none;
  stroke: var(--color-cyan-dark);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-out;
}

.dial-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-black);
}

.dial-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Ideal For and Highlights */
.ideal-for-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-lavender-soft);
  color: var(--color-purple-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.standouts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: var(--space-md) 0 var(--space-lg);
}

.standout-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-white);
  border: 1px solid #D8D2EE;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--color-text-dark);
}

.standout-pill svg {
  color: var(--color-cyan-dark);
}

/* Expandable Deep Analysis */
.review-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-purple);
  border: 1px solid #D8D2EE;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  margin-bottom: var(--space-md);
}

.review-toggle-btn:hover {
  background: var(--color-lavender-soft);
  border-color: var(--color-purple);
}

.review-toggle-btn svg {
  transition: transform 250ms ease;
}

.review-toggle-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.collapsible-analysis {
  display: none;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid #EAEAEA;
}

.collapsible-analysis.open {
  display: block;
  animation: fadeIn 300ms ease;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.analysis-item {
  background: var(--color-off-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-medium);
  border: 1px solid #ECECEC;
}

.analysis-item h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-black);
  margin-bottom: 6px;
}

.analysis-item h5 svg {
  color: var(--color-purple);
}

.analysis-item p {
  font-size: 13px;
  margin-bottom: 0;
}

.analysis-casino-callout {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.analysis-casino-callout p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px;
  margin-bottom: 0;
  max-width: 700px;
}

.editor-note-strip {
  background: #FFFDF5;
  border-left: 3px solid var(--color-star);
  padding: 12px 18px;
  margin-top: var(--space-md);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  font-size: 13px;
}

.editor-note-strip strong {
  color: #8C6A18;
  display: block;
  margin-bottom: 2px;
}

/* =====================================================================
   POSSIBILITIES / TWO-COLUMN SECTION
   ===================================================================== */
.possibilities-section {
  padding: var(--space-section) 0;
  background: var(--color-white);
}

.possibilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.possibilities-stat-box {
  margin-top: var(--space-lg);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-purple);
  line-height: 1;
}

.stat-caption {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
}

.checklist-row {
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #EFEFEF;
  text-decoration: none;
  color: inherit;
}

.checklist-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-small);
  background: var(--color-lavender-soft);
  color: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.checklist-text p {
  font-size: 12px;
  margin-bottom: 0;
}

.checklist-arrow {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-small);
  background: var(--color-cyan);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease, background-color 200ms ease;
}

.checklist-row:hover .checklist-arrow {
  transform: translateX(4px);
  background: var(--color-cyan-dark);
}

/* =====================================================================
   DARK AI / LUXURY SHOWCASE SECTION
   ===================================================================== */
.dark-showcase-section {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.dark-showcase-section h2 {
  color: var(--color-white) !important;
}

.dark-showcase-section p {
  color: #A0A0A0 !important;
}

.dark-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: var(--space-xl);
}

.dark-card {
  background: var(--color-dark-card);
  border: var(--border-dark);
  border-radius: var(--radius-medium);
  overflow: hidden;
  transition: transform 250ms ease, border-color 250ms ease;
}

.dark-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-cyan);
}

.dark-card-image {
  height: 180px;
  overflow: hidden;
}

.dark-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-card-body {
  padding: var(--space-md) var(--space-lg);
}

.dark-card-body h4 {
  color: var(--color-white) !important;
  font-size: 15px;
  margin-bottom: 6px;
}

.dark-card-body p {
  font-size: 12px;
  margin-bottom: 12px;
}

.dark-card-link {
  font-size: 12px;
  color: var(--color-cyan);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dark-card-link:hover {
  color: #FFFFFF;
}

/* =====================================================================
   CYAN BANNER STRIP
   ===================================================================== */
.cyan-banner {
  background-color: var(--color-cyan);
  color: var(--color-text-black);
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background-color 200ms ease;
}

.cyan-banner:hover {
  background-color: var(--color-cyan-dark);
}

.cyan-banner a {
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* =====================================================================
   METRICS SECTION
   ===================================================================== */
.metrics-section {
  padding: 60px 0;
  background: var(--color-white);
  border-bottom: 1px solid #ECECEC;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.metric-item {
  padding: var(--space-md);
}

.metric-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--color-lavender-soft);
  color: var(--color-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.metric-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-purple-dark);
  line-height: 1.1;
}

.metric-label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* =====================================================================
   INTERACTIVE TOOLS: RESORT SELECTOR & HOUSE EDGE CALCULATOR
   ===================================================================== */
.tool-section {
  padding: var(--space-section) 0;
  background: var(--color-off-white);
}

.tool-card {
  background: var(--color-white);
  border: var(--border-purple);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
  box-shadow: 0 8px 30px rgba(90, 53, 184, 0.08);
}

.tool-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group select, .form-group input {
  padding: 10px 14px;
  border-radius: var(--radius-small);
  border: var(--border-light);
  font-family: inherit;
  font-size: 14px;
  background: var(--color-white);
  color: var(--color-text-dark);
  transition: border-color 200ms ease;
}

.form-group select:focus, .form-group input:focus {
  border-color: var(--color-purple);
  outline: none;
}

.tool-result-panel {
  background: var(--gradient-lavender);
  border: 1px solid #D5CEF2;
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  margin-top: var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.tool-result-panel h4 {
  color: var(--color-purple-dark);
  margin-bottom: 6px;
}

.tool-result-panel p {
  font-size: 13px;
  margin-bottom: 0;
}

.tool-result-metric {
  text-align: right;
}

.tool-result-metric strong {
  font-size: 28px;
  color: var(--color-purple-dark);
  display: block;
}

.tool-result-metric span {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* =====================================================================
   DATA VISUALIZATIONS & SVG DIAGRAMS
   ===================================================================== */
.data-viz-wrap {
  background: var(--color-white);
  border: var(--border-light);
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.data-viz-wrap h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.data-viz-wrap p.caption {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.svg-chart-container {
  width: 100%;
  overflow-x: auto;
}

.svg-chart {
  width: 100%;
  min-width: 580px;
  height: auto;
  display: block;
}

/* CSS Animation for SVG Elements */
@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; filter: drop-shadow(0 0 8px rgba(55, 216, 194, 0.6)); }
  100% { transform: scale(1); opacity: 0.7; }
}

@keyframes nodeFlow {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

.animated-pulse {
  transform-origin: center;
  animation: pulseGlow 3s ease-in-out infinite;
}

.animated-flow {
  stroke-dasharray: 8 4;
  animation: nodeFlow 2.5s linear infinite;
}

/* =====================================================================
   TABLES & COMPARISON GRIDS
   ===================================================================== */
.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-medium);
  border: var(--border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
  background: var(--color-white);
  min-width: 640px;
}

.data-table caption {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
  background: var(--color-off-white);
  border-bottom: 1px solid #ECECEC;
  color: var(--color-text-black);
}

.data-table th {
  background: var(--color-lavender-soft);
  color: var(--color-purple-dark);
  font-weight: 600;
  padding: 12px 18px;
  border-bottom: 2px solid #DDD6FE;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #F0F0F0;
  color: var(--color-text-dark);
}

.data-table tbody tr:hover {
  background-color: #FBFBFE;
}

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

.data-table .highlight-cell {
  font-weight: 600;
  color: var(--color-purple);
}

/* =====================================================================
   TABLE OF CONTENTS
   ===================================================================== */
.toc-box {
  background: var(--color-lavender-soft);
  border: 1px solid #D5CEF2;
  border-radius: var(--radius-medium);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
}

.toc-box h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-purple-dark);
  margin-bottom: 8px;
}

.toc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}

.toc-list a {
  font-size: 13px;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.toc-list a::before {
  content: '→';
  color: var(--color-purple);
  font-size: 14px;
}

.toc-list a:hover {
  color: var(--color-purple);
  text-decoration: underline;
}

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.faq-section {
  padding: var(--space-section) 0;
  background: var(--color-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-xl);
  align-items: flex-start;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: var(--border-light);
  border-radius: var(--radius-medium);
  overflow: hidden;
  background: var(--color-white);
  transition: border-color 200ms ease;
}

.faq-item.active {
  border-color: var(--color-purple-light);
  box-shadow: 0 4px 18px rgba(121, 86, 232, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-black);
  text-align: left;
  background: var(--color-white);
}

.faq-trigger:hover {
  color: var(--color-purple);
}

.faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 250ms ease;
  color: var(--color-purple);
}

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

.faq-panel {
  display: none;
  padding: 0 20px 18px 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-panel {
  display: block;
  animation: fadeIn 250ms ease;
}

/* =====================================================================
   RESPONSIBLE GAMING CALLOUT / WELFARE BANNER
   ===================================================================== */
.welfare-banner {
  background: var(--color-off-white);
  border: 1px solid #E2DEF0;
  border-left: 4px solid var(--color-purple);
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: var(--space-lg);
  align-items: center;
}

.welfare-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-small);
  background: var(--color-lavender);
  color: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.welfare-content h4 {
  font-size: 16px;
  color: var(--color-text-black);
  margin-bottom: 4px;
}

.welfare-content p {
  font-size: 13px;
  margin-bottom: 0;
  max-width: 680px;
}

/* =====================================================================
   FINAL CALL TO ACTION (CTA)
   ===================================================================== */
.final-cta-section {
  background: var(--gradient-cta);
  color: var(--color-white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.final-cta-content h2 {
  color: var(--color-white) !important;
  margin-bottom: 12px;
}

.final-cta-content p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.final-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 65px 0 25px;
  border-top: 1px solid #222222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: var(--space-xl);
  margin-bottom: 50px;
}

.footer-brand p {
  color: #888888 !important;
  font-size: 13px;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--color-white) !important;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #8C8C8C;
  font-size: 13px;
}

.footer-col a:hover {
  color: var(--color-cyan);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  background: #1C1C1C;
  border: 1px solid #333333;
  border-radius: var(--radius-small);
  padding: 8px 12px;
  color: var(--color-white);
  font-size: 13px;
}

.newsletter-form input:focus {
  border-color: var(--color-cyan);
  outline: none;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid #222222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #6C6C6C;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: #8C8C8C;
}

.footer-bottom a:hover {
  color: var(--color-cyan);
}



/* =====================================================================
   SCROLL REVEAL & ANIMATIONS
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =====================================================================
   RESPONSIVE BREAKPOINTS
   ===================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .hero-side-card {
    display: none;
  }
  .possibilities-grid {
    grid-template-columns: 1fr;
  }
  .dark-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .analysis-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .final-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .announcement-bar .container {
    justify-content: center;
  }
  .announcement-links {
    display: none;
  }
  .nav-links, .header-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 24px var(--space-lg);
    z-index: 999;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-bottom: 2px solid var(--color-purple);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .mobile-menu.open {
    display: flex;
    animation: fadeIn 200ms ease;
  }
  .mobile-menu a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-black);
    padding: 10px 0;
    border-bottom: 1px solid #F0F0F0;
  }
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
  .dark-cards-grid {
    grid-template-columns: 1fr;
  }
  .tool-form-grid {
    grid-template-columns: 1fr;
  }
  .tool-result-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .tool-result-metric {
    text-align: left;
  }
  .welfare-banner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .toc-list {
    grid-template-columns: 1fr;
  }
  .verdict-header {
    flex-direction: column;
  }
}
