/* ==========================================================================
   JILIASIA COMPONENT LIBRARY (components.css)
   Includes: 3x2 Grid, Placecards, Age-Gate, Accordion, Calculator, Mobile Nav, Tables
   ========================================================================== */

/* ==========================================================================
   1. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

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

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.4));
}

.brand-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 1;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap !important;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold);
  background: rgba(255, 184, 0, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.desktop-text {
  display: inline;
}

.mobile-text {
  display: none;
}

.header-cta-arrow {
  display: inline-block;
  vertical-align: middle;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 10px;
  color: var(--text-primary);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #0D1322;
  border-left: 1px solid var(--border-gold);
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

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

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

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

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-primary);
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  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;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.drawer-nav-link:hover {
  background: rgba(255, 184, 0, 0.1);
  color: var(--color-gold);
}

/* ==========================================================================
   2. 3x2 INTERACTIVE GRID BOX & PLACECARDS
   Strict 3 Columns x 2 Rows = 6 cards per view
   ========================================================================== */
.grid-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.tab-filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(20, 30, 51, 0.6);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(30, 136, 229, 0.4);
}

.grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

/* Placecard Item */
.placecard {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

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

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

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

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

.placecard-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.placecard-rtp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: var(--text-emerald);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-emerald);
  z-index: 2;
}

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

.placecard-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
  display: block;
}

.placecard-title {
  font-size: 19px;
  margin-bottom: 8px;
}

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

.placecard-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.placecard-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-align: center;
  min-height: 40px;
}

