*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #07091e;
  --bg-secondary: #0c1031;
  --bg-card: #11194b;
  --bg-card-hover: #17266d;

  --nav-bg: #0b1242;

  --accent-primary: #1559ed;
  --accent-primary-dark: #0d36ad;
  --accent-primary-light: #43a4ff;
  --accent-white: #ffffff;
  --accent-gold: #f2db37;
  --accent-action: #3ef126;
  --accent-action-dark: #19b51c;

  --text-primary: #f8f9ff;
  --text-secondary: #c4cdf2;
  --text-muted: #8593c7;

  --border-color: rgba(64, 123, 255, 0.32);

  --badge-new: #e63946;
  --badge-hot: #ff7657;

  --shadow: 0 12px 32px rgba(0, 4, 28, 0.52);
  --radius: 12px;
  --radius-lg: 18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(13, 94, 175, 0.16), transparent 36rem),
    var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── HEADER ── */
header {
  background-color: var(--nav-bg);
  border-bottom: 1px solid rgba(98, 181, 255, 0.22);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 60px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 6px;
}
.hamburger:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-primary-light);
  border-radius: 2px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-wrap img {
  height: 38px;
  width: auto;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-white);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--accent-primary-light); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
nav.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav.main-nav a:hover { color: var(--accent-white); background: rgba(13, 94, 175, 0.28); }
nav.main-nav a:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }

.nav-badge {
  display: inline-block;
  background: var(--badge-new);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.btn-search {
  background: none;
  border: none;
  color: var(--accent-primary-light);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.btn-search:hover { color: var(--accent-white); }
.btn-search:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }
.btn-search svg { width: 18px; height: 18px; }

.btn-signup {
  background: linear-gradient(135deg, #1688e5, #0d5eaf);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 1.1rem;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(13, 94, 175, 0.38);
}
.btn-signup:hover {
  background: linear-gradient(135deg, #3aa0f0, #1688e5);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(13, 94, 175, 0.5);
}
.btn-signup:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }
.btn-signup:active { transform: translateY(0); }

.btn-signin {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  transition: border-color 0.2s, background 0.2s;
}
.btn-signin:hover { border-color: var(--accent-primary-light); background: rgba(13, 94, 175, 0.18); }
.btn-signin:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }

/* ── CATEGORY TABS ── */
.category-tabs {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }

.tabs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 52px;
}

.tab-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.tab-item:hover { color: var(--text-primary); background: rgba(98, 181, 255, 0.14); }
.tab-item.active {
  color: var(--accent-white);
  background: rgba(13, 94, 175, 0.32);
  box-shadow: inset 0 0 0 1px rgba(98, 181, 255, 0.45);
}
.tab-item:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }
.tab-icon { font-size: 1rem; }

/* ── HERO ── */
.hero {
  background:
    radial-gradient(circle at 20% 0%, rgba(98, 181, 255, 0.22), transparent 42%),
    linear-gradient(135deg, #031224 0%, #092a4d 55%, #0d5eaf 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.1), transparent 22%),
    radial-gradient(circle at 78% 78%, rgba(98, 181, 255, 0.16), transparent 28%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent) left 8% top 22% / 38% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(98, 181, 255, 0.28), transparent) right 12% bottom 18% / 32% 1px no-repeat;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(13, 94, 175, 0.22);
  border: 1px solid rgba(98, 181, 255, 0.4);
  color: var(--accent-primary-light);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--accent-white);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bonus {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(13, 94, 175, 0.24));
  border: 1px solid rgba(98, 181, 255, 0.32);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  display: inline-block;
}
.hero-bonus-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.hero-bonus-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1688e5, #0d5eaf);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 6px 22px rgba(13, 94, 175, 0.38);
  border: none;
  cursor: pointer;
}
.btn-cta:hover {
  background: linear-gradient(135deg, #3aa0f0, #1688e5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13, 94, 175, 0.55);
}
.btn-cta:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 3px; }
.btn-cta:active { transform: translateY(0); }
.btn-cta svg { width: 18px; height: 18px; }

/* ── MAIN LAYOUT ── */
.main-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* ── SECTION TITLE ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.see-all-link {
  color: var(--accent-primary-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}
.see-all-link:hover { color: var(--accent-white); }
.see-all-link:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }

