/* Google Font loaded via <link> in HTML <head> */

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

body {
  background: #f4f6fb;
  color: #2d3f55;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

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

header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

nav a {
  color: #2d3f55;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #b07b00;
}

nav a[aria-current="page"] {
  color: #b07b00;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 2px;
}

.nav-toggle,
#navToggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  background: none;
  border: none;
  color: #2d3f55;
  font-size: 1.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem 2rem;
  border-top: 2px solid rgba(0, 0, 0, 0.06);
}

h1 {
  color: #1a2744;
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  color: #1a2744;
  font-size: 1.5rem;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 0.5rem;
  margin-top: 0;
}

h3 {
  color: #1a2744;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

section {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

section h2 {
  margin-top: 0;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

th {
  background: #1a2744;
  color: #ffd700;
  padding: 0.75rem;
  text-align: left;
  border-bottom: 2px solid rgba(255, 215, 0, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

th:last-child {
  border-right: none;
}

td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

td:last-child {
  border-right: none;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) {
  background: #f8fafc;
}

a {
  color: #b07b00;
  transition: color 0.3s ease;
}

a:hover {
  color: #7d5600;
}

strong {
  color: #1a2744;
}

ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

ol li {
  margin-bottom: 0.4rem;
  padding-left: 0.5rem;
}

ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

ul li {
  margin-bottom: 0.4rem;
}

footer {
  background: #1a2744;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #c2d2e0;
}

footer a {
  color: #ffd700;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}

.btn-play {
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  white-space: normal;
  display: inline-block;
  background: #ffd700;
  color: #1a2744;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s ease;
  line-height: 1.4;
}

.btn-play:hover {
  background: #e6c200;
  color: #1a2744;
}

.btn-header {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: unset;
}

.btn-signin {
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  background: transparent;
  color: #b07b00;
  border: 2px solid #b07b00;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-signin:hover {
  background: rgba(176, 123, 0, 0.1);
  color: #b07b00;
}

.btn-signin.btn-header {
  padding: 0.5rem 1.25rem;
  min-height: unset;
}

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

.nav-play-mobile {
  display: none;
}

.review-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.review-card__header h3 {
  margin: 0;
  color: #1a2744;
}

.review-card__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.review-card__pros h4 {
  color: #16a34a;
  margin-bottom: 0.5rem;
}

.review-card__cons h4 {
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.review-card__pros ul {
  list-style: none;
  padding-left: 0;
}

.review-card__cons ul {
  list-style: none;
  padding-left: 0;
}

.review-card__pros ul li::before {
  content: "✓ ";
  color: #16a34a;
}

.review-card__cons ul li::before {
  content: "✗ ";
  color: #dc2626;
}

.review-card__footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: right;
}

.faq {
  margin: 2rem 0;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.faq__item h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  font-size: inherit;
  color: inherit;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: #2d3f55;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq__question::after {
  content: "+";
  color: #b07b00;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__question[aria-expanded="true"] {
  color: #b07b00;
}

.faq__question[aria-expanded="true"]::after {
  content: "−";
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding-bottom: 1rem;
  color: #2d3f55;
  opacity: 0.85;
}

.casino-logo {
  width: 120px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #1a2744;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.site-logo a:hover {
  color: #b07b00;
}

.site-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .btn-header {
    display: none;
  }

  a.btn-signin.btn-header {
    display: none;
  }

  .nav-play-mobile {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }

  .nav-toggle,
  #navToggle {
    display: flex;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 2rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  nav ul li {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    width: 100%;
  }

  nav ul.nav-open {
    display: flex;
  }

  main {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

  li {
    font-size: 0.95rem;
  }

  .review-card__pros-cons {
    grid-template-columns: 1fr;
  }

  table {
    display: block;
    overflow-x: auto;
  }

  thead {
    display: none;
  }

  tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
  }

  td {
    display: block;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-right: none;
    text-align: left;
    word-break: break-word;
  }

  th {
    word-break: break-word;
  }

  td::before {
    content: attr(data-label);
    display: block;
    color: #b07b00;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: #edf1f7;
}

.stats-bar__item {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.stats-bar__icon {
  width: 28px;
  height: 28px;
  color: #b07b00;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.stats-bar__item strong {
  color: #1a2744;
  font-size: 1.2rem;
  font-weight: 700;
}

.stats-bar__item span {
  color: #6b7c93;
  font-size: 0.8rem;
}

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

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

/* Top Slots */
.top-slots {
  background: #edf1f7;
  padding: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.top-slots__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.top-slots__title {
  color: #1a2744;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  border: none;
  padding: 0;
}

.top-slots__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-slots__viewport {
  overflow: hidden;
  flex: 1;
}

.top-slots__track {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.35s ease;
}

.slot-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 4 * 0.75rem) / 5);
  min-width: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.slot-card__cover {
  display: block;
  position: relative;
  line-height: 0;
  overflow: hidden;
}

.slot-card__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slot-card__cover:hover::after {
  opacity: 1;
}

.slot-card__demo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 1;
  background: #ffd700;
  color: #1a2744;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.slot-card__cover:hover .slot-card__demo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.slot-card__info {
  padding: 0.6rem 0.75rem 0.75rem;
  flex: 1;
}

.slot-card__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a2744;
  margin: 0 0 0.15rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slot-card__provider {
  font-size: 0.7rem;
  color: #6b7c93;
  margin: 0;
}

.top-slots__arrow {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #b07b00;
  font-size: 1.8rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
  line-height: 1;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.top-slots__arrow:hover {
  background: #fef9e7;
}

.top-slots__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 768px) {
  .slot-card {
    flex: 0 0 calc((100% - 2 * 0.75rem) / 3);
  }
}

@media (max-width: 480px) {
  .top-slots {
    padding: 1rem;
  }

  .top-slots__arrow {
    display: none;
  }

  .top-slots__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .top-slots__viewport::-webkit-scrollbar {
    display: none;
  }

  .top-slots__track {
    transform: none !important;
  }

  .slot-card {
    flex: 0 0 calc((100% - 0.75rem) / 2);
    scroll-snap-align: start;
  }
}

/* Try Demo — always visible on touch devices */
@media (hover: none) {
  .slot-card__cover::after {
    opacity: 1;
  }

  .slot-card__demo {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Providers */
.providers {
  background: #edf1f7;
  padding: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.providers__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.providers__title {
  color: #1a2744;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  border: none;
  padding: 0;
}

.provider-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc((100% - 6 * 0.75rem) / 7);
  min-width: 0;
  aspect-ratio: 3 / 2;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.provider-card:hover {
  background: #fef9e7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.provider-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(0);
  opacity: 0.6;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.provider-card:hover img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(45%) sepia(80%) saturate(600%) hue-rotate(20deg);
}

@media (max-width: 768px) {
  .provider-card {
    flex: 0 0 calc((100% - 3 * 0.75rem) / 4);
  }
}

@media (max-width: 480px) {
  .providers {
    padding: 1rem;
  }

  .provider-card {
    flex: 0 0 calc((100% - 2 * 0.75rem) / 3);
    scroll-snap-align: start;
  }
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #e8eef8 0%, #f4f6fb 60%, #eaf0f9 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 3rem 1rem;
}

.hero-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-banner__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b07b00;
  margin: 0;
}

.hero-banner__offer {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.25;
  margin: 0;
  border: none;
  padding: 0;
}

.hero-banner__stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-banner__stats span {
  background: rgba(176, 123, 0, 0.08);
  border: 1px solid rgba(176, 123, 0, 0.3);
  color: #2d3f55;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
}

.hero-banner__cta {
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
  border-radius: 12px;
}

@media (max-width: 480px) {
  .hero-banner__offer {
    font-size: 1.5rem;
  }
}

/* ========== Floating Bonus Button ========== */
.floating-bonus {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.floating-bonus__ring {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-bonus__ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: bonus-spin 6s linear infinite;
}

@keyframes bonus-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.floating-bonus__inner {
  width: 52px;
  height: 52px;
  background: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2744;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(176, 123, 0, 0.4);
  padding: 0.25rem;
}

.floating-bonus:hover .floating-bonus__inner {
  background: #ffe84d;
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .floating-bonus { bottom: 1rem; right: 1rem; }
  .floating-bonus__ring { width: 60px; height: 60px; }
  .floating-bonus__inner { width: 44px; height: 44px; font-size: 0.55rem; }
}

/* Mobile sticky auth bar */
.mobile-auth-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-auth-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1a2744;
    padding: 0.625rem 1rem calc(0.625rem + env(safe-area-inset-bottom));
    gap: 0.625rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
  }

  .mobile-auth-bar__btn {
    flex: 1;
    text-align: center;
    padding: 0.625rem 0.5rem;
    font-size: 0.9rem;
    min-height: 44px;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .floating-bonus {
    bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
}

/* Bonus dropdown navigation */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-dropdown > a::after {
  content: " ▾";
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
  color: #b07b00;
}

.nav-dropdown__toggle {
  background: none;
  border: none;
  color: #2d3f55;
  font-size: 0.7rem;
  cursor: pointer;
  padding: 0 0.15rem;
  line-height: 1;
  transition: color 0.3s ease, transform 0.2s ease;
  display: none;
}

.nav-dropdown:hover > .nav-dropdown__toggle,
.nav-dropdown__toggle:hover {
  color: #b07b00;
}

.nav-dropdown__menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  border-top: 3px solid #ffd700;
  min-width: 210px;
  padding: 0.75rem 0 0.4rem;
  list-style: none;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  transition-delay: 0.2s;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown--open .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-dropdown__menu li {
  width: 100%;
  min-height: unset;
  padding: 0;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.55rem 1.2rem;
  white-space: nowrap;
  color: #2d3f55;
  font-size: 0.9rem;
}

.nav-dropdown__menu a:hover {
  background: #fffbea;
  color: #b07b00;
}

@media (max-width: 768px) {
  .nav-dropdown {
    flex-wrap: wrap;
    width: 100%;
  }

  .nav-dropdown > a {
    flex: 1;
  }

  /* Hide ::after chevron — the toggle button handles it on mobile */
  .nav-dropdown > a::after {
    display: none;
  }

  .nav-dropdown__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    font-size: 1rem;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .nav-dropdown--open > .nav-dropdown__toggle {
    transform: rotate(180deg);
    color: #b07b00;
  }

  .nav-dropdown__menu {
    position: static;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    border-left: 3px solid #ffd700;
    padding: 0.25rem 0 0.25rem 1rem;
    min-width: auto;
    width: 100%;
    flex-basis: 100%;
    /* Hidden by default on mobile — shown only when --open */
    display: none;
  }

  .nav-dropdown--open .nav-dropdown__menu {
    display: flex;
  }

  .nav-dropdown__menu li {
    min-height: 40px;
    padding: 0;
  }

  .nav-dropdown__menu a {
    padding: 0.5rem 0.5rem;
  }
}