.btn-card-play {
  background: linear-gradient(135deg, #FFB800 0%, #FF9100 100%);
  color: #0A0E17;
}

.btn-card-play:hover {
  background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
}

.btn-card-demo {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-card-demo:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.page-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
}

.page-btn:hover, .page-btn.active {
  background: var(--color-gold);
  color: #0A0E17;
  border-color: var(--color-gold);
}

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

.page-info {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   3. BONUS CALCULATOR COMPONENT
   ========================================================================== */
.bonus-calculator-card {
  background: linear-gradient(135deg, rgba(20, 30, 51, 0.95) 0%, rgba(13, 19, 34, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.preset-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.preset-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-btn.active, .preset-btn:hover {
  background: var(--color-gold);
  color: #0A0E17;
  border-color: var(--color-gold);
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: #1E293B;
  outline: none;
  accent-color: var(--color-gold);
  cursor: pointer;
  margin: 12px 0 20px;
}

.calc-results-box {
  background: rgba(10, 14, 23, 0.7);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 10px;
}

.calc-stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.calc-stat-val {
  font-weight: 800;
  font-size: 18px;
  color: var(--text-gold);
}

/* ==========================================================================
   4. E-E-A-T AUTHOR & REVIEW METHODOLOGY CARD
   ========================================================================== */
.eeat-card, .author-bio-card {
  background: var(--surface-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin: 40px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}

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

.eeat-content {
  flex-grow: 1;
}

.eeat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-emerald);
  margin-bottom: 4px;
}

.eeat-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.eeat-role {
  font-size: 13px;
  color: var(--text-gold);
  margin-bottom: 12px;
}

.eeat-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.eeat-signals-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  list-style: none;
  font-size: 13px;
  color: var(--text-secondary);
}

.eeat-signals-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   5. INTERACTIVE FAQ ACCORDION
   ========================================================================== */
.faq-section {
  margin: 56px 0;
}

.faq-list, .faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.faq-item:hover {
  border-color: rgba(255, 184, 0, 0.4);
  background: rgba(20, 30, 51, 0.85);
}

.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.15);
  background: rgba(20, 30, 51, 0.95);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  min-height: 56px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-chevron, .faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--color-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.faq-answer-inner, .faq-answer p {
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
  margin: 0;
}

/* ==========================================================================
   6. 21+ AGE GATE MODAL (Crawlers Safe & Accessible)
   ========================================================================== */
.age-gate-modal-backdrop, .age-gate-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.age-gate-modal-backdrop.show, .age-gate-modal.show {
  opacity: 1;
  visibility: visible;
}

.age-gate-dialog, .age-gate-content {
  background: linear-gradient(135deg, #162035 0%, #0D1322 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 184, 0, 0.2);
}

.age-gate-icon, .age-badge {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.age-gate-title {
  font-size: 24px;
  margin-bottom: 12px;
}

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

.age-gate-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
}

/* ==========================================================================
   7. STICKY MOBILE BOTTOM NAVIGATION (High CTR Conversion Driver)
   ========================================================================== */
.sticky-mobile-nav, .mobile-sticky-bottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(10, 14, 23, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  z-index: 999;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-nav-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}

.mobile-sticky-bottom {
  display: none;
  align-items: center;
  justify-content: space-around;
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  gap: 4px;
  min-height: 48px;
  transition: color 0.2s ease;
  text-decoration: none;
}

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

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

.mobile-nav-item.cta-highlight, .mobile-nav-item.highlight {
  color: #0A0E17 !important;
  background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%) !important;
  border-radius: 12px 12px 0 0;
  font-weight: 800;
}

/* ==========================================================================
   8. COMPLIANCE FOOTER
   ========================================================================== */
.site-footer {
  background: #070B12;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 20px 80px;
  margin-top: auto;
}

.footer-compliance-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 48px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.compliance-badge-21 {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 2px solid #EF4444;
  font-size: 18px;
  font-weight: 800;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-heading {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   9. ENHANCED TABLE STYLES (Responsive & Clean GFM Tables)
   ========================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 32px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  background: rgba(13, 19, 34, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: rgba(10, 14, 23, 0.8);
  border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  text-align: left;
  font-size: 14px;
}

.casino-table thead tr {
  background: linear-gradient(90deg, rgba(255, 184, 0, 0.18) 0%, rgba(30, 136, 229, 0.15) 100%);
  border-bottom: 2px solid var(--border-gold);
}

.casino-table th {
  padding: 16px 20px;
  color: var(--text-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  white-space: nowrap;
}

.casino-table td {
  padding: 14px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
  line-height: 1.5;
}

.casino-table tbody tr {
  transition: background-color 0.2s ease;
}

.casino-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.casino-table tbody tr:hover {
  background: rgba(255, 184, 0, 0.08);
}

.casino-table strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ==========================================================================
   10. ENHANCED MEDIA ALIGNMENT & CARD BUNDLES
   ========================================================================== */
.featured-media-card {
  max-width: 960px;
  margin: 24px auto 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 35px rgba(255, 184, 0, 0.25);
  background: #0D1322;
  position: relative;
}

.featured-media-card img, .featured-image {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.contextual-media-card {
  max-width: 820px;
  margin: 40px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-elevated);
  background: #0D1322;
}

.contextual-media-card img, .contextual-image {
  width: 100%;
  height: auto;
  display: block;
}

.contextual-media-card p {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-secondary);
  background: rgba(20, 30, 51, 0.95);
  margin: 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

/* ==========================================================================
   11. RESPONSIVE BREAKPOINTS (Tablet & Mobile Optimization)
   ========================================================================== */
@media (max-width: 1200px) {
  .nav-desktop, .header-actions .btn-cta-secondary {
    display: none !important;
  }
  .hamburger-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  body {
    padding-bottom: 84px !important;
  }

  .site-header {
    height: 56px !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .site-header .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .brand-logo-link {
    gap: 6px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }

  .brand-logo-img {
    height: 30px !important;
    width: auto !important;
    flex-shrink: 0 !important;
  }

  .brand-title {
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
  }

  .nav-desktop, .header-actions .btn-cta-secondary {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
  }

  .header-actions .btn-cta-primary {
    padding: 6px 11px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    min-height: 34px !important;
    height: 34px !important;
    gap: 0 !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(255, 184, 0, 0.25) !important;
  }

  .desktop-text {
    display: none !important;
  }

  .mobile-text {
    display: inline !important;
  }

  .header-cta-arrow,
  .header-actions .btn-cta-primary svg {
    display: none !important;
  }

  .hamburger-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
  }

  .hamburger-btn svg {
    width: 18px !important;
    height: 18px !important;
  }

  .sticky-mobile-nav {
    display: block !important;
  }

  .mobile-sticky-bottom {
    display: flex !important;
  }

  .grid-3x2 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .calc-grid {
    grid-template-columns: 1fr !important;
  }

  .featured-media-card {
    margin: 16px auto 28px !important;
    border-radius: var(--radius-lg) !important;
  }

  .casino-hero-container {
    padding: 40px 16px !important;
    min-height: auto !important;
  }

  .casino-hero-content h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  .casino-hero-content p {
    font-size: 15px !important;
  }

  .table-responsive {
    margin: 20px 0 !important;
    border-radius: var(--radius-md) !important;
  }

  .casino-table th, .casino-table td {
    padding: 12px 14px !important;
    font-size: 13px !important;
  }

  .faq-question {
    font-size: 15px !important;
    padding: 16px 18px !important;
  }

  .eeat-card, .author-bio-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}

@media (max-width: 380px) {
  .site-header .container {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .header-inner {
    gap: 4px !important;
  }

  .brand-logo-link {
    gap: 4px !important;
  }

  .brand-title {
    font-size: 14px !important;
  }

  .brand-logo-img {
    height: 26px !important;
  }

  .header-actions {
    gap: 4px !important;
  }

  .header-actions .btn-cta-primary {
    padding: 5px 8px !important;
    font-size: 11px !important;
  }
}

