/* Linebet Partners Review — plain CSS */

:root {
  --background: hsl(200 9% 8%);
  --foreground: hsl(0 0% 98%);
  --border: hsl(200 11% 18%);
  --card: hsl(200 10% 12%);
  --card-foreground: hsl(0 0% 98%);
  --primary: hsl(144 54% 56%);
  --primary-foreground: hsl(200 20% 10%);
  --secondary: hsl(200 12% 16%);
  --muted-foreground: hsl(200 5% 65%);
  --destructive: hsl(0 84% 60%);
  --radius: 0.75rem;
  --container: 1200px;
  --font: 'Inter', system-ui, sans-serif;
  --font-ar: 'Noto Sans Arabic', 'Inter', system-ui, sans-serif;
  --touch-min: 2.75rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  min-height: 100vh;
  padding-inline: env(safe-area-inset-left) env(safe-area-inset-right);
}

[dir="rtl"] body {
  font-family: var(--font-ar);
}

main {
  overflow-x: clip;
  width: 100%;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow { max-width: 896px; }
.container-wide { max-width: 1024px; }

.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon-lg { width: 2rem; height: 2rem; }
.icon-primary { color: var(--primary); }
.icon-destructive { color: var(--destructive); }
.icon-telegram {
  object-fit: contain;
}

.hide-mobile { display: none; }

@media (min-width: 768px) {
  .hide-mobile { display: inline; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

button.btn {
  appearance: none;
  -webkit-appearance: none;
}

.btn:hover { opacity: 0.9; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
  padding: 0.5rem 1rem;
}

.btn-outline:hover { background: var(--secondary); }

.btn-ghost {
  background: transparent;
  color: var(--foreground);
  padding: 0.375rem 0.5rem;
}

.btn-ghost:hover { background: var(--secondary); }

.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.875rem; }

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: hsl(200 10% 12% / 0.5);
}

[dir="rtl"] .btn svg:last-child { transform: rotate(180deg); }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-success {
  background: hsl(144 54% 56% / 0.15);
  color: var(--primary);
  border: 1px solid hsl(144 54% 56% / 0.3);
}

.badge-secondary {
  background: var(--secondary);
  color: var(--foreground);
  margin-bottom: 1rem;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  margin-inline-end: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Cards */
.card {
  background: hsl(200 10% 12% / 0.5);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}

.card-highlight {
  background: hsl(144 54% 56% / 0.05);
  border-color: hsl(144 54% 56% / 0.2);
}

.card-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.card-header h3 { font-size: 1.125rem; }

.card-body { padding: 1rem 1.5rem 1.5rem; }
.card-body p { color: var(--muted-foreground); font-size: 0.875rem; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(200 9% 8% / 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top);
}

.navbar-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
  color: inherit;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: hsl(200 10% 12% / 0.8);
  flex-shrink: 0;
}

.lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted-foreground);
  transition: background 0.2s, color 0.2s;
  min-height: 2.25rem;
  min-width: 2.75rem;
}

.lang-option:hover:not(.active) {
  color: var(--foreground);
  background: var(--secondary);
}

.lang-option.active {
  background: var(--primary);
  color: var(--primary-foreground);
  pointer-events: none;
}

.lang-option + .lang-option {
  border-inline-start: 1px solid var(--border);
}

.btn-visit-short {
  display: none;
}

