/* DESIGN TOKENS */
:root {
  --bg-dark-primary: #0B0E17;
  --bg-secondary: #131822;
  --bg-elevated: #1A202C;
  --bg-modal: rgba(9, 12, 18, 0.85);
  --border-color: #232B39;
  --gold-accent: #FFB800;
  --hover-accent: #FFA800;
  --secondary-accent: #2E6BFF;
  --status-success: #00E676;
  --text-primary: #FFFFFF;
  --text-muted: #8E9BAE;
  --text-disabled: #515D6F;
  
  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --sidebar-width: 260px;
}

/* RESET & BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-accent);
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.seo-article a {
  color: var(--gold-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.seo-article a:hover {
  color: var(--hover-accent);
  opacity: 0.85;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, #FFB800 0%, #FF9900 100%);
  color: var(--bg-dark-primary);
  box-shadow: 0px 4px 20px rgba(255, 184, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 24px rgba(255, 184, 0, 0.4);
  background: linear-gradient(135deg, #FFA800 0%, #FF8800 100%);
}

.btn-secondary {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  background-color: var(--border-color);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
}

/* LAYOUT STRUCTURE */
.app-container {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: var(--sidebar-width);
  background-color: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--gold-accent);
}

.sidebar-close-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav li {
  margin-bottom: 4px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.sidebar-nav li.active a,
.sidebar-nav a:hover {
  background-color: var(--bg-elevated);
  color: var(--text-primary);
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--border-color);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
}

.lang-icon {
  width: 16px;
  height: 16px;
}

.language-switcher select {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  width: 100%;
  outline: none;
  cursor: pointer;
}

