/* ==========================================================================
   FUSE LABS DIGITAL - CASINO HOTEL REVIEWS PLATFORM
   Main Stylesheet & Design System
   ========================================================================== */

:root {
  /* Color Palette - Premium Navy & Gold Luxury */
  --bg-primary: #070B12;
  --bg-secondary: #0D1524;
  --bg-tertiary: #131F35;
  --bg-card: rgba(19, 31, 53, 0.75);
  --bg-card-hover: rgba(28, 44, 74, 0.85);
  --bg-glass: rgba(13, 21, 36, 0.82);

  --accent-gold: #C9A84E;
  --accent-gold-light: #DFBF6D;
  --accent-gold-dark: #A78834;

  --accent-emerald: #10B981;
  --accent-blue: #3B82F6;
  --accent-amber: #F59E0B;
  --accent-rose: #F43F5E;

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-gold: #E6CA7E;

  --border-subtle: rgba(201, 168, 78, 0.18);
  --border-strong: rgba(201, 168, 78, 0.4);
  --border-glass: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.06);

  --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --container-max: 1280px;
  --header-height: 80px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

p.lead {
  font-size: 1.15rem;
  color: #CBD5E1;
  line-height: 1.75;
}

a {
  color: var(--accent-gold-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #FFF;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.25rem;
}

li {
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.band {
  padding: 5rem 0;
  position: relative;
}

.band-tight {
  padding: 3rem 0;
}

.band-wide {
  padding: 7rem 0;
}

.rubric-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.rubric-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(201, 168, 78, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
}

.rubric-head {
  margin-bottom: 1rem;
}

.rubric-standfirst {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Grid Utilities */
.sheet {
  display: grid;
  gap: 2rem;
}

.pair-columns {
  grid-template-columns: repeat(2, 1fr);
}

.card-rail {
  grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
}

.quad-columns {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .card-rail, .quad-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pair-columns, .card-rail, .quad-columns {
    grid-template-columns: 1fr;
  }
  .band {
    padding: 3.5rem 0;
  }
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 1.5rem; }
.gap-xl { gap: 2rem; }

/* Buttons */
.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  border: none;
  line-height: 1;
}

.act-lead {
  background-color: var(--accent-gold);
  color: #070B12;
  border-bottom: 2px solid var(--accent-gold-dark);
}

.act-lead:hover {
  background-color: var(--accent-gold-light);
  color: #000;
  transform: translateY(-2px);
}

.act-muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.act-muted:hover {
  background: rgba(201, 168, 78, 0.12);
  border-color: var(--border-subtle);
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

.act-hairline {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.act-hairline:hover {
  background: var(--accent-gold);
  color: #070B12;
  transform: translateY(-2px);
}

.act-tight {
  padding: 0.55rem 1.1rem;
  font-size: 0.825rem;
  border-radius: var(--radius-sm);
}

.act-wide {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Badges & Tags */
.chit {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
}

.chit-gold {
  background: rgba(201, 168, 78, 0.15);
  color: var(--accent-gold-light);
  border: 1px solid var(--border-subtle);
}

.chit-green {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.chit-azure {
  background: rgba(59, 130, 246, 0.15);
  color: #93C5FD;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.chit-age {
  background: rgba(244, 63, 94, 0.15);
  color: #FDA4AF;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: #070B12;
  border-bottom: 1px solid var(--border-glass);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background-color: #05080E;
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-subtle);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFF;
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  color: var(--accent-gold);
}

.brand-logo .brand-highlight {
  color: var(--accent-gold);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(360px, 86vw);
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 1.5rem 1.75rem 2.5rem;
  list-style: none;
  gap: 0.35rem;
  background-color: #0A1120;
  border-left: 1px solid var(--border-glass);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.55);
  transform: translateX(105%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-menu.open {
  transform: translateX(0);
}

.nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(3, 6, 11, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 0.5rem;
  width: 100%;
}

.nav-panel-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0;
}

.nav-dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.nav-dismiss:hover {
  background: rgba(201, 168, 78, 0.25);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  transform: scale(1.08) rotate(90deg);
}

.nav-dismiss:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

.nav-link {
  display: block;
  font-size: 1.02rem;
  font-weight: 500;
  color: #CBD5E1;
  padding: 0.85rem 0.2rem;
  position: relative;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.nav-link:hover {
  padding-left: 0.55rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.55rem;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-fast);
}

.nav-link.active::after {
  width: 2.25rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.3rem;
}

.lang-pick {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.lang-pick.active {
  background: var(--accent-gold);
  color: #070B12;
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1300;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.55rem 0.95rem;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

.burger-bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
}

.burger-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-toggle[aria-expanded="true"] .burger-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .burger-bars span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .burger-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .burger-label {
    display: none;
  }

  .mobile-toggle {
    padding: 0.6rem 0.75rem;
  }
}

/* Verified Disclaimer Top Banner */
.compliance-bar {
  background: #05080E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
}

.compliance-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.compliance-note {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
}

.compliance-note span.pill {
  background: rgba(201, 168, 78, 0.15);
  color: var(--accent-gold-light);
  border: 1px solid var(--border-subtle);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: #04060B;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .footer-col-contact {
    grid-column: span 4;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-col-contact {
    grid-column: span 1;
  }
}

.footer-brand p {
  margin: 1rem 0 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold-light);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col h2 + .footer-links,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold-light);
  padding-left: 4px;
}

.org-card {
  background: rgba(19, 31, 53, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-size: 0.85rem;
}

.org-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.5rem;
}

.org-card p {
  font-size: 0.825rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.org-card .verified-date {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent-gold-light);
  font-weight: 600;
  font-size: 0.75rem;
}

.footer-responsible {
  background: rgba(244, 63, 94, 0.06);
  border: 1px solid rgba(244, 63, 94, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.footer-responsible-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .footer-responsible-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.age-circle {
  margin: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F43F5E;
  color: #FFF;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.responsible-text h2 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #FDA4AF;
}

.responsible-text p {
  font-size: 0.85rem;
  color: #CBD5E1;
  margin: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.footer-disclaimer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Element-level tidy for semantic replacements */
.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
}

.flex-center {
  margin: 0;
}

/* Accessible label hidden from sighted layout */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
