/* ========================================
   Barbenheimer Games Vergleich - Stylesheet
   ======================================== */

/* === CSS Reset & Base === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

:root {
  --gjs-t-color-primary: #ec4899;
  --gjs-t-color-secondary: #111827;
  --gjs-t-color-accent: #f59e0b;
  --gjs-t-color-success: #22c55e;
  --gjs-t-color-warning: #f59e0b;
  --gjs-t-color-error: #ef4444;

  /* Light Theme (default CSS) */
  --bg-page: #fffafc;
  --bg-body: #ffffff;
  --bg-card: #ffffff;
  --bg-card-alt: #f8fafc;
  --bg-card-hover: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  --bg-soft: #f1f5f9;
  --bg-warm: #fffbeb;
  --bg-pink: #fdf2f8;
  --text-primary: #111827;
  --text-secondary: #1f2937;
  --text-body: #374151;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-on-dark: #e2e8f0;
  --text-on-dark-muted: #cbd5e1;
  --border-light: #e5e7eb;
  --border-soft: #f1f5f9;
  --border-pink: #fbcfe8;
  --border-slate: #cbd5e1;
  --border-amber: #fde68a;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -4px rgb(226 232 240 / 0.6);
  --gradient-page: linear-gradient(to bottom, #fdf2f8, #fff, #f1f5f9);
  --gradient-pink: linear-gradient(to bottom right, #fdf2f8, #fff);
  --gradient-slate: linear-gradient(to bottom right, #f1f5f9, #fff);
  --gradient-decision: linear-gradient(to right, #fff, #f8fafc, #fff);
}

/* Dark Theme */
body.dark {
  --bg-page: #0f172a;
  --bg-body: #1e293b;
  --bg-card: #1e293b;
  --bg-card-alt: #334155;
  --bg-card-hover: #475569;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  --bg-soft: #1e293b;
  --bg-warm: #1e293b;
  --bg-pink: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #e2e8f0;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --text-on-dark: #f1f5f9;
  --text-on-dark-muted: #cbd5e1;
  --border-light: #334155;
  --border-soft: #334155;
  --border-pink: #831843;
  --border-slate: #475569;
  --border-amber: #92400e;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -4px rgb(0 0 0 / 0.4);
  --gradient-page: linear-gradient(to bottom, #0f172a, #1e293b, #0f172a);
  --gradient-pink: linear-gradient(to bottom right, #1e293b, #0f172a);
  --gradient-slate: linear-gradient(to bottom right, #1e293b, #0f172a);
}

html {
  scroll-behavior: smooth;
}

/* === Typography === */
.gjs-t-body {
  background-color: var(--bg-page);
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.gjs-t-h1 {
  color: var(--text-primary);
  font-size: 56px;
  line-height: 1.05;
}

.gjs-t-h2 {
  color: var(--text-primary);
  font-size: 34px;
  line-height: 1.15;
}

.gjs-t-button {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-radius: 9999px;
}

.gjs-t-link {
  color: var(--gjs-t-color-primary);
  text-decoration: none;
}

.gjs-t-border {
  border-radius: 24px;
  border-color: var(--border-light);
}

.font-display {
  font-family: "Playfair Display", serif;
}

.font-body {
  font-family: "Manrope", sans-serif;
}

/* === Tailwind-like Reset === */
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, select {
  text-transform: none;
}

button, input:where([type='button']), input:where([type='reset']), input:where([type='submit']) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol, ul, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

img, video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}

/* === Page Wrapper === */
.cls-234k3h {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: var(--gradient-page);
}

/* === Hero Section === */
.hero-section {
  border-bottom-width: 1px;
  border-color: var(--border-pink);
}

.hero-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.brand-link:hover {
  color: var(--gjs-t-color-primary);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border-width: 1px;
  border-color: var(--border-pink);
  background-color: var(--bg-card);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gjs-t-color-primary);
}

.top-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted);
}

.meta-pill {
  border-radius: 9999px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 2rem;
}

.hero-content {
  grid-column: span 7 / span 7;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-light);
}

.hero-title {
  max-width: 56rem;
}

.hero-description {
  max-width: 48rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--text-muted);
}

.hero-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card {
  border-radius: 1.5rem;
  border-width: 1px;
  border-color: var(--border-amber);
  background-color: var(--bg-warm);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.highlight-label {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gjs-t-color-accent);
}

.highlight-value {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.highlight-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted);
}

