/* ============================================================
   Fishing Club 2 — Official Game Site
   Theme: "Sunset Lake" — warm teal, amber, sage
   Font: Plus Jakarta Sans
   Mobile-first responsive design
   ============================================================ */

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors — Sunset Lake palette */
  --bg-primary: #0A2E36;
  --bg-secondary: #0D3640;
  --bg-tertiary: #112E38;
  --bg-card: #0F3A45;
  --bg-card-hover: #134550;
  --bg-alt: rgba(0, 0, 0, 0.12);

  --primary: #E9B44C;
  --primary-light: #F0C96E;
  --primary-dark: #C99A35;
  --secondary: #9DC183;
  --secondary-light: #B5D4A0;
  --cta: #E76F51;
  --cta-hover: #F28B6E;
  --cta-dark: #D15A3E;

  --text: #F5F0E8;
  --text-muted: #8FA3A8;
  --text-heading: #FBF7F0;
  --text-dark: #0A2E36;

  --border: rgba(233, 180, 76, 0.15);
  --border-hover: rgba(233, 180, 76, 0.35);
  --success: #9DC183;
  --danger: #E76F51;
  --warning: #E9B44C;
  --info: #6CBEC7;

  /* Shadows — warm, soft */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(233, 180, 76, 0.12);

  /* Typography */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 3rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --section-gap: 3.5rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Layout */
  --container-max: 1140px;
  --header-height: 64px;
}

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

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

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

h1 { font-size: var(--fs-4xl); font-weight: 800; overflow-wrap: break-word; word-break: break-word; }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p {
  margin-bottom: var(--space-md);
  color: var(--text);
}

/* --- Skip Link (a11y) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--primary);
  color: var(--text-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}

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

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 46, 54, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--text-heading);
  text-decoration: none;
}

.header-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.header-logo span {
  color: var(--primary);
}

/* Desktop Navigation */
.nav-menu {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav-menu a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

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

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--cta);
  color: #fff;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--cta-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* Burger Menu Toggle */