.logo-mark {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-lg { width: 2rem; height: 2rem; }

.navbar-title {
  font-weight: 700;
  font-size: 1.125rem;
  display: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .navbar-title { display: block; }
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.navbar-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

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

@media (min-width: 768px) {
  .navbar-links { display: flex; }
}

.navbar-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-telegram-nav {
  border-color: hsl(0 136 204 / 0.35);
  background: hsl(0 136 204 / 0.08);
}

.btn-telegram-nav:hover {
  background: hsl(0 136 204 / 0.15);
  border-color: hsl(0 136 204 / 0.5);
}

/* Hero */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 12rem 0 8rem; }
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: hsl(144 54% 56% / 0.1);
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 1.5rem 0 2rem;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-logo {
  display: block;
  width: min(100%, 16rem);
  height: auto;
  aspect-ratio: 120 / 37;
  margin: 0.75rem auto 0;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero-logo {
    width: min(100%, 22rem);
    margin-top: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}

.gradient-text {
  background: linear-gradient(to right, var(--primary), #6ee7b7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[dir="rtl"] .gradient-text {
  background: linear-gradient(to left, var(--primary), #6ee7b7);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 672px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-desc { font-size: 1.25rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; justify-content: center; }
  .hero-actions .btn { width: auto; }
}

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

.hero-features {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(200 11% 18% / 0.5);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .hero-features { grid-template-columns: repeat(3, 1fr); }
}

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

.hero-feature a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Sections */
.section { padding: 6rem 0; }
.section-alt {
  padding: 5rem 0;
  background: hsl(200 12% 16% / 0.3);
  border-block: 1px solid hsl(200 11% 18% / 0.5);
}

.section-header { margin-bottom: 3rem; max-width: 768px; }
.section-header.text-center { margin-inline: auto; text-align: center; }
.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-header.text-center h2 { justify-content: center; }

.section-header p,
.section-header .lead {
  color: var(--muted-foreground);
}

.section-header .lead { font-size: 1.125rem; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.stat-card:hover { border-color: hsl(144 54% 56% / 0.5); }

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(144 54% 56% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.stat-icon .icon { width: 1.5rem; height: 1.5rem; color: var(--primary); }

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Regions */
.regions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .regions-grid { grid-template-columns: repeat(4, 1fr); }
}

.region-card { padding: 1.5rem; }
.region-card p { font-size: 0.875rem; font-weight: 500; line-height: 1.6; }

/* Commission */
.commission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .commission-grid { grid-template-columns: repeat(3, 1fr); }
}

.commission-value {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.text-primary { color: var(--primary); }

.table-card {
  margin-top: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-header {
  padding: 1.5rem;
  border-bottom: 1px solid hsl(200 11% 18% / 0.5);
}

.table-header h3 { font-size: 1.25rem; }

.data-table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 1rem 1.5rem;
  text-align: start;
  border-bottom: 1px solid hsl(200 11% 18% / 0.5);
}

.data-table th {
  font-weight: 600;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.data-table td:first-child { font-weight: 500; width: 33%; }
.data-table tr:last-child td { border-bottom: none; }

/* Tools */
.tools-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .tools-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .tools-intro { width: 33.333%; flex-shrink: 0; }
  .tools-grid { width: 66.666%; }
}

.tools-intro h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tools-intro > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.tools-image-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.tools-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(200 9% 8% / 0.8), transparent);
  pointer-events: none;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

.tool-card { padding: 1.5rem; transition: background 0.2s; }
.tool-card:hover { background: hsl(200 12% 16% / 0.5); }

.tool-card-wide { grid-column: 1 / -1; }

@media (min-width: 640px) {
  .tool-card-wide { grid-column: span 2; }
}

.tool-icon { margin-bottom: 1rem; }
.tool-icon .icon { width: 2rem; height: 2rem; color: var(--primary); }

.tool-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tool-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Registration */
.registration-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .registration-layout {
    flex-direction: row;
    gap: 4rem;
  }
  .registration-content,
  .registration-image { width: 50%; }
}

.registration-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.registration-content .lead {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.steps { display: flex; flex-direction: column; gap: 2rem; }

.step {
  display: flex;
  gap: 1rem;
  position: relative;
}

.step:not(.step-last)::before {
  content: '';
  position: absolute;
  inset-inline-start: 19px;
  top: 2.5rem;
  bottom: -2rem;
  width: 2px;
  background: var(--border);
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(144 54% 56% / 0.2);
  color: var(--primary);
  border: 1px solid hsl(144 54% 56% / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p { color: var(--muted-foreground); }

.support-box {
  margin-top: 3rem;
  background: hsl(200 12% 16% / 0.3);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.support-box h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.support-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.registration-image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  position: relative;
}

.registration-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, hsl(144 54% 56% / 0.1), transparent);
  pointer-events: none;
}

.registration-image img {
  border-radius: 0.75rem;
  border: 1px solid hsl(200 11% 18% / 0.5);
  position: relative;
  z-index: 1;
}

/* Pros & Cons */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .proscons-grid { grid-template-columns: repeat(2, 1fr); }
}

.pros-card { border-top: 4px solid var(--primary); }
.cons-card { border-top: 4px solid var(--destructive); }

.proscons-list { padding: 0 1.5rem 1.5rem; }

.proscons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 0.625rem;
  flex-shrink: 0;
}

.dot-primary { background: var(--primary); }
.dot-destructive { background: var(--destructive); }

.proscons-grid .card-header h3 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.proscons-grid .card-header h3 .icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* FAQ */
.faq-list { padding: 1.5rem; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .faq-item summary { font-size: 1.125rem; }
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Verdict */
.verdict-card {
  display: grid;
  grid-template-columns: 1fr;
  border-color: hsl(144 54% 56% / 0.3);
  box-shadow: 0 0 50px hsl(144 54% 56% / 0.05);
  overflow: hidden;
}

@media (min-width: 768px) {
  .verdict-card { grid-template-columns: 1fr 2fr; }
}

.verdict-score {
  background: hsl(200 12% 16% / 0.5);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .verdict-score {
    border-bottom: none;
    border-inline-end: 1px solid var(--border);
  }
}

.score-label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.score-value {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.score-value span {
  font-size: 1.875rem;
  color: var(--muted-foreground);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(144 54% 56% / 0.5);
}

.star.filled { color: var(--primary); }

.verdict-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.verdict-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .verdict-content { padding: 3rem; }
}

.verdict-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.verdict-content p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  border-top: 1px solid hsl(200 11% 18% / 0.5);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

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

.footer-bottom {
  border-top: 1px solid hsl(200 11% 18% / 0.5);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p { max-width: 672px; line-height: 1.6; }

.footer-legal {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.footer-legal span { cursor: not-allowed; }

/* Selection */
::selection {
  background: hsl(144 54% 56% / 0.3);
  color: var(--primary-foreground);
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .container {
    padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
  }

  .section { padding: 3.5rem 0; }
  .section-alt { padding: 3rem 0; }

  .hero {
    padding: 6.5rem 0 3.5rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-logo {
    width: min(100%, 14rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
    flex-wrap: wrap;
  }

  .section-header:not(.text-center) h2 {
    align-items: flex-start;
  }

  .section-header.text-center h2 {
    justify-content: center;
  }

  .section-header .lead {
    font-size: 1rem;
  }

  .btn,
  .btn-sm,
  .btn-lg {
    font-size: 1rem;
    min-height: var(--touch-min);
  }

  .lang-switch {
    min-height: var(--touch-min);
  }

  .lang-option {
    font-size: 0.875rem;
    min-height: var(--touch-min);
    min-width: 2.75rem;
    padding-inline: 0.875rem;
  }

  .btn-telegram-nav {
    width: var(--touch-min);
    min-width: var(--touch-min);
    height: var(--touch-min);
    padding: 0;
    flex-shrink: 0;
  }

  .btn-visit {
    width: auto;
    min-width: auto;
    height: var(--touch-min);
    padding-inline: 0.875rem;
    flex-shrink: 0;
  }

  .btn-visit-text {
    display: none;
  }

  .btn-visit-short {
    display: inline;
  }

  .navbar-buttons {
    gap: 0.5rem;
  }

  .navbar-brand .navbar-title {
    display: none;
  }

  .card-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .commission-value {
    font-size: 1.875rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .support-box .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .score-value {
    font-size: 3.5rem;
  }

  .verdict-content p {
    font-size: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

  .hero-feature {
    text-align: center;
    padding-inline: 0.5rem;
  }

  .faq-item summary {
    font-size: 1rem;
    line-height: 1.5;
  }

  .proscons-grid .card-header h3 {
    font-size: 1.25rem;
    flex-wrap: wrap;
  }
}