/* ── GAMES GRID ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 100%;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  min-width: 0;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(98, 181, 255, 0.55);
  box-shadow: 0 10px 28px rgba(13, 94, 175, 0.32);
}
.game-card:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }

.game-thumb {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0a2949 0%, #0f3a66 50%, #0a2949 100%);
}

.game-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-thumb-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.game-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  background: var(--badge-new);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-badge.hot { background: var(--badge-hot); }

.game-info {
  padding: 0.6rem 0.8rem;
  min-width: 0;
}
.game-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-white);
  margin-bottom: 0.2rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.game-provider {
  font-size: 0.72rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .game-info { padding: 0.45rem 0.55rem; }
}

/* ── CONTENT AREA ── */
.content-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.content-section p:last-child { margin-bottom: 0; }

.content-section a {
  color: var(--accent-primary-light);
  text-decoration: underline;
  text-decoration-color: rgba(98, 181, 255, 0.45);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.content-section a:hover { color: var(--accent-white); text-decoration-color: var(--accent-white); }
.content-section a:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }

/* ── TOC ── */
.toc-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

/* ── TABLE ── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--bg-card);
}

thead { background: var(--bg-primary); }
th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid var(--border-color);
}
td {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--bg-card-hover); }

@media (max-width: 600px) {
  thead { display: none; }
  table { min-width: unset; }
  tr {
    display: block;
    margin-bottom: 1em;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
  }
  td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6em 0.9em;
    border-bottom: 1px solid var(--border-color);
  }
  td:last-child { border-bottom: none; }
  td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    flex-shrink: 0;
    margin-right: 1rem;
  }
}

/* ── FAQ ── */
.faq-section {
  margin-bottom: 2rem;
}

.faq-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

details {
  margin-bottom: 0.75rem;
  padding: 0;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: border-color 0.2s;
}
details:hover { border-color: rgba(98, 181, 255, 0.38); }
details[open] {
  background: rgba(13, 94, 175, 0.18);
  border-color: rgba(98, 181, 255, 0.42);
}

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, background 0.2s;
  user-select: none;
}
summary:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent-primary-light);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s;
}
details[open] summary {
  color: var(--accent-primary-light);
  background: rgba(13, 94, 175, 0.12);
}
details[open] summary::after { content: '−'; }

details p {
  padding: 0 1.25rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

/* ── REVIEWS ── */
.reviews-section {
  margin-bottom: 2rem;
}

.reviews-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comment {
  background: var(--bg-card);
  padding: 1em 1.2em;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  border: 1px solid var(--border-color);
  transition: border-color 0.2s;
}
.comment:hover { border-color: rgba(98, 181, 255, 0.35); }

.comment-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.25rem; flex-wrap: wrap; }

.comment-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-primary-light);
}

.comment-date {
  font-size: 0.85em;
  color: var(--text-secondary);
  opacity: 0.6;
}

.comment-stars { color: var(--accent-gold); font-size: 0.85rem; margin-left: auto; }

.comment-text {
  margin-top: 0.5em;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Review form */
.review-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.review-form-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-form textarea,
.review-form input[type="text"] {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 7px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  outline: none;
}
.review-form textarea { min-height: 110px; }
.review-form textarea:focus,
.review-form input[type="text"]:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(13, 94, 175, 0.35);
}
.review-form textarea::placeholder,
.review-form input[type="text"]::placeholder { color: var(--text-muted); }

.review-form button {
  background: linear-gradient(135deg, #1688e5, #0d5eaf);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 6px 22px rgba(13, 94, 175, 0.38);
}
.review-form button:hover {
  background: linear-gradient(135deg, #3aa0f0, #1688e5);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(13, 94, 175, 0.5);
}
.review-form button:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }
.review-form button:active { transform: translateY(0); }

/* ── AUTHOR ── */
.author-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), #041a30);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(13, 94, 175, 0.35);
}

.author-body { flex: 1; }

.author-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-primary-light);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.author-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(98, 181, 255, 0.4); transform: translateY(-2px); }

.feature-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.feature-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.feature-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ── FOOTER ── */
footer {
  background: #03101f;
  border-top: 1px solid rgba(98, 181, 255, 0.32);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-primary-light); }
