/* ==========================================================================
   PHMACAO CASINO COMPONENT LIBRARY (components.css)
   Includes: Header, Mobile Drawer, 21+ Age Gate, Mobile Bottom Nav,
             3x2 Interactive Grids, Placecards, Image Media,
             Filter Tabs, FAQ Accordions, E-E-A-T Badges & Compliance Footer
   ========================================================================== */

/* 1. GLOBAL STICKY HEADER */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(6, 9, 19, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(6, 9, 19, 0.95);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

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

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.brand-title {
  display: none; /* Logo image contains the complete official brand typography */
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 6px;
}

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

/* Mega-Menu Navigation Dropdowns (Top Navigation Guides) */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link {
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-link .dropdown-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: rgba(8, 12, 24, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-elevated), var(--shadow-gold-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  color: #FFFFFF;
  background: rgba(255, 184, 0, 0.14);
  transform: translateX(3px);
}

.dropdown-item.featured-item {
  color: var(--color-gold);
  font-weight: 700;
  border-top: 1px solid var(--border-subtle);
  margin-top: 3px;
  padding-top: 7px;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.highlight {
  color: var(--color-gold);
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: #060913;
  background: var(--color-gold-gradient);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-neon-button);
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6);
  filter: brightness(1.08);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}

/* 2. MOBILE DRAWER NAVIGATION */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #0B101F;
  border-left: 1px solid var(--border-medium);
  z-index: 210;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

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

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

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-secondary);
  cursor: pointer;
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}

.drawer-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-gold);
}

/* 3. 21+ MANDATORY AGE-GATE MODAL */
.age-gate-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 11, 0.85);
  backdrop-filter: blur(10px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-modal-backdrop.active {
  display: flex;
}

.age-gate-dialog {
  background: #0E1626;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-elevated), var(--shadow-gold-glow);
  animation: floatGentle 4s ease-in-out infinite;
}

.age-gate-icon {
  font-size: 52px;
  margin-bottom: 14px;
  display: block;
}

.age-gate-title {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.age-gate-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-gate-actions .btn-cta-primary,
.age-gate-actions .btn-cta-secondary {
  flex: 1;
  min-height: 48px;
}

/* 4. STICKY MOBILE BOTTOM CONVERSION BAR */
.sticky-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  height: 64px;
  background: rgba(8, 12, 24, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 10px;
}

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

.mobile-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  min-width: 54px;
}

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

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

.mobile-nav-highlight {
  background: var(--color-gold-gradient);
  color: #060913 !important;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.5);
  font-weight: 800;
  transform: translateY(-8px);
}

/* 5. HERO CONTAINER WITH CASINO BACKGROUND */
.page-hero {
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
}

.hero-headline {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 44px;
  }
}

.hero-subtext {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 800px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item svg {
  color: var(--color-emerald);
  width: 16px;
  height: 16px;
}

/* 6. INTERACTIVE 3x2 GRID & PLACECARDS WITH PAGINATION */
.casino-grid-section {
  padding: 50px 0;
  position: relative;
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

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

.section-title {
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 650px;
}

/* Filter Tabs */
.filter-tabs-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.filter-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.filter-tab-btn {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.filter-tab-btn:hover, .filter-tab-btn.active {
  background: var(--color-gold-gradient);
  color: #060913;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.4);
}

/* The 3x2 Grid Container (Strictly 3 cols on desktop, showing 6 items per page) */
.casino-grid-3x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

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

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

/* Placecard Component */
.grid-placecard {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.grid-placecard:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-elevated), 0 0 20px rgba(255, 184, 0, 0.25);
}

.placecard-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #060913;
  overflow: hidden;
}

.placecard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.grid-placecard:hover .placecard-img {
  transform: scale(1.05);
}

.placecard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.badge-gold {
  background: var(--color-gold-gradient);
  color: #060913;
}

.badge-emerald {
  background: var(--color-emerald);
  color: #FFFFFF;
}

.badge-primary {
  background: var(--color-primary);
  color: #FFFFFF;
}

.placecard-rtp {
  position: absolute;
  bottom: 10px;
  right: 12px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  color: var(--color-gold-light);
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.placecard-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.placecard-title {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.35;
}

.placecard-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.placecard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.placecard-action-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.placecard-action-link:hover {
  color: #FFFFFF;
}

/* Interactive Pagination Component */
.grid-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.pagination-btn.active {
  background: var(--color-gold-gradient);
  color: #060913;
  font-weight: 800;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.4);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* 7. IMAGE AND MEDIA ELEMENTS */
.featured-media-container {
  width: 100%;
  margin: 20px 0 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 20px rgba(255, 184, 0, 0.15);
  background: #0E1626;
}

.featured-media-container img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.contextual-media-container {
  width: 100%;
  margin: 30px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-card);
  background: #0E1626;
}

.contextual-media-container img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* 8. CARD AND CONTENT BUNDLES (Walkthroughs & Reviews) */
.bundle-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.bundle-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s ease;
}

.bundle-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.bundle-step-num {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--color-gold-gradient);
  color: #060913;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

.bundle-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Testimonial Placecards */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

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

.testimonial-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-row {
  color: var(--color-gold);
  font-size: 16px;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

/* 9. COLLAPSIBLE FAQ ACCORDION */
.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question-btn {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer-panel {
  max-height: 400px;
  padding: 0 20px 20px;
}

/* 10. E-E-A-T AUTHOR & VERIFICATION CAPSULE */
.eeat-author-capsule {
  background: var(--surface-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 0;
}

@media (min-width: 640px) {
  .eeat-author-capsule {
    flex-direction: row;
    align-items: center;
  }
}

.author-avatar-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gold);
  object-fit: cover;
  flex-shrink: 0;
}

.author-info-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.author-name-title {
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
}

.author-badge-pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-emerald);
  background: rgba(0, 200, 83, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  width: fit-content;
  border: 1px solid rgba(0, 200, 83, 0.25);
}

.author-bio-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* 11. COMPLIANCE & RESPONSIBLE GAMING FOOTER */
.site-footer {
  background: #04060C;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 80px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-unified-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

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

@media (min-width: 1024px) {
  .footer-unified-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
}

.footer-brand-col {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-brand-col {
    grid-column: span 1;
  }
}

.footer-silo-col-title {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

.footer-silo-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}

.footer-silo-link {
  color: var(--text-secondary);
  transition: all 0.2s ease;
  line-height: 1.4;
  text-decoration: none;
}

.footer-silo-link:hover {
  color: var(--color-gold);
  transform: translateX(3px);
  display: inline-block;
}

.responsible-advisory-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advisory-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #EF4444;
  font-size: 16px;
  font-weight: 800;
}

.footer-entity-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.entity-badge {
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  padding-top: 20px;
}

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