/* ===========================
   CSS Variables & Base
   =========================== */
:root {
  --color-primary: #1a1a2e;
  --color-secondary: #16213e;
  --color-accent: #f5a623;
  --color-accent-hover: #e6951a;
  --color-accent-light: rgba(245, 166, 35, 0.15);
  --color-text: #e0e0e0;
  --color-text-muted: #999;
  --color-text-dark: #333;
  --color-white: #ffffff;
  --color-bg-light: #f8f6f1;
  --color-bg-card: #ffffff;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: #e5e0d5;
  --color-star: #f5a623;
  --color-star-empty: #ddd;
  --color-footer-bg: #0d0d1a;
  --color-success: #2ecc71;
  --color-danger: #e74c3c;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.14);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   Header
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 26, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: background var(--transition);
}

.header.scrolled {
  background: rgba(13, 13, 26, 0.97);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 1100;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===========================
   Desktop Navigation
   =========================== */
.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-accent);
  background: rgba(245, 166, 35, 0.08);
}

.nav__link--active {
  color: var(--color-accent);
}

.nav__arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
  display: inline-block;
}

.nav__item:hover .nav__arrow {
  transform: rotate(180deg);
}

/* Desktop Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  list-style: none;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-secondary);
}

.nav__item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown__item {
  list-style: none;
}

.dropdown__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition);
}

.dropdown__link:hover {
  background: rgba(245, 166, 35, 0.1);
  color: var(--color-accent);
}

.dropdown__link img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

/* ===========================
   Burger Button
   =========================== */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1100;
  -webkit-tap-highlight-color: transparent;
}

.burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger__line:nth-child(1) {
  top: 14px;
}

.burger__line:nth-child(2) {
  top: 21px;
}

.burger__line:nth-child(3) {
  top: 28px;
}

/* X animation */
.burger.active .burger__line:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.burger.active .burger__line:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Hide mobile-only elements on desktop */
.nav__footer {
  display: none;
}

/* ===========================
   Dark Overlay behind mobile nav
   =========================== */
.nav-overlay {
  display: none;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 60px) 20px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/back.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 26, 0.85) 0%,
    rgba(26, 26, 46, 0.75) 50%,
    rgba(13, 13, 26, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero__title span {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   Brands / Casino Cards
   =========================== */
.brands {
  padding: 70px 0 50px;
  position: relative;
}

.brands__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0 0 12px;
}

.brands__subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  margin: 0 0 48px;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* Card Style */
.brand-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transition: transform var(--transition);
}

.brand-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.3);
}

.brand-card:hover::before {
  transform: scaleY(1);
}

.brand-card__rank {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 3px 10px;
  border-radius: 20px;
}

.brand-card__logo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card__info {
  flex: 1;
  min-width: 0;
}

.brand-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin: 0 0 6px;
}

.brand-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.brand-card__star {
  color: var(--color-star);
  font-size: 0.95rem;
}

.brand-card__star--empty {
  color: var(--color-star-empty);
}

.brand-card__reviews {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.brand-card__actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-dark);
  border: 2px solid var(--color-border-light);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ===========================
   Content Section (Article)
   =========================== */
.content-section {
  padding: 50px 0 70px;
}

.content-area {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 48px 56px;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
}

/* Typography */
.content-area h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0 0 24px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 18px;
}

.content-area h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

.content-area h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 40px 0 16px;
  line-height: 1.3;
  padding-left: 16px;
  border-left: 4px solid var(--color-accent);
}

.content-area h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 32px 0 12px;
  line-height: 1.4;
}

.content-area p {
  font-size: 1rem;
  color: #555;
  margin: 0 0 18px;
  line-height: 1.8;
}

/* Lists */
.content-area ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.content-area ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.content-area ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
}

.content-area ol {
  padding-left: 24px;
  margin: 0 0 24px;
}

.content-area ol li {
  padding: 6px 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Tables */
.content-area .table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-light);
}



.content-area thead {
  background: var(--color-primary);
}



.content-area tbody tr {
  transition: background var(--transition);
}

.content-area tbody tr:nth-child(even) {
  background: rgba(245, 166, 35, 0.04);
}

.content-area tbody tr:hover {
  background: rgba(245, 166, 35, 0.08);
}

.content-area tbody td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-border-light);
  color: #555;
}

/* Blockquote / Disclaimer */
.content-area blockquote {
  position: relative;
  margin: 30px 0;
  padding: 24px 28px 24px 28px;
  background: linear-gradient(135deg, #fff8eb 0%, #fff4e0 100%);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: #666;
  line-height: 1.7;
}

.content-area blockquote::before {
  content: '⚠️';
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--color-bg-light);
  padding: 0 8px;
  font-size: 1.2rem;
  font-style: normal;
}

.content-area blockquote p {
  margin: 0;
  color: #666;
}

/* Images in content */
.content-area img {
  border-radius: var(--radius-sm);
  margin: 24px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-area figure {
  margin: 30px 0;
}

.content-area figure img {
  width: 100%;
}

.content-area figure figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 10px;
  font-style: italic;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(245, 166, 35, 0.03) 30px,
      rgba(245, 166, 35, 0.03) 60px
    );
  pointer-events: none;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0 0 24px;
  position: relative;
}