.footer-col a:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-payments {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 0.75rem 1rem;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.5rem;
  overflow: hidden;
}

.footer-payments img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 110px;
  max-height: 45px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.footer-certificate {
  margin-top: 1.25rem;
}

.footer-certificate img {
  display: block;
  width: auto;
  height: auto;
  max-width: 135px;
  max-height: 85px;
  object-fit: contain;
  background: transparent;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-payments {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero { padding: 2.5rem 1rem 2rem; }
  .main-wrap { padding: 1.5rem 1rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-payments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.5rem;
  }
  .footer-payments img {
    height: 48px;
    max-width: 140px;
    max-height: 52px;
  }
  .footer-certificate {
    display: flex;
    justify-content: center;
  }
  .author-section { flex-direction: column; align-items: center; text-align: center; }
  .author-avatar { width: 64px; height: 64px; font-size: 1.5rem; }
  .content-section { padding: 1.25rem; }
}

@media (max-width: 420px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border-color);
  margin: 2rem 0;
}

/* ── STAT STRIP ── */
.stat-strip {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}
.stat-item {
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  flex: 1;
  min-width: 130px;
}
.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-primary-light);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

/* ── BONUS BANNER ── */
.bonus-banner {
  background:
    radial-gradient(circle at 12% 0%, rgba(13, 94, 175, 0.38), transparent 52%),
    linear-gradient(135deg, #041a30 0%, #0a2949 55%, #084785 100%);
  border: 1px solid rgba(244, 201, 93, 0.45);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bonus-banner-left { flex: 1; min-width: 200px; }
.bonus-banner-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.bonus-banner-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.2;
}
.bonus-banner-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.btn-cta-compact {
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
}

.link-accent {
  color: var(--accent-primary-light);
}
.link-accent:hover { color: var(--accent-white); }

/* ── PROVIDERS SLIDER ── */
.providers-section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.providers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.providers-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.providers-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.providers-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.providers-btn svg {
  width: 18px;
  height: 18px;
}

.providers-btn:hover:not(:disabled) {
  background: var(--bg-card-hover);
  color: var(--accent-primary-light);
}
.providers-btn:focus-visible { outline: 2px solid var(--accent-primary-light); outline-offset: 2px; }

.providers-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.providers-viewport {
  container-type: inline-size;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x;
}

.providers-viewport::-webkit-scrollbar {
  display: none;
}

.providers-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 16px;
  width: max-content;
}

.providers-card {
  flex: 0 0 140px;
  width: 140px;
  flex-basis: calc((100cqw - 112px) / 8);
  width: calc((100cqw - 112px) / 8);
  height: 64px;
  background: var(--bg-card);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  min-width: 0;
  transition: background 0.2s;
}
.providers-card:hover {
  background: var(--bg-card-hover);
}

.providers-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 40px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1100px) {
  .providers-card {
    flex-basis: calc((100cqw - 80px) / 6);
    width: calc((100cqw - 80px) / 6);
  }
}

@media (max-width: 900px) {
  .providers-card {
    flex-basis: calc((100cqw - 64px) / 5);
    width: calc((100cqw - 64px) / 5);
  }
}

@media (max-width: 640px) {
  .providers-title {
    font-size: 0.95rem;
  }

  .providers-btn {
    width: 44px;
    height: 44px;
  }

  .providers-btn svg {
    width: 20px;
    height: 20px;
  }

  .providers-track {
    gap: 12px;
  }

  .providers-card {
    flex-basis: 140px;
    width: 140px;
    height: 62px;
  }

  .providers-card img {
    max-height: 38px;
  }
}

/* ─────────────────────────────────────────────────────────────
   ELABET-INSPIRED VISUAL LAYER
   Keeps the template structure intact and restyles every surface.
   ───────────────────────────────────────────────────────────── */

