@font-face {
  font-family: "TC Source Sans";
  src: url("public/assets/fonts/source-sans-3-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TC Source Sans";
  src: url("public/assets/fonts/source-sans-3-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TC Cinzel";
  src: url("public/assets/fonts/cinzel-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --tc-bg-deep: #041b1d;
  --tc-bg-main: #063234;
  --tc-bg-panel: #07282b;
  --tc-bg-panel-soft: #0a3b3e;
  --tc-gold: #f0c25b;
  --tc-gold-soft: #c8993c;
  --tc-gold-dark: #8d6221;
  --tc-green: #1ba748;
  --tc-green-dark: #0f5b2a;
  --tc-text: #eef4e6;
  --tc-text-dim: #c7d3bf;
  --tc-border: rgba(240, 194, 91, 0.34);
  --tc-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  --tc-sidebar-width: 290px;
  --tc-max-content: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "TC Source Sans", Arial, sans-serif;
  color: var(--tc-text);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 170, 70, 0.09), transparent 30%),
    radial-gradient(circle at 8% 2%, rgba(14, 139, 110, 0.14), transparent 36%),
    var(--tc-bg-deep);
  overflow-x: hidden;
  line-height: 1.6;
}

body.tc-cookie-visible {
  --tc-cookie-space: 130px;
}

body.tc-cookie-visible .tc-footer {
  padding-bottom: 134px;
}

a {
  color: var(--tc-gold);
}

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

.tc-layout {
  display: flex;
  min-height: 100vh;
}

.tc-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--tc-sidebar-width);
  background:
    linear-gradient(180deg, rgba(4, 43, 44, 0.96) 0%, rgba(4, 31, 33, 0.96) 100%),
    url("creative/hero/casinia-hero-lobby.webp") center/cover;
  border-right: 1px solid rgba(240, 194, 91, 0.25);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.04);
  z-index: 40;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tc-sidebar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(2, 17, 17, 0.34), rgba(2, 17, 17, 0.8));
  pointer-events: none;
}

.tc-sidebar > * {
  position: relative;
  z-index: 1;
}