.burger-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.burger-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.burger-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(10, 46, 54, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .mobile-cta {
  margin-top: var(--space-lg);
  background: var(--cta);
  color: #fff;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--fs-lg);
}

/* Sticky Bottom CTA Bar (mobile) */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  padding: var(--space-sm) var(--space-lg);
  z-index: 998;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.sticky-cta-bar .cta-text {
  color: #fff;
  font-weight: 600;
  font-size: var(--fs-sm);
}

.sticky-cta-bar .cta-btn {
  background: #fff;
  color: var(--cta);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-decoration: none;
  white-space: nowrap;
}

/* --- Sections --- */
.section {
  padding: var(--section-gap) 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title h2 {
  margin-bottom: var(--space-sm);
}

.section-title p {
  color: var(--text-muted);
  font-size: var(--fs-lg);
  max-width: 640px;
  margin: 0 auto;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: var(--space-xl) 0 var(--section-gap);
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 30%, rgba(233, 180, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

/* Split hero: text left, image right */
.hero-split {
  text-align: left;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-content {
  flex: 1;
}

.hero-split .hero-actions {
  justify-content: flex-start;
}

.hero-split .freshness-badge {
  justify-content: flex-start;
}

.hero-split .hero-image {
  flex: 1;
  max-width: 520px;
  margin: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(233, 180, 76, 0.12);
  color: var(--primary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  font-size: var(--fs-4xl);
  font-weight: 800;
  max-width: 720px;
  margin: 0 auto var(--space-md);
  line-height: 1.15;
}

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

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.hero-image {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-image img {
  width: 100%;
  height: auto;
}

.freshness-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(157, 193, 131, 0.1);
  color: var(--secondary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: var(--fs-xs);
  font-weight: 500;
  margin-top: var(--space-md);
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: var(--space-md) 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 var(--space-xs);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--fs-base);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
}

.btn-primary:hover {
  background: var(--cta-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 111, 81, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(233, 180, 76, 0.1);
  color: var(--primary-light);
  transform: translateY(-2px);
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

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

/* --- Quick Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.stat-card .stat-value {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-card .stat-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 500;
  margin-top: var(--space-xs);
}

/* --- Who Is This For --- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.who-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border-left: 4px solid;
}

.who-card.suitable {
  border-left-color: var(--success);
}

.who-card.not-suitable {
  border-left-color: var(--danger);
}

.who-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.who-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.who-card li {
  padding-left: var(--space-lg);
  position: relative;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.who-card.suitable li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.who-card.not-suitable li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(233, 180, 76, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
}

.feature-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- Specs Table --- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
}

.specs-table th,
.specs-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
}

.specs-table th {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
}

.specs-table td {
  color: var(--text);
  font-weight: 600;
}

.specs-table tr:hover {
  background: rgba(233, 180, 76, 0.04);
}

/* --- Game Comparison Table --- */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-md);
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
}

.comparison-table th {
  background: var(--bg-card);
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table td {
  color: var(--text);
}

.comparison-table .highlight-col {
  background: rgba(233, 180, 76, 0.06);
}

.comparison-table .highlight-col th {
  color: var(--primary);
}

/* --- Partner Casino Card --- */
.partner-card {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: 'Recommended';
  position: absolute;
  top: var(--space-md);
  right: calc(-1 * var(--space-xl));
  background: var(--primary);
  color: var(--text-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: var(--space-xs) var(--space-2xl);
  transform: rotate(45deg);
}

.partner-logo {
  width: 120px;
  height: auto;
  margin: 0 auto var(--space-lg);
}

.partner-card h3 {
  margin-bottom: var(--space-sm);
}

.partner-bonus {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.partner-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.partner-features li {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* --- Pros & Cons --- */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.pros-list, .cons-list {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.pros-list {
  border-top: 3px solid var(--success);
}

.cons-list {
  border-top: 3px solid var(--danger);
}

.pros-list h3, .cons-list h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.pros-list li, .cons-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

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

.pros-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.cons-list li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

/* --- Calculator --- */
.calculator {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 480px;
  margin: 0 auto;
}

.calculator h3 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.calc-field {
  margin-bottom: var(--space-md);
}

.calc-field label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.calc-field input {
  width: 100%;
  padding: var(--space-md);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: var(--fs-base);
  font-family: var(--font);
  transition: border-color var(--transition-fast);
}

.calc-field input:focus {
  outline: none;
  border-color: var(--primary);
}

.calc-result {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(233, 180, 76, 0.08);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.calc-result .result-value {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--primary);
}

.calc-result .result-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--border-hover);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  background: var(--bg-card);
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
  gap: var(--space-md);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question .faq-icon {
  font-size: var(--fs-xl);
  font-weight: 300;
  min-width: 24px;
  text-align: center;
  transition: transform var(--transition-base);
  color: var(--primary);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

/* --- Verdict / Author Box --- */
.verdict-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.author-box {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.author-box > div {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

.author-photo {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-info .author-name {
  font-weight: 700;
  color: var(--text-heading);
  font-size: var(--fs-lg);
}

.author-info .author-title {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.author-info .author-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.author-info .author-social a {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.verdict-rating {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.rating-score {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--primary);
}

.rating-stars {
  color: var(--primary);
  font-size: var(--fs-lg);
}

.rating-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* --- Update History --- */
.update-history {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.update-history summary {
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  cursor: pointer;
}

.update-history .changelog {
  padding: 0 var(--space-lg) var(--space-lg);
}

.update-history .changelog li {
  padding: var(--space-xs) 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.update-history .changelog time {
  font-weight: 600;
  color: var(--text);
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--section-gap) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-col h4 {
  font-size: var(--fs-base);
  color: var(--text-heading);
  margin-bottom: var(--space-md);
}

.footer-col p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col a {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

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

.footer-col .footer-email {
  color: var(--primary);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-badges img {
  height: 36px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  filter: grayscale(20%);
}

.trust-badges img:hover {
  opacity: 1;
  filter: none;
}

/* Disclaimer */
.footer-disclaimer {
  background: rgba(231, 111, 81, 0.08);
  border: 1px solid rgba(231, 111, 81, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}

.footer-disclaimer p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

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

/* Copyright */
.footer-copyright {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* --- Cookie Consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: var(--space-lg);
  z-index: 9997;
  display: none;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.cookie-banner p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
}

.cookie-actions button {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
}

.cookie-accept {
  background: var(--primary);
  color: var(--text-dark);
}

.cookie-accept:hover {
  background: var(--primary-light);
}

.cookie-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* --- HowTo Steps --- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  counter-reset: step;
}

.step-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  counter-increment: step;
}

.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(233, 180, 76, 0.12);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--fs-lg);
}

.step-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

.step-image {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 600px;
}

.step-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

/* --- Editorial Process --- */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  counter-reset: editorial;
}

.editorial-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  counter-increment: editorial;
  position: relative;
  padding-left: calc(var(--space-lg) + 36px);
}

.editorial-step::before {
  content: counter(editorial);
  position: absolute;
  left: var(--space-lg);
  top: var(--space-lg);
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-xs);
}

.editorial-step h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-xs);
}

.editorial-step p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- Answer Box (AI Overview) --- */
.answer-box {
  background: rgba(233, 180, 76, 0.06);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.answer-box strong {
  font-size: var(--fs-sm);
  color: var(--primary);
  display: block;
  margin-bottom: var(--space-xs);
}

.answer-box p {
  margin-bottom: 0;
  font-size: var(--fs-base);
}

/* --- Animations --- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Info Card (used on bonuses, registration, etc.) --- */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-lg) 0;
}

.info-card h3 {
  color: var(--primary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

/* --- Data Table (used on bonuses, registration, etc.) --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
}

.data-table th,
.data-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
}

.data-table th {
  color: var(--primary);
  font-weight: 600;
  background: rgba(233, 180, 76, 0.06);
  white-space: nowrap;
}

.data-table td {
  color: var(--text);
}

.data-table tr:hover {
  background: rgba(233, 180, 76, 0.04);
}

/* --- Tip/Warning Boxes --- */
.tip-box {
  background: rgba(157, 193, 131, 0.08);
  border-left: 3px solid var(--secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.warning-box {
  background: rgba(231, 111, 81, 0.08);
  border-left: 3px solid var(--danger);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.tip-box strong,
.warning-box strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--text-heading);
}

/* --- Author Section (compact) --- */
.author-section .author-compact {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.author-section .author-compact img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-lg); }

/* --- Contact Form --- */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-md);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: var(--fs-base);
  font-family: var(--font);
  transition: border-color var(--transition-fast);
}

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

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--fs-xl);
  margin-top: var(--space-2xl);
}

.legal-content h3 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
}

.legal-content p,
.legal-content li {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: var(--space-xs);
}

/* --- 404 Page --- */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-gap) var(--space-lg);
}

.error-page h1 {
  font-size: 6rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

/* ============================================================
   RESPONSIVE — Tablet (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
  h1 { font-size: var(--fs-4xl); }

  .nav-menu {
    display: flex;
  }

  .burger-toggle {
    display: none;
  }

  .sticky-cta-bar {
    display: none !important;
  }

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

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

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cookie-banner .container {
    flex-direction: row;
    text-align: left;
  }

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

/* ============================================================
   RESPONSIVE — Desktop (min-width: 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .hero-content {
    flex: 1 1 55%;
  }

  .hero-split .hero-image {
    flex: 1 1 45%;
    max-width: 520px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

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

/* ============================================================
   RESPONSIVE — Mobile (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {
  h1, h2 {
    font-size: clamp(1.4rem, 6vw, 2.25rem);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  h3 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .section-title h2 {
    font-size: clamp(1.3rem, 5.5vw, 2rem);
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .comparison-table-wrapper {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
    border-radius: 0;
  }
}

/* ============================================================
   RESPONSIVE — Mobile small (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --fs-4xl: 1.5rem;
    --fs-3xl: 1.3rem;
    --fs-2xl: 1.15rem;
    --section-gap: 2rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .sticky-cta-bar {
    display: block;
  }

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

  .error-page {
    padding: var(--space-2xl) var(--space-md);
  }

  .error-page h1 {
    font-size: 4rem;
  }

  .error-page p {
    font-size: var(--fs-sm);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-actions button {
    width: 100%;
  }

  .section-title h1,
  .section-title h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .cookie-banner .container {
    padding: 0 var(--space-sm);
  }

  .cookie-banner p {
    font-size: var(--fs-xs);
  }
}

/* ============================================================
   RESPONSIVE — Mobile (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {
  .sticky-cta-bar {
    display: block;
  }

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

/* --- Global overflow prevention --- */
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img, video, iframe, table {
  max-width: 100%;
}

* {
  min-width: 0;
}

/* --- Print --- */
@media print {
  .header, .footer, .sticky-cta-bar, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .animate-in {
    opacity: 1;
    transform: none;
  }
}