body {
  display: flex;
  flex-direction: column;
  padding-top: 68px;
  background:
    radial-gradient(circle at 62% 0%, rgba(35, 77, 230, 0.13), transparent 34rem),
    linear-gradient(180deg, #090b26 0%, #07091e 42%, #060719 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(90, 120, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 120, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, #000, transparent 60%);
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 68px;
  z-index: 200;
  background: linear-gradient(90deg, #10194f 0%, #111d66 52%, #101853 100%);
  border-bottom: 1px solid rgba(68, 117, 255, 0.5);
  box-shadow: 0 5px 22px rgba(0, 3, 25, 0.42);
}

.header-inner {
  max-width: none;
  height: 68px;
  padding: 0 18px;
  gap: 14px;
}

.hamburger {
  width: 38px;
  height: 38px;
  padding: 9px;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(19, 42, 128, 0.78);
  border: 1px solid rgba(75, 129, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.hamburger:hover { background: #19369c; }
.hamburger span { width: 18px; background: #d9e6ff; }

.logo-wrap {
  min-width: 150px;
  min-height: 40px;
  gap: 9px;
  color: #fff;
  font-style: italic;
  font-weight: 900;
  font-size: 1.65rem;
  letter-spacing: -0.8px;
}

.logo-wrap img { height: 40px; max-width: 172px; object-fit: contain; }

.logo-wrap:has(img[style*="display: none"])::before {
  content: 'E3';
  display: grid;
  place-items: center;
  width: 37px;
  height: 32px;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(145deg, #1692ff, #2546e9);
  border-radius: 4px;
  transform: skew(-7deg);
  box-shadow: 0 0 16px rgba(36, 128, 255, 0.45);
}

.logo-wrap:has(img[style*="display: none"])::after { content: 'ELABET'; }

nav.main-nav {
  position: fixed;
  inset: 68px auto 0 0;
  z-index: 150;
  width: 220px;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 9px;
  background:
    radial-gradient(circle at 50% 0%, rgba(35, 74, 210, 0.24), transparent 22rem),
    linear-gradient(180deg, #101746 0%, #0b1035 70%, #090d2b 100%);
  border-right: 1px solid rgba(64, 112, 255, 0.26);
  box-shadow: 8px 0 28px rgba(0, 3, 22, 0.28);
  overflow-y: auto;
}

nav.main-nav::before {
  content: 'ΚΥΡΙΟ ΜΕΝΟΥ';
  padding: 0 12px 7px;
  color: #6f7fb9;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
}

nav.main-nav a {
  position: relative;
  width: 100%;
  min-height: 45px;
  padding: 11px 12px 11px 46px;
  display: flex;
  align-items: center;
  color: #c9d2f4;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 10px;
}

nav.main-nav a::before {
  position: absolute;
  left: 13px;
  width: 23px;
  text-align: center;
  font-size: 1.15rem;
  filter: saturate(0.8);
}

nav.main-nav a:nth-child(2)::before { content: '🎰'; }
nav.main-nav a:nth-child(3)::before { content: '⚽'; }
nav.main-nav a:nth-child(4)::before { content: '🎁'; }
nav.main-nav a:nth-child(5)::before { content: '🎲'; }

nav.main-nav a:first-of-type,
nav.main-nav a:hover {
  color: #fff;
  background: linear-gradient(180deg, #1e55dd, #173cad);
  border-color: rgba(90, 143, 255, 0.6);
  box-shadow: 0 7px 18px rgba(13, 55, 183, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.nav-badge {
  margin-left: auto;
  padding: 2px 6px;
  color: #07102a;
  background: #55dbff;
}

.header-actions {
  gap: 10px;
  margin-left: auto;
}

.btn-search {
  width: min(290px, 25vw);
  height: 40px;
  padding: 0 16px;
  justify-content: flex-start;
  gap: 9px;
  color: #8191c8;
  background: rgba(8, 13, 47, 0.72);
  border: 1px solid rgba(53, 88, 189, 0.48);
  border-radius: 22px;
}

.btn-search::after {
  content: 'Παιχνίδια, Κατηγορίες, Πάροχοι';
  overflow: hidden;
  color: #8794be;
  font-size: 0.8rem;
  white-space: nowrap;
}

.btn-search:hover { color: #a7ccff; background: #0c164d; }

.btn-signup,
.btn-signin {
  min-width: 112px;
  padding: 0.6rem 1.35rem;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(87, 156, 255, 0.78);
  border-radius: 22px;
  background: linear-gradient(180deg, #3197ff 0%, #1760eb 100%);
  box-shadow: 0 6px 15px rgba(10, 75, 224, 0.36), inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn-signin { order: 1; }
.btn-signup { order: 2; }
.btn-signup:hover,
.btn-signin:hover {
  color: #fff;
  border-color: #70bdff;
  background: linear-gradient(180deg, #52adff 0%, #2572f6 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 88, 244, 0.47);
}

.hero {
  order: 1;
  min-height: 342px;
  margin-left: 220px;
  padding: 52px clamp(28px, 5vw, 82px) 45px;
  text-align: left;
  background:
    radial-gradient(circle at 84% 45%, rgba(79, 151, 255, 0.42) 0 7%, transparent 33%),
    radial-gradient(circle at 69% 5%, rgba(135, 70, 255, 0.22), transparent 26%),
    linear-gradient(105deg, #0b123e 0%, #111b58 46%, #1a3387 100%);
  border-bottom: 1px solid rgba(63, 114, 255, 0.38);
  isolation: isolate;
}

.hero::before {
  z-index: -1;
  background:
    linear-gradient(118deg, transparent 0 65%, rgba(57, 145, 255, 0.17) 65% 67%, transparent 67%),
    repeating-radial-gradient(circle at 88% 48%, rgba(144, 199, 255, 0.13) 0 2px, transparent 3px 20px);
  opacity: 0.9;
}

.hero::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(6, 9, 34, 0.25), transparent 60%, rgba(7, 11, 43, 0.14));
}

.hero-inner { max-width: 690px; margin: 0; }

.hero-eyebrow {
  margin-bottom: 12px;
  padding: 5px 12px;
  color: #63d6ff;
  background: rgba(3, 20, 62, 0.64);
  border-color: rgba(60, 166, 255, 0.45);
  box-shadow: 0 0 18px rgba(30, 112, 255, 0.12);
}

.hero-title {
  max-width: 680px;
  margin-bottom: 10px;
  font-size: clamp(2.15rem, 4.2vw, 3.55rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.7px;
  text-shadow: 0 4px 18px rgba(0, 0, 24, 0.48);
}

.hero-subtitle {
  max-width: 600px;
  margin: 0 0 18px;
  color: #d2daf8;
  font-size: 1rem;
}

.hero-bonus {
  margin: 0 0 17px;
  padding: 9px 15px;
  border-radius: 10px;
  background: rgba(7, 17, 61, 0.72);
  border-color: rgba(76, 131, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-bonus-label { color: #8ec7ff; }
.hero-bonus-value { color: #fff; font-size: 1.38rem; }

.btn-cta,
.review-form button {
  color: #082007;
  border: 1px solid #75ff58;
  border-radius: 23px;
  background: linear-gradient(180deg, #63ff34 0%, #28d51e 100%);
  box-shadow: 0 0 0 3px rgba(49, 234, 34, 0.12), 0 0 24px rgba(50, 238, 39, 0.44), inset 0 1px 0 rgba(255,255,255,0.44);
}

.btn-cta:hover,
.review-form button:hover {
  color: #041704;
  background: linear-gradient(180deg, #7cff52 0%, #3aeb2a 100%);
  box-shadow: 0 0 0 3px rgba(70, 255, 47, 0.17), 0 0 31px rgba(53, 241, 39, 0.58);
}

.category-tabs {
  order: 2;
  position: sticky;
  top: 68px;
  z-index: 90;
  margin-left: 220px;
  background: rgba(8, 11, 36, 0.96);
  border-bottom-color: rgba(64, 112, 255, 0.35);
  box-shadow: 0 8px 20px rgba(0, 3, 24, 0.26);
  backdrop-filter: blur(12px);
}

.tabs-inner {
  max-width: none;
  height: 64px;
  padding: 0 18px;
  gap: 8px;
}

.tab-item {
  min-height: 39px;
  padding: 7px 14px;
  color: #cbd3f4;
  text-transform: none;
  letter-spacing: 0;
  border: 1px solid rgba(47, 84, 191, 0.4);
  border-radius: 10px;
  background: linear-gradient(180deg, #161f5b 0%, #101744 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.tab-item:hover,
.tab-item.active {
  color: #fff;
  background: linear-gradient(180deg, #214bd1 0%, #193598 100%);
  border-color: rgba(75, 139, 255, 0.8);
  box-shadow: 0 6px 16px rgba(14, 55, 178, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.tab-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  font-size: 1.05rem;
  filter: drop-shadow(0 0 5px rgba(112, 192, 255, 0.38));
}

.main-wrap {
  order: 3;
  width: calc(100% - 220px);
  max-width: none;
  margin: 0 0 0 220px;
  padding: 26px clamp(18px, 2.6vw, 42px) 42px;
}

.stat-strip {
  gap: 10px;
  padding: 0;
  margin-bottom: 22px;
}

.stat-item {
  min-width: 140px;
  padding: 13px 14px;
  background: linear-gradient(180deg, rgba(20, 30, 87, 0.95), rgba(13, 18, 57, 0.95));
  border-color: rgba(54, 98, 217, 0.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 8px 20px rgba(0,0,18,0.16);
}

.stat-value { color: #61aaff; font-size: 1.22rem; }
.stat-label { color: #8e9aca; }

.bonus-banner {
  padding: 19px 24px;
  background:
    radial-gradient(circle at 80% 15%, rgba(80, 130, 255, 0.25), transparent 25%),
    linear-gradient(105deg, #10194f 0%, #182d80 58%, #152364 100%);
  border-color: rgba(71, 130, 255, 0.58);
  border-radius: 16px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
}

.bonus-banner-eyebrow { color: #62d2ff; }
.bonus-banner-value { color: #fff; }

.section-header,
.providers-header { margin-bottom: 14px; }

.section-title,
.providers-title,
.faq-title,
.reviews-title {
  color: #f4f7ff;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
}

.games-grid { gap: 11px; margin-bottom: 31px; }

.game-card {
  border-color: rgba(43, 85, 211, 0.72);
  border-radius: 10px;
  background: #101746;
  box-shadow: 0 8px 18px rgba(0, 3, 22, 0.24);
}

.game-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: #3f8cff;
  box-shadow: 0 13px 27px rgba(9, 50, 171, 0.38), 0 0 0 2px rgba(47, 112, 255, 0.14);
}

.game-thumb { background: linear-gradient(145deg, #182765, #0a0f35); }
.game-info { background: linear-gradient(180deg, #141e58, #0e143d); }
.game-provider { color: #8490be; }

.game-badge {
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.28);
}

.providers-card {
  border: 1px solid rgba(48, 85, 185, 0.42);
  background: linear-gradient(180deg, #141d54, #0e143b);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.providers-card:hover {
  background: #19266b;
  border-color: rgba(71, 137, 255, 0.72);
}

.content-section,
.review-form-wrap,
.author-section {
  background: linear-gradient(180deg, rgba(14, 20, 60, 0.98), rgba(10, 14, 43, 0.98));
  border-color: rgba(49, 85, 184, 0.42);
  box-shadow: 0 16px 38px rgba(0, 2, 21, 0.25), inset 0 1px 0 rgba(255,255,255,0.025);
}

.content-section { padding: clamp(20px, 3vw, 38px); }

.content-section h1,
.content-section h2,
.content-section h3,
.content-section h4 {
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.35px;
}

.content-section h1 { margin: 0 0 1rem; font-size: clamp(1.8rem, 3vw, 2.45rem); }
.content-section h2 { margin: 2rem 0 0.8rem; font-size: clamp(1.35rem, 2.3vw, 1.8rem); }
.content-section h3 { margin: 1.55rem 0 0.65rem; font-size: 1.2rem; }
.content-section h4 { margin: 1.25rem 0 0.5rem; font-size: 1.02rem; }

.content-section ul,
.content-section ol { margin: 0 0 1.15rem 1.35rem; color: var(--text-secondary); }
.content-section li { margin: 0.35rem 0; padding-left: 0.25rem; }
.content-section li::marker { color: #439bff; }

.toc-wrap,
details,
.comment,
.feature-card,
.stat-item {
  border-color: rgba(49, 87, 196, 0.44);
}

.toc-wrap {
  background: linear-gradient(180deg, #131d55, #0e153f);
  box-shadow: inset 3px 0 0 #2b72f3;
}

table { background: #11194a; }
thead { background: #182565; }
tbody tr:hover { background: #17235e; }

details,
.comment,
.feature-card,
.review-form-wrap { background: linear-gradient(180deg, #121a4d, #0d133a); }

details:hover,
.comment:hover,
.feature-card:hover { border-color: rgba(70, 137, 255, 0.72); }

details[open] {
  background: linear-gradient(180deg, #172665, #101847);
  border-color: #315fd5;
}

details[open] summary { color: #7cc2ff; background: rgba(33, 73, 185, 0.18); }

.review-form textarea,
.review-form input[type="text"] {
  background: #090e2c;
  border-color: rgba(57, 98, 207, 0.55);
  border-radius: 10px;
}

.review-form textarea:focus,
.review-form input[type="text"]:focus {
  border-color: #3d89ff;
  box-shadow: 0 0 0 3px rgba(52, 126, 255, 0.2);
}

.author-avatar {
  background: linear-gradient(145deg, #35a0ff, #2446df);
  box-shadow: 0 0 24px rgba(38, 116, 255, 0.38);
}

footer {
  order: 4;
  margin-left: 220px;
  background: linear-gradient(180deg, #090d2c, #060819);
  border-top-color: rgba(57, 101, 219, 0.45);
}

.footer-badge {
  color: #aebbe8;
  background: #101746;
  border-color: rgba(54, 96, 204, 0.5);
}

.footer-payments {
  padding: 14px;
  border: 1px solid rgba(45, 76, 164, 0.34);
  border-radius: 13px;
  background: rgba(13, 18, 55, 0.64);
}

.footer-payments img { filter: brightness(1.08) saturate(0.88); }

.footer-certificate {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 7px 12px;
  color: #8fa0d6;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: 1px solid rgba(58, 97, 204, 0.42);
  border-radius: 8px;
  background: #0e143c;
}

@media (max-width: 1100px) and (min-width: 901px) {
  nav.main-nav { width: 196px; }
  .hero,
  .category-tabs,
  footer { margin-left: 196px; }
  .main-wrap { width: calc(100% - 196px); margin-left: 196px; }
  .logo-wrap { min-width: 132px; }
  .btn-search { width: 210px; }
}

@media (max-width: 900px) {
  body { padding-top: 64px; }

  header,
  .header-inner { height: 64px; }

  nav.main-nav { display: none; }

  .hero,
  .category-tabs,
  footer { margin-left: 0; }

  .main-wrap {
    width: 100%;
    margin-left: 0;
  }

  .category-tabs { top: 64px; }
  .logo-wrap { min-width: 126px; }
  .btn-search { width: 210px; }
}

@media (max-width: 700px) {
  .header-inner { padding: 0 10px; gap: 8px; }
  .hamburger { width: 36px; height: 36px; }
  .logo-wrap { min-width: 112px; font-size: 1.25rem; }
  .logo-wrap img { height: 33px; max-width: 126px; }
  .logo-wrap:has(img[style*="display: none"])::before { width: 31px; height: 28px; font-size: 0.8rem; }
  .btn-search { width: 42px; height: 40px; padding: 0; justify-content: center; }
  .btn-search::after { display: none; }
  .btn-signup { display: none; }
  .btn-signin { min-width: auto; padding: 0.55rem 0.95rem; }

  .hero {
    min-height: auto;
    padding: 38px 18px 34px;
    text-align: center;
  }

  .hero-inner { margin: 0 auto; }
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero::before { opacity: 0.42; }

  .tabs-inner { height: 58px; padding: 0 10px; }
  .tab-item { min-height: 38px; padding: 6px 11px; }

  .main-wrap { padding: 18px 12px 32px; }
  .stat-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-item { min-width: 0; }

  .bonus-banner { padding: 18px; text-align: center; justify-content: center; }
  .bonus-banner-left { min-width: 100%; }
  .btn-cta-compact { width: 100%; justify-content: center; }
  .content-section { border-radius: 14px; }
}

@media (max-width: 430px) {
  .logo-wrap { min-width: 102px; }
  .header-actions { gap: 6px; }
  .btn-signin { padding: 0.5rem 0.72rem; font-size: 0.82rem; }
  .hero-bonus { display: block; }
  .btn-cta { width: 100%; justify-content: center; }
  .stat-strip { gap: 8px; }
  .stat-value { font-size: 1.05rem; }
  .footer-payments { padding: 10px; }
}