/* === Hero Side Panel === */
.hero-side-panel {
  grid-column: span 5 / span 5;
  border-radius: 32px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.side-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom-width: 1px;
  border-color: var(--border-soft);
  padding-bottom: 1.25rem;
}

.side-panel-intro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-label {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.panel-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.panel-icon {
  height: 2.25rem;
  width: 2.25rem;
}

.release-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.release-card {
  border-radius: 1.5rem;
  border-width: 1px;
  border-color: var(--border-amber);
  background-color: var(--bg-warm);
  padding: 1.25rem;
}

.release-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.release-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.release-badge {
  width: fit-content;
  border-radius: 9999px;
  background-color: var(--gjs-t-color-accent);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
}

.release-name {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
}

.release-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.release-date {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: var(--gjs-t-color-accent);
}

.panel-note {
  margin-top: 1.5rem;
  border-radius: 1rem;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card-alt);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted);
}

/* === Main Content === */
.main-content {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex: 1;
  max-width: 80rem;
  flex-direction: column;
  gap: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* === Intro Commentary Section === */
.intro-commentary-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
}

.intro-card {
  grid-column: span 8 / span 8;
  border-radius: 32px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.intro-with-image {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.intro-text-content {
  flex: 1;
}

.intro-cover {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  flex-shrink: 0;
}

.section-title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 700;
}

.section-text {
  margin-top: 1.25rem;
  color: var(--text-muted);
}

.stat-summary {
  grid-column: span 4 / span 4;
  border-radius: 32px;
  border-width: 1px;
  border-color: var(--border-amber);
  background-color: var(--bg-warm);
  padding: 2rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.stat-eyebrow {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gjs-t-color-accent);
}

.stat-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-item {
  padding-bottom: 0.25rem;
}

.stat-number {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
}

.stat-text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted);
}

/* === Reasons Comparison Section === */
.reasons-comparison-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.barbie-reasons-card {
  border-radius: 32px;
  border-width: 1px;
  border-color: var(--border-pink);
  background-image: var(--gradient-pink);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-heading-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-eyebrow {
  width: fit-content;
  border-radius: 9999px;
  border-width: 1px;
  border-color: var(--border-slate);
  background-color: var(--bg-card);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-body);
}

.card-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.card-icon {
  height: 2.5rem;
  width: 2.5rem;
}

.reason-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reason-item {
  border-radius: 1rem;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding: 1.25rem;
}

.reason-title {
  font-weight: 700;
  color: var(--text-primary);
}

.reason-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted);
}

.godzilla-reasons-card {
  border-radius: 32px;
  border-width: 1px;
  border-color: var(--border-slate);
  background-image: var(--gradient-slate);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* === Funny Dual Reasons Section === */
.funny-dual-reasons-section {
  border-radius: 36px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.section-header {
  max-width: 48rem;
}

.section-description {
  margin-top: 1rem;
  color: var(--text-muted);
}

.dual-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.dual-column {
  border-radius: 28px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card-alt);
  padding: 1.5rem;
}

.dual-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dual-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dual-item {
  border-radius: 1rem;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: var(--text-body);
}

/* === Alternatives Section === */
.alternatives-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
}

.alternatives-content {
  grid-column: span 7 / span 7;
  border-radius: 32px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.category-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.category-card {
  border-radius: 1.5rem;
  border-width: 1px;
  border-color: var(--border-amber);
  background-color: var(--bg-warm);
  padding: 1.25rem;
}

.category-title {
  font-weight: 700;
  color: var(--text-primary);
}

.category-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted);
}

/* === Reading Card (Aside) === */
.reading-card {
  grid-column: span 5 / span 5;
  border-radius: 32px;
  border-width: 1px;
  border-color: var(--border-amber);
  background-color: var(--bg-warm);
  padding: 2rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.aside-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.aside-text {
  margin-top: 1.25rem;
  color: var(--text-muted);
}

.aside-notes {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aside-note {
  border-radius: 1rem;
  border-width: 1px;
  border-color: var(--border-amber);
  background-color: var(--bg-card);
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-body);
}

/* === Barbenheimer Analogy Section === */
.barbenheimer-analogy-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.analogy-card {
  border-radius: 28px;
  border-width: 1px;
  border-color: var(--border-amber);
  background-color: var(--bg-warm);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.analogy-label {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gjs-t-color-accent);
}

.analogy-title {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.analogy-text {
  margin-top: 1rem;
  color: var(--text-muted);
}

/* === Conclusion Section === */
.conclusion-section {
  border-radius: 36px;
  border-width: 1px;
  border-color: var(--border-amber);
  background-color: var(--bg-warm);
  padding: 2rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.conclusion-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 2rem;
}

.conclusion-content {
  grid-column: span 8 / span 8;
}

.conclusion-text {
  margin-top: 1.25rem;
  max-width: 56rem;
  color: var(--text-muted);
}

.conclusion-action {
  grid-column: span 4 / span 4;
}

.cta-card {
  border-radius: 28px;
  border-width: 1px;
  border-color: var(--border-amber);
  background-color: var(--bg-card);
  padding: 1.5rem;
}

.cta-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cta-options {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  background-color: var(--gjs-t-color-accent);
  color: #ffffff;
  border-radius: 9999px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.cta-button:hover {
  background-color: #d97706;
}

.secondary-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border-width: 1px;
  border-color: var(--border-amber);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.secondary-link:hover {
  border-color: var(--gjs-t-color-primary);
  color: var(--gjs-t-color-primary);
}

/* === Visitor Counter Footer === */
.visitor-footer {
  display: block;
  text-align: center;
  width: 100%;
  padding: 2rem;
  padding-bottom: 3rem;
}

.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding: 0.5rem 1.25rem 0.5rem 0.75rem;
  box-shadow: var(--shadow-sm);
  margin: 0 auto;
}

.counter-badge {
  height: 22px;
  width: auto;
}

.counter-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* === Language Switcher === */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.lang-btn:hover {
  border-color: rgb(236 72 153 / 0.4);
  color: var(--gjs-t-color-primary);
}

.lang-btn.active {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-card);
}

/* === RTL Support (Arabic) === */
html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] .top-bar {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-content {
  text-align: right;
}

html[dir="rtl"] .reason-title,
html[dir="rtl"] .dual-item,
html[dir="rtl"] .category-text,
html[dir="rtl"] .aside-note,
html[dir="rtl"] .section-text,
html[dir="rtl"] .hero-description,
html[dir="rtl"] .panel-note,
html[dir="rtl"] .conclusion-text,
html[dir="rtl"] .analogy-text,
html[dir="rtl"] .section-description {
  text-align: right;
}

/* === Responsive: Tablet (max-width: 992px) === */
@media (max-width: 992px) {
  .gjs-t-h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .gjs-t-h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .lang-switcher {
    width: 100%;
  }

  .top-meta {
    flex-wrap: wrap;
  }

  .hero-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .main-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .intro-commentary-section {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .intro-card {
    padding: 1.5rem;
  }

  .intro-with-image {
    flex-direction: column;
  }

  .intro-cover {
    width: 100%;
    height: 200px;
  }

  .section-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .stat-summary {
    padding: 1.5rem;
  }

  .reasons-comparison-section {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .barbie-reasons-card {
    padding: 1.5rem;
  }

  .godzilla-reasons-card {
    padding: 1.5rem;
  }

  .funny-dual-reasons-section {
    padding: 1.5rem;
  }

  .dual-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .alternatives-section {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .alternatives-content {
    padding: 1.5rem;
  }

  .reading-card {
    padding: 1.5rem;
  }

  .barbenheimer-analogy-section {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .conclusion-section {
    padding: 1.5rem;
  }

  .conclusion-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* === Responsive: Mobile (max-width: 480px) === */
@media (max-width: 480px) {
  .gjs-t-h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .gjs-t-h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .hero-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-highlight-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .main-content {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .card-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* === Theme Toggle Switch === */
.theme-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-light);
  border-radius: 24px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--bg-card);
  border-radius: 50%;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.2);
}

.theme-toggle input:checked + .theme-slider {
  background-color: var(--gjs-t-color-primary);
}

.theme-toggle input:checked + .theme-slider:before {
  transform: translateX(20px);
}

.theme-icon {
  font-size: 1rem;
  line-height: 1;
  color: var(--text-muted);
}

/* Dark theme specific header adjustments */
body.dark .top-bar {
  background-color: var(--bg-body);
}

/* === Community Poll Section === */
.poll-section {
  border-radius: 36px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.poll-header {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.poll-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.poll-card {
  border-radius: 24px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card-alt);
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.poll-card:hover {
  border-color: var(--gjs-t-color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.poll-card.voted {
  border-color: var(--gjs-t-color-primary);
  background-color: var(--bg-pink);
}

.poll-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.poll-cover-text {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgb(0 0 0 / 0.5);
  letter-spacing: 0.05em;
  text-align: center;
}

.poll-name {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.poll-desc {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: var(--text-muted);
  margin: 0;
}

.poll-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--gjs-t-color-primary);
  background-color: transparent;
  color: var(--gjs-t-color-primary);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.poll-btn:hover {
  background-color: var(--gjs-t-color-primary);
  color: #ffffff;
}

.poll-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.poll-result {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.poll-card.voted .poll-result {
  display: flex;
}

.poll-card.voted .poll-btn {
  display: none;
}

.poll-bar-track {
  width: 100%;
  height: 0.5rem;
  overflow: hidden;
  border-radius: 9999px;
  background-color: var(--border-light);
}

.poll-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--gjs-t-color-primary), var(--gjs-t-color-accent));
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.poll-percent {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.poll-total {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-muted);
}

.poll-total strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* === Comparison Table Section === */
.comparison-section {
  border-radius: 36px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.comparison-header {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  background-color: var(--bg-card-alt);
}

.comparison-table th:first-child {
  border-radius: 16px 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 16px 0 0;
}

.comparison-table td {
  font-size: 0.9375rem;
  color: var(--text-body);
}

.comparison-table tr:last-child td:first-child {
  border-radius: 0 0 0 16px;
}

.comparison-table tr:last-child td:last-child {
  border-radius: 0 0 16px 0;
}

.row-label {
  font-weight: 700;
  color: var(--text-primary) !important;
  text-align: left !important;
}

.rating-dots {
  color: var(--gjs-t-color-accent);
  letter-spacing: 0.15em;
}

/* === Trailers Section === */
.trailers-section {
  border-radius: 36px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.trailers-header {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.trailers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trailer-card {
  border-radius: 20px;
  border-width: 1px;
  border-color: var(--border-light);
  background-color: var(--bg-card-alt);
  overflow: hidden;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.trailer-card:hover {
  border-color: var(--gjs-t-color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trailer-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.trailer-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.trailer-title {
  padding: 1rem 1.25rem 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trailer-subtitle {
  padding: 0 1.25rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .poll-grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }

  .trailers-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
    font-size: 0.8125rem;
  }
}