.cta-section .btn {
  padding: 14px 40px;
  font-size: 0.95rem;
  position: relative;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-text);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.footer__about {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo img {
  height: 40px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__about-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__disclaimer {
  max-width: 600px;
  line-height: 1.6;
}

.footer__age {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-danger);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-danger);
}

/* ===========================
   Scroll-to-top Button
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(245, 166, 35, 0.5);
}

/* ===========================
   Responsive — Tablet
   =========================== */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .content-area {
    padding: 36px 32px;
  }
}

/* ===========================
   Responsive — Mobile (≤768px)
   =========================== */
@media (max-width: 768px) {

  /* Show burger */
  .burger {
    display: flex;
  }

  /* ---- Dark overlay ---- */
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

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

  /* ---- Mobile Nav Panel (slide from right) ---- */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--color-primary);
    z-index: 1050;
    padding: 0;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
  }

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

  /* ---- Nav header area (logo + close X handled by the fixed header behind) ---- */
  .nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: calc(var(--header-height) + 12px) 0 0 0;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    flex: 1;
  }

  .nav__item {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__item:last-child {
    border-bottom: none;
  }

  .nav__link {
    padding: 16px 24px;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    border-radius: 0;
    justify-content: flex-start;
    gap: 8px;
    white-space: normal;
  }

  .nav__link:hover,
  .nav__link:active {
    background: rgba(245, 166, 35, 0.08);
    color: var(--color-accent);
  }

  .nav__link--active {
    color: var(--color-accent);
    background: rgba(245, 166, 35, 0.06);
    border-right: 3px solid var(--color-accent);
  }

  .nav__arrow {
    font-size: 0.55rem;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  /* ---- Mobile Dropdown (animated height) ---- */
  .dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100%;
    min-width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .dropdown::before {
    display: none;
  }

  /* Override desktop hover completely */
  .nav__item:hover .dropdown {
    max-height: 0;
  }

  .nav__item.dropdown-open .dropdown {
    max-height: 600px;
  }

  .nav__item.dropdown-open .nav__arrow {
    transform: rotate(180deg);
  }

  .nav__item.dropdown-open > .nav__link {
    color: var(--color-accent);
    background: rgba(245, 166, 35, 0.06);
  }

  .dropdown__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .dropdown__item:last-child {
    border-bottom: none;
  }

  .dropdown__link {
    padding: 14px 24px 14px 48px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 0;
    position: relative;
    gap: 10px;
  }

  .dropdown__link::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.35);
    transition: all var(--transition);
  }

  .dropdown__link:hover,
  .dropdown__link:active {
    background: rgba(245, 166, 35, 0.1);
    color: var(--color-accent);
  }

  .dropdown__link:hover::before {
    background: var(--color-accent);
    box-shadow: 0 0 8px rgba(245, 166, 35, 0.4);
  }

  .dropdown__link img {
    width: 24px;
    height: 24px;
  }

  /* ---- Mobile nav footer ---- */
  .nav__footer {
    display: block;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
  }

  .nav__footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
  }

  .nav__footer-links li {
    margin-bottom: 8px;
  }

  .nav__footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
  }

  .nav__footer-links a:hover {
    color: var(--color-accent);
  }

  .nav__social {
    display: flex;
    gap: 10px;
  }

  .nav__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    transition: all var(--transition);
  }

  .nav__social-link:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
  }

  /* ---- Hero mobile ---- */
  .hero {
    min-height: 380px;
    padding: calc(var(--header-height) + 40px) 16px 60px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  /* ---- Content mobile ---- */
  .content-area {
    padding: 28px 20px;
  }

  .content-area h1 {
    font-size: 1.6rem;
  }

  .content-area h2 {
    font-size: 1.3rem;
  }

  /* ---- Footer mobile ---- */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* ---- Brand cards mobile ---- */
  .brand-card {
    flex-direction: column;
    text-align: center;
  }

  .brand-card__rank {
    position: static;
    align-self: flex-start;
    margin-bottom: 8px;
  }

  .brand-card__stars {
    justify-content: center;
  }

  .brand-card__actions {
    justify-content: center;
  }
}

/* ===========================
   Responsive — Small Mobile
   =========================== */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .brands__title {
    font-size: 1.5rem;
  }

  .cta-section__title {
    font-size: 1.6rem;
  }

  .nav {
    width: 100%;
    max-width: 100vw;
  }
}

.content-area table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content-area thead,
.content-area tbody,
.content-area tr {
  width: 100%;
  display: table;
  table-layout: fixed;
}

.content-area thead {
  background: var(--color-primary);
}

.content-area thead th {
  width: 1%;
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-area tbody tr {
  transition: background var(--transition);
}

.content-area tbody tr:nth-child(even) {
  background: rgba(245, 166, 35, 0.04);
}

.content-area tbody tr:hover {
  background: rgba(245, 166, 35, 0.08);
}

.content-area tbody td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-border-light);
  color: #555;
}