/* ==========================================================================
   TAYA1225 BET OFFICIAL DESIGN SYSTEM
   Aligned with: Philippine Casino Affiliate Guidelines & E-E-A-T Principles
   Theme: Luxury Dark Gold & Neon Emerald | Mobile First (390px - 1440px)
   ========================================================================== */

:root {
  --bg-main: #0a0d14;
  --bg-card: #121824;
  --bg-card-hover: #172030;
  --bg-elevated: #1a2334;
  --gold: #ffb800;
  --gold-glow: rgba(255, 184, 0, 0.35);
  --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ff9e00 100%);
  --emerald: #00f5d4;
  --emerald-dark: #00a896;
  --emerald-glow: rgba(0, 245, 212, 0.25);
  --cyan: #00b4d8;
  --text-main: #f8fafc;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(255, 184, 0, 0.28);
  --border-emerald: rgba(0, 245, 212, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 25px -5px rgba(255, 184, 0, 0.3);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  padding-bottom: 70px; /* space for mobile sticky bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--emerald);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin-top: 6px;
}

h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  color: var(--text-main);
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-dim);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 13, 20, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo img {
  height: 48px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0b0e14;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -5px rgba(255, 184, 0, 0.45);
  color: #0b0e14;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0.5rem;
  cursor: pointer;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #0f141f;
  z-index: 2000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  transition: right 0.3s ease-in-out;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-nav a {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

/* Hero Section */
.hero-section {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
}

.eeat-meta-box {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 245, 212, 0.08);
  border: 1px solid var(--border-emerald);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--emerald);
  margin-bottom: 1.25rem;
}

.eeat-badge {
  background: var(--emerald);
  color: #0b0e14;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.hero-visual img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  width: 100%;
}

.trust-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.trust-item {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 1rem 0 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
}

.breadcrumb-nav li::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb-nav li:last-child::after {
  content: '';
}

.breadcrumb-nav a {
  color: var(--text-dim);
}

/* Expert Insight & TL;DR Box */
.expert-insight-card {
  background: linear-gradient(135deg, rgba(18, 24, 36, 0.95), rgba(26, 35, 52, 0.85));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-card);
}

.tldr-box {
  background: rgba(0, 245, 212, 0.05);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2.5rem;
}

.tldr-box h3 {
  margin-top: 0;
  color: var(--emerald);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Content Layout & Table of Contents */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .content-grid {
    grid-template-columns: 280px 1fr;
  }
}

.toc-sidebar {
  display: none;
}

@media (min-width: 992px) {
  .toc-sidebar {
    display: block;
    position: sticky;
    top: 90px;
    align-self: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
  }
}

.toc-title {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-list a {
  font-size: 0.88rem;
  color: var(--text-dim);
  display: block;
  line-height: 1.4;
}

.toc-list a:hover {
  color: var(--gold);
}

/* Steps and Tables */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #0b0e14;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.step-content p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

th, td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--bg-elevated);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
}

tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}

.card-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 9;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card-title a {
  color: #ffffff;
}

.card-title a:hover {
  color: var(--gold);
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* FAQs */
.faq-section {
  margin: 3rem 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: #07090e;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 14, 20, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.5rem 0.5rem 0.65rem;
  z-index: 999;
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-bar-btn.primary {
  color: var(--gold);
}

.mobile-bar-btn svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   ENHANCED VISUAL COMPONENTS: PROVIDERS BAR, GAME SHOWCASE, IN-CONTENT MEDIA
   ========================================================================== */

/* 1. Gaming Providers Strip */
.providers-bar {
  background: rgba(18, 24, 36, 0.7);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.85rem 0;
  margin: 1.5rem 0 2rem;
  backdrop-filter: blur(8px);
}

.providers-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 992px) {
  .providers-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.providers-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.providers-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.providers-list::-webkit-scrollbar {
  display: none;
}

.provider-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.provider-pill:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.15);
}

.provider-pill img {
  height: 24px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
}

.provider-pill span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.03em;
}

/* 2. Featured Games Showcase Grid */
.featured-games-section {
  background: linear-gradient(180deg, rgba(18, 24, 36, 0.6) 0%, rgba(10, 13, 20, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-card);
}

.section-head-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-head-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-head-wrap h2, .section-head-wrap h3 {
  margin: 0;
}

.section-head-wrap h2::after, .section-head-wrap h3::after {
  display: none;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

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

.game-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
}

.game-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px -5px rgba(255, 184, 0, 0.25);
}

.game-thumb-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000000;
}

.game-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-card-item:hover .game-thumb-box img {
  transform: scale(1.08);
}

.game-badge-rtp {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(4px);
  color: var(--emerald);
  border: 1px solid var(--border-emerald);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.game-badge-studio {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gold-gradient);
  color: #0b0e14;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.game-info-box {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-info-box h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-info-box p {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.game-card-btns {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.game-card-btns .btn {
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  width: 100%;
}

/* 3. In-Content Contextual Media Blocks */
.in-content-media {
  margin: 2rem 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease;
}

.in-content-media:hover {
  border-color: var(--border-gold);
}

.in-content-media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.in-content-media figcaption {
  padding: 0.85rem 1.25rem;
  background: rgba(10, 13, 20, 0.9);
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.in-content-media figcaption strong {
  color: var(--gold);
}

/* 4. Sidebar Trust & Security Seals Box */
.sidebar-trust-box {
  margin-top: 1.5rem;
  background: rgba(18, 24, 36, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.sidebar-trust-box h4 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.trust-seal-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 13, 20, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
}

.trust-seal-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.trust-seal-text h5 {
  margin: 0;
  font-size: 0.82rem;
  color: #ffffff;
}

.trust-seal-text p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* 5. Footer Payment & Trust Strips */
.footer-payment-strip {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-strip-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(18, 24, 36, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
}

.footer-badge-pill img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.footer-badge-pill span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
}