.language-switcher select option {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

/* MAIN WRAPPER */
.main-wrapper {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* TOP HEADER BAR */
.top-header {
  height: 70px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 90;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-primary);
}

.category-toggle {
  display: flex;
  background-color: var(--bg-dark-primary);
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.cat-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cat-btn.active {
  background-color: var(--bg-elevated);
  color: var(--gold-accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* CONTENT AREA */
.content-area {
  padding: 24px;
  flex: 1;
}

/* SECTION 1: HERO PROMO SLIDER */
.hero-slider-section {
  margin-bottom: 32px;
}

.promo-banner {
  background: linear-gradient(110deg, var(--bg-secondary) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.promo-content {
  max-width: 500px;
  z-index: 2;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-accent);
  line-height: 1.1;
  margin-bottom: 12px;
}

.promo-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.promo-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-login {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-dark-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.social-btn:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.promo-image-wrap {
  width: 45%;
  max-width: 400px;
}

.promo-img {
  border-radius: 12px;
  box-shadow: 0px 8px 30px rgba(0,0,0,0.5);
}

/* SECTION 2: SLOTS CAROUSEL */
.slots-carousel-section {
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.view-all-link {
  color: var(--gold-accent);
  font-size: 13px;
  font-weight: 600;
  margin-right: 8px;
}

.nav-arrow {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.nav-arrow:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.slots-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slot-card {
  position: relative;
  flex: 0 0 calc(25% - 12px);
  min-width: 200px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.slot-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 18, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slot-card:hover .slot-thumb {
  transform: scale(1.08);
}

.slot-card:hover .slot-overlay {
  opacity: 1;
}

.btn-demo {
  font-size: 12px;
  padding: 8px 16px;
}

.btn-play {
  font-size: 11px;
  padding: 10px 12px;
  text-align: center;
}

/* SECTION 3: CRYPTO SHOWCASE & BANNER */
.crypto-showcase-section {
  margin-bottom: 32px;
}

.crypto-visual-banner {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.crypto-banner-content {
  flex: 1;
  max-width: 550px;
}

.crypto-badge {
  display: inline-block;
  background-color: rgba(255, 184, 0, 0.15);
  color: var(--gold-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.crypto-banner-title {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.crypto-banner-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.crypto-icons-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.crypto-icon-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.crypto-icon-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.crypto-icon-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(46, 107, 255, 0.4);
}

.crypto-banner-art {
  flex: 1;
  max-width: 420px;
  display: flex;
  justify-content: center;
}

.crypto-art-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* SECTION 4: LIVE BETS FEED */
.live-bets-section {
  margin-bottom: 32px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

.bets-header-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--bg-elevated);
  color: var(--gold-accent);
}

/* TABLES */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 12px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

th {
  background-color: var(--bg-elevated);
  color: var(--text-primary);
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
}

td {
  background-color: var(--bg-secondary);
  color: var(--text-muted);
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s;
}

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

tr:nth-child(even) td {
  background-color: #0F131C;
}

tr:hover td {
  background-color: var(--bg-elevated);
}

.payout-win {
  color: var(--status-success);
  font-weight: 600;
}

/* ANIMATION FOR LIVE BETS */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.row-animated {
  animation: fadeInDown 0.4s ease-out;
}

/* SECTION 5: SEO CONTENT AREA */
.seo-content-section {
  margin-bottom: 40px;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--gold-accent);
}

.toc-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--gold-accent);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}

.toc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 6px;
}

.toc-list a {
  display: block;
  color: var(--text-muted);
  padding: 4px 0;
  transition: padding-left 0.2s, color 0.2s;
}

.toc-list a:hover {
  color: var(--gold-accent);
  padding-left: 6px;
}

/* CUSTOM LISTS */
.seo-article ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.seo-article ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.seo-article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--gold-accent);
  border-radius: 2px;
}

.seo-article ol {
  counter-reset: custom-counter;
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.seo-article ol li {
  counter-increment: custom-counter;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.seo-article ol li::before {
  content: counter(custom-counter) ". ";
  font-family: var(--font-heading);
  color: var(--gold-accent);
  font-weight: 700;
  margin-right: 8px;
}

.content-figure {
  margin: 24px 0;
}

.content-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.5);
}

figcaption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* CONTACT FORM */
.contact-form {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  background-color: var(--bg-dark-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* FOOTER */
.main-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 40px 24px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.badge-18 {
  display: inline-block;
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
}

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

/* LICENSE BLOCK */
.license-block {
  background-color: var(--bg-dark-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.license-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.license-seal-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.license-info {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.license-link {
  color: var(--gold-accent);
  font-size: 12px;
}

.legal-disclaimer {
  font-size: 12px;
  color: var(--text-disabled);
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.copyright-text {
  font-size: 12px;
  color: var(--text-disabled);
  margin-bottom: 0;
}

/* FLOATING COOKIE NOTICE */
.cookie-modal {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 360px;
  background-color: var(--bg-elevated);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-accent);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-modal.hidden {
  opacity: 0;
  transform: translateX(50px);
  pointer-events: none;
}

.cookie-header h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.decline-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
}

.decline-link:hover {
  color: var(--text-primary);
}

/* GAME DEMO MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: var(--bg-modal);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 960px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.modal-top-bar {
  padding: 16px 20px;
  background-color: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.modal-game-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-accent);
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
}

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

.modal-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.modal-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .sidebar-close-btn {
    display: block;
  }

  .main-wrapper {
    margin-left: 0;
  }

  .hamburger-btn {
    display: flex;
  }

  .slot-card {
    flex: 0 0 calc(50% - 8px);
  }

  .crypto-visual-banner {
    flex-direction: column;
    text-align: center;
  }

  .crypto-icons-row {
    justify-content: center;
  }

  .crypto-banner-art {
    max-width: 100%;
  }

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

  .license-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .promo-banner {
    flex-direction: column;
    padding: 20px;
  }

  .promo-image-wrap {
    width: 100%;
    margin-top: 20px;
  }

  .slot-card {
    flex: 0 0 100%;
  }

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

  .cookie-modal {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 16px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }
}
/* Inner page styles */
/* ADDITIONAL STYLES FOR INNER ARTICLE PAGE */

.article-container {
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.article-header {
  margin-bottom: 24px;
}

.category-tag {
  display: inline-block;
  background-color: rgba(255, 184, 0, 0.12);
  color: var(--gold-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.article-main-title {
  font-size: 34px;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.text-highlight {
  color: var(--text-primary);
}

.text-gold {
  color: var(--gold-accent);
  font-weight: 600;
}

.meta-divider {
  color: var(--border-color);
}

/* ARTICLE IMAGES (RESPONSIVE & STYLED) */
.article-hero-media {
  margin-bottom: 32px;
}

.lead-article-img,
.content-article-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.lead-article-img {
  max-height: 420px;
}

.image-caption {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.article-inline-media {
  margin: 28px 0;
}

/* TABLE OF CONTENTS */
.toc-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--gold-accent);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.toc-header-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.toc-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.toc-container .toc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
}

.toc-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list li:last-child {
  margin-bottom: 0;
}

.toc-list a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.toc-list a:hover {
  color: var(--gold-accent);
  padding-left: 4px;
}

/* ARTICLE BODY TYPOGRAPHY & LINKS */
.article-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.lead-paragraph {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 24px;
  border-left: 2px solid var(--gold-accent);
  padding-left: 16px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-accent);
  margin-top: 24px;
  margin-bottom: 12px;
}

.article-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 20px;
  margin-bottom: 10px;
}

.article-body h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 16px;
  margin-bottom: 8px;
}

.article-body h6 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 14px;
  margin-bottom: 6px;
}

.article-body p {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.inline-link {
  color: var(--gold-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.inline-link:hover {
  color: var(--hover-accent);
}

/* CUSTOM LISTS */
.article-styled-list,
.article-numbered-list {
  margin: 16px 0 24px 0;
  padding-left: 0;
  list-style: none;
}

.article-styled-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.article-styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background-color: var(--gold-accent);
  border-radius: 2px;
}

.article-numbered-list {
  counter-reset: article-counter;
}

.article-numbered-list li {
  counter-increment: article-counter;
  margin-bottom: 12px;
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
}

.article-numbered-list li::before {
  content: counter(article-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-color);
  color: var(--gold-accent);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CUSTOM DATA TABLE */
.custom-data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0 28px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.badge-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-active {
  background-color: rgba(0, 230, 118, 0.15);
  color: var(--status-success);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.badge-fast {
  background-color: rgba(255, 184, 0, 0.15);
  color: var(--gold-accent);
  border: 1px solid rgba(255, 184, 0, 0.3);
}

/* CONTACT FORM STYLING ENHANCEMENTS */
.article-contact-form {
  margin-top: 28px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }
  
  .article-main-title {
    font-size: 26px;
  }
  
  .article-body h2 {
    font-size: 20px;
  }
}