.tc-logo-link {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.tc-logo {
  width: 162px;
  height: auto;
}

.idiom-mobile-row {
  width: 100%;
  min-height: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 12;
}

.idiom-mobile-spacer {
  display: none;
}

.idiom-mobile-row .tc-logo-link {
  margin: 0;
  padding: 0;
  width: auto;
}

.idiom-mobile-row .idiom-switch {
  position: static;
  transform: none;
  margin-inline: auto;
}

.idiom-switch {
  display: flex;
  align-items: center;
  z-index: 140;
  isolation: isolate;
}

.idiom-dropdown {
  position: relative;
  z-index: 140;
}

.idiom-toggle {
  border: 1px solid rgba(240, 194, 91, 0.38);
  background: rgba(2, 22, 23, 0.9);
  color: var(--tc-text);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.idiom-toggle:hover,
.idiom-toggle:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.idiom-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.idiom-toggle--full {
  min-height: 42px;
  border-radius: 10px;
  padding: 0 12px;
}

.idiom-toggle--compact {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  justify-content: center;
  padding: 0;
}

.idiom-toggle-label {
  white-space: nowrap;
}

.idiom-toggle-caret {
  font-size: 0.8rem;
  color: #d2b46d;
}

.idiom-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  gap: 6px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(240, 194, 91, 0.4);
  background: rgba(3, 27, 28, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  z-index: 160;
}

.idiom-dropdown.visible .idiom-menu {
  display: grid;
}

.idiom-menu--full {
  min-width: 220px;
  grid-template-columns: 1fr;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  max-height: min(62vh, 440px);
  overflow-y: auto;
  overflow-x: hidden;
}

.idiom-menu--compact {
  min-width: 0;
  width: auto;
  grid-template-columns: repeat(4, 44px);
  gap: 8px;
}

.idiom-option {
  text-decoration: none;
  color: var(--tc-text);
  border: 1px solid rgba(240, 194, 91, 0.22);
  border-radius: 9px;
  background: rgba(6, 39, 40, 0.75);
  min-height: 38px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.idiom-option:hover,
.idiom-option:focus-visible {
  background: rgba(12, 57, 58, 0.9);
  border-color: rgba(240, 194, 91, 0.44);
  outline: none;
}

.idiom-option.selected {
  border-color: rgba(240, 194, 91, 0.72);
  background: rgba(20, 73, 70, 0.85);
}

.idiom-option--compact {
  width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 50%;
  justify-content: center;
  padding: 0;
}

.idiom-option-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  flex: 0 0 auto;
}

.idiom-select--compact {
  display: none;
}

.tc-sidebar-actions {
  display: grid;
  gap: 10px;
}

.tc-btn {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}

.tc-btn:hover,
.tc-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  filter: brightness(1.06);
}

.tc-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.tc-btn--gold {
  color: #1d1202;
  border-color: rgba(255, 216, 142, 0.7);
  background: linear-gradient(180deg, #ffd879 0%, #c8912e 58%, #8c5f1f 100%);
}

.tc-btn--green {
  color: #edf8ef;
  border-color: rgba(186, 255, 192, 0.6);
  background: linear-gradient(180deg, #2be664 0%, #179f44 56%, #10642f 100%);
}

.tc-btn--wide {
  width: 100%;
  min-height: 46px;
  font-size: 0.95rem;
}

.tc-sidebar-nav {
  border-top: 1px solid rgba(240, 194, 91, 0.26);
  border-bottom: 1px solid rgba(240, 194, 91, 0.26);
  padding: 14px 0;
}

.tc-sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.tc-sidebar-nav a {
  text-decoration: none;
  color: var(--tc-text);
  padding: 8px 10px;
  border-radius: 8px;
  display: block;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.tc-sidebar-nav a:hover,
.tc-sidebar-nav a:focus-visible {
  background: rgba(31, 99, 90, 0.34);
  border-color: rgba(240, 194, 91, 0.26);
  outline: none;
}

.tc-sidebar-disclaimer {
  margin-top: auto;
  font-size: 0.82rem;
  color: #c1cfbd;
  line-height: 1.45;
  background: rgba(3, 24, 25, 0.66);
  border: 1px solid rgba(240, 194, 91, 0.2);
  border-radius: 10px;
  padding: 10px;
}

.tc-main-wrap {
  flex: 1;
  margin-left: var(--tc-sidebar-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.tc-site-main {
  flex: 1;
  padding: 18px 22px calc(26px + var(--tc-cookie-space, 0px));
}

.tc-container {
  width: min(100%, var(--tc-max-content));
  margin: 0 auto;
}

.tc-topbar {
  background:
    radial-gradient(circle at 15% 0%, rgba(43, 119, 107, 0.33), transparent 60%),
    #042729;
  border: 1px solid var(--tc-border);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.tc-search {
  flex: 1;
  max-width: 500px;
}

.tc-search input {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(240, 194, 91, 0.35);
  background: rgba(2, 22, 23, 0.86);
  color: var(--tc-text);
  padding: 0 14px;
  font-size: 0.95rem;
}

.tc-search input::placeholder {
  color: #90a79b;
}

.tc-topbar-actions {
  display: flex;
  gap: 10px;
}

.tc-topbar-actions .tc-btn {
  min-height: 44px;
  padding: 0 18px;
}

.tc-section {
  margin: 20px 0;
  background: linear-gradient(180deg, rgba(6, 47, 49, 0.95), rgba(5, 34, 36, 0.95));
  border: 1px solid var(--tc-border);
  border-radius: 16px;
  box-shadow: var(--tc-shadow);
  overflow: hidden;
}

.tc-section-inner {
  padding: 24px;
}

.tc-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: #d5c393;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
  color: #f6f1dc;
}

h1,
h2 {
  font-family: "TC Cinzel", Georgia, serif;
}

h1 {
  font-size: clamp(1.72rem, 2.6vw, 2.55rem);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin-bottom: 14px;
}

h3 {
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  margin-bottom: 10px;
}

p {
  margin: 0 0 14px;
}

.tc-hero {
  position: relative;
  min-height: 460px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #071b1c;
  overflow: hidden;
}

.tc-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
  pointer-events: none;
}

.tc-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.tc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(2, 20, 21, 0.84), rgba(2, 20, 21, 0.1) 70%);
}

.tc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(2, 17, 17, 0.88) 0%, rgba(2, 17, 17, 0.2) 40%, rgba(2, 17, 17, 0.3) 100%);
  pointer-events: none;
}

.tc-hero-card {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  margin: 0 auto;
  padding: 24px 24px 26px;
  background:
    linear-gradient(160deg, rgba(9, 34, 35, 0.9), rgba(6, 23, 24, 0.9));
  border: 1px solid rgba(240, 194, 91, 0.4);
  border-radius: 14px;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.48);
}

.tc-hero-lead {
  font-size: 1.08rem;
  color: var(--tc-text-dim);
}

.tc-hero-card .tc-btn {
  margin-top: 8px;
  min-height: 52px;
  min-width: 240px;
  padding: 0 24px;
  font-size: 1rem;
}

.tc-accordion-btn {
  width: 100%;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(4, 26, 27, 0.7);
  border: 1px solid rgba(240, 194, 91, 0.28);
  color: var(--tc-text);
  border-radius: 10px;
  font-size: 1rem;
}

.tc-accordion-panel {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(240, 194, 91, 0.26);
  border-radius: 10px;
  background: rgba(5, 29, 30, 0.72);
}

.tc-accordion-panel[hidden] {
  display: none;
}

.tc-quick-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.tc-quick-links a {
  display: block;
  text-decoration: none;
  color: var(--tc-text);
  border: 1px solid rgba(240, 194, 91, 0.24);
  border-radius: 8px;
  padding: 10px;
  background: rgba(6, 41, 42, 0.7);
}

.tc-table-wrap {
  overflow-x: auto;
}

.tc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: rgba(2, 20, 21, 0.58);
  border-radius: 12px;
  overflow: hidden;
}

.tc-table th,
.tc-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(240, 194, 91, 0.2);
  text-align: left;
  vertical-align: top;
}

.tc-table th {
  width: 36%;
  color: #eadbb2;
  font-weight: 600;
}

.tc-table tr:last-child th,
.tc-table tr:last-child td {
  border-bottom: 0;
}

.tc-columns {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tc-columns + p,
.tc-slots-grid + p {
  margin-top: 22px;
}

.tc-panel {
  padding: 16px;
  border: 1px solid rgba(240, 194, 91, 0.22);
  border-radius: 12px;
  background: rgba(3, 24, 25, 0.62);
}

.tc-panel ul {
  margin: 0;
  padding-left: 20px;
}

.tc-panel li {
  margin-bottom: 8px;
}

.tc-cta-banner {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--tc-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--tc-shadow);
  margin: 20px 0;
}

.tc-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.tc-cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 18, 19, 0.92), rgba(2, 18, 19, 0.55));
}

.tc-cta-banner--a::before {
  background-image: url("creative/hero/casinia-hero-promo.webp");
}

.tc-cta-banner--b::before {
  background-image: url("creative/hero/casinia-hero-lobby.webp");
}

.tc-cta-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
}

.tc-cta-content h3 {
  font-family: "TC Cinzel", Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  margin-bottom: 12px;
}

.tc-cta-content p {
  margin-bottom: 16px;
  color: #d8e3d2;
}

.tc-cta-content .tc-btn {
  min-height: 50px;
  min-width: 220px;
  padding: 0 28px;
  font-size: 1rem;
}

.tc-screen-stack {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.tc-screen-card {
  width: min(100%, 420px);
  margin-inline: auto;
  border: 1px solid rgba(240, 194, 91, 0.28);
  border-radius: 12px;
  background: rgba(2, 20, 21, 0.7);
  padding: 10px;
}

.tc-screen-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.tc-screen-caption {
  font-size: 0.91rem;
  color: #d4cbb0;
  margin-top: 8px;
}

.tc-calc {
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.tc-calc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tc-calc label {
  font-size: 0.88rem;
  color: #dccda2;
  display: grid;
  gap: 6px;
}

.tc-calc input {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(240, 194, 91, 0.28);
  background: rgba(2, 20, 21, 0.78);
  color: var(--tc-text);
  padding: 0 10px;
  font-size: 1rem;
}

.tc-calc-result {
  min-height: 58px;
  border-radius: 10px;
  border: 1px solid rgba(240, 194, 91, 0.34);
  background: rgba(4, 39, 33, 0.65);
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-weight: 600;
  color: #ecf4de;
}

.tc-proscons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tc-proscons ul {
  margin: 0;
  padding-left: 20px;
}

.tc-proscons li {
  margin-bottom: 10px;
}

.tc-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.tc-slot-card {
  display: block;
  text-decoration: none;
  color: var(--tc-text);
  border: 1px solid rgba(240, 194, 91, 0.35);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(3, 26, 27, 0.9), rgba(4, 38, 40, 0.9));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tc-slot-card:hover,
.tc-slot-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  outline: none;
}

.tc-slot-image-wrap {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.tc-slot-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-slot-title {
  margin: 0;
  padding: 10px 8px;
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid rgba(240, 194, 91, 0.26);
}

.tc-two-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tc-reviews-shell {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 10px;
}

.tc-slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(240, 194, 91, 0.5);
  background: rgba(4, 31, 32, 0.9);
  color: #f2d184;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tc-slider-btn:disabled {
  opacity: 0.36;
  cursor: not-allowed;
}

.tc-reviews-viewport {
  overflow: hidden;
}

.tc-reviews-track {
  display: flex;
  gap: 12px;
  will-change: transform;
  transition: transform 0.28s ease;
}

.tc-review-card {
  flex: 0 0 calc((100% - 24px) / 3);
  background: rgba(4, 28, 29, 0.72);
  border: 1px solid rgba(240, 194, 91, 0.26);
  border-radius: 12px;
  padding: 14px;
  min-height: 210px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.tc-review-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.tc-review-meta {
  font-size: 0.85rem;
  color: #d5c79f;
}

.tc-review-score {
  white-space: nowrap;
  color: #f4d98c;
  font-weight: 700;
}

.tc-review-text {
  margin: 0;
  font-size: 0.97rem;
  overflow-wrap: anywhere;
}

.tc-faq details {
  border: 1px solid rgba(240, 194, 91, 0.25);
  border-radius: 10px;
  padding: 0 14px;
  background: rgba(3, 24, 25, 0.6);
  margin-bottom: 10px;
}

.tc-faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 12px 0;
}

.tc-faq summary::-webkit-details-marker {
  display: none;
}

.tc-faq summary::after {
  content: "+";
  float: right;
  color: var(--tc-gold);
}

.tc-faq details[open] summary::after {
  content: "-";
}

.tc-faq-content {
  padding: 0 0 12px;
}

.tc-footer {
  margin-left: var(--tc-sidebar-width);
  border-top: 1px solid rgba(240, 194, 91, 0.26);
  background: rgba(3, 20, 21, 0.96);
  padding: 18px 22px 26px;
}

.tc-footer-inner {
  width: min(100%, var(--tc-max-content));
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.tc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tc-footer small {
  color: #c7d1bf;
}

.tc-cookie-banner {
  position: fixed;
  left: var(--tc-sidebar-width);
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 14px 20px;
  background: linear-gradient(180deg, rgba(4, 33, 34, 0.98), rgba(3, 21, 22, 0.98));
  border-top: 1px solid rgba(240, 194, 91, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tc-cookie-banner[hidden] {
  display: none;
}

.tc-cookie-text {
  margin: 0;
  color: #e3ead8;
}

.tc-anchor-offset {
  scroll-margin-top: 28px;
}

@media (max-width: 1360px) {
  .tc-slots-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tc-review-card {
    flex-basis: calc((100% - 12px) / 2);
  }
}

@media (max-width: 1090px) {
  :root {
    --tc-sidebar-width: 250px;
  }

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

@media (max-width: 900px) {
  :root {
    --tc-sidebar-width: 0px;
  }

  .tc-layout {
    display: block;
  }

  .tc-sidebar {
    position: sticky;
    top: 0;
    z-index: 120;
    width: 100%;
    height: auto;
    min-height: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 16px 14px;
    gap: 10px;
  }

  .tc-logo-link {
    width: 100%;
    padding: 0;
    justify-content: center;
  }

  .tc-logo {
    width: 140px;
  }

  .idiom-mobile-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    width: 100%;
    min-height: 44px;
    gap: 0;
  }

  .idiom-mobile-spacer {
    display: block;
    width: 44px;
    height: 44px;
  }

  .idiom-mobile-row .tc-logo-link {
    width: auto;
    justify-self: center;
    justify-content: center;
  }

  .idiom-mobile-row .idiom-switch {
    position: static;
    transform: none;
    justify-self: end;
    margin-top: 0;
  }

  .idiom-select--full {
    display: none;
  }

  .idiom-select--compact {
    display: block;
  }

  .idiom-menu--compact {
    right: 0;
    left: auto;
    grid-template-columns: repeat(3, 44px);
    max-width: calc(100vw - 24px);
    max-height: 62vh;
    overflow: auto;
  }

  .idiom-toggle--compact,
  .idiom-option--compact {
    overflow: hidden;
  }

  .idiom-toggle--compact .idiom-option-flag,
  .idiom-option--compact .idiom-option-flag {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 0;
    box-shadow: none;
  }

  .tc-sidebar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tc-sidebar-actions .tc-btn {
    min-height: 52px;
    padding: 0 14px;
    white-space: nowrap;
    font-size: 1.02rem;
  }

  .tc-sidebar-nav,
  .tc-sidebar-disclaimer {
    display: none;
  }

  .tc-main-wrap,
  .tc-footer {
    margin-left: 0;
  }

  .tc-site-main {
    padding: 10px 12px calc(20px + var(--tc-cookie-space, 0px));
  }

  .tc-section-inner {
    padding: 18px;
  }

  .tc-hero {
    min-height: 380px;
    padding: 16px;
  }

  .tc-topbar {
    display: none;
  }

  /* Keep a small top rhythm on mobile, but avoid the previous large gap */
  #tc-hero.tc-section {
    margin-top: 0;
  }

  .tc-columns,
  .tc-proscons,
  .tc-two-tables,
  .tc-calc-grid {
    grid-template-columns: 1fr;
  }

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

  .tc-review-card {
    flex: 0 0 100%;
    min-height: 0;
  }

  .tc-reviews-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 6px;
  }

  .tc-slider-btn {
    width: 44px;
    height: 44px;
  }

  .tc-cookie-banner {
    left: 0;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  body.tc-cookie-visible .tc-footer {
    padding-bottom: 128px;
  }
}

@media (max-width: 560px) {
  .tc-sidebar-actions .tc-btn {
    min-height: 50px;
    padding: 0 10px;
    font-size: 0.98rem;
  }

  .tc-slot-title {
    font-size: 0.78rem;
  }
}
