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

:root {
  --bg-dark: #0f0d0e;
  --bg-card: #1b1716;
  --bg-card-hover: #26201e;
  --bg-sidebar: #141110;
  --bg-header: #120f0e;
  --accent-gold: #f5b027;
  --accent-gold-hover: #ffd05b;
  --accent-green: #28a745;
  --accent-green-hover: #32c855;
  --text-main: #f0ece9;
  --text-muted: #9e938c;
  --border-color: rgba(245, 176, 39, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

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

.main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* SIDEBAR */
.sidebar {
  width: 250px;
  background-color: var(--bg-sidebar);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.sidebar.collapsed {
  width: 70px;
}

.sidebar.collapsed .sidebar-brand-text,
.sidebar.collapsed .sidebar-mode-switch,
.sidebar.collapsed .search-input-wrap input,
.sidebar.collapsed .nav-group-title,
.sidebar.collapsed .nav-item span,
.sidebar.collapsed .sidebar-footer {
  display: none;
}

.sidebar-header {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-toggle-btn {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.burger-bar {
  width: 20px;
  height: 2px;
  background-color: var(--accent-gold);
  border-radius: 2px;
}

.sidebar-brand-text {
  font-weight: 900;
  font-size: 14px;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.sidebar-mode-switch {
  display: flex;
  padding: 12px 16px;
  gap: 8px;
}

.mode-btn {
  flex: 1;
  padding: 8px 0;
  background: #221c1a;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.mode-btn.active {
  background: var(--accent-gold);
  color: #000;
}

.sidebar-search {
  padding: 0 16px 12px;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 10px;
  color: var(--text-muted);
}

.search-input-wrap input {
  width: 100%;
  background: #1c1817;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 8px 8px 34px;
  color: #fff;
  font-size: 12px;
}

.search-input-wrap input:focus {
  border-color: var(--accent-gold);
}

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

.nav-group-title {
  display: block;
  padding: 8px 16px 4px;
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
}

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

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s;
}

.nav-item:hover,
.sidebar-nav li.active .nav-item {
  background: rgba(245, 176, 39, 0.1);
  color: var(--accent-gold);
}

.nav-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0.9);
}

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

.domain-pill {
  font-size: 11px;
  background: #1c1817;
  padding: 6px 10px;
  border-radius: 20px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot.green-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-green);
}

/* HEADER */
.top-header {
  height: 64px;
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--border-subtle);
  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;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--accent-gold);
}

.brand-logo {
  height: 36px;
  object-fit: contain;
}

.arg-badge {
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* BUTTONS */
.btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.1s, background-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:active {
  transform: scale(0.98);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #000;
}

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

.btn-green {
  background-color: var(--accent-green);
  color: #fff;
}

.btn-green:hover {
  background-color: var(--accent-green-hover);
}

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

.btn-demo {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}

.full-width {
  width: 100%;
}

/* HERO BANNER */
.hero-section {
  margin: 20px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-slider {
  position: relative;
  min-height: 280px;
}

.hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,13,14,0.95) 0%, rgba(15,13,14,0.6) 50%, rgba(15,13,14,0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  max-width: 550px;
}

.hero-tag {
  background: rgba(245, 176, 39, 0.2);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 32px;
  font-weight: 900;
  margin: 12px 0 6px;
  line-height: 1.1;
}

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

.hero-subtitle {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-link {
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
}

.hero-link:hover {
  text-decoration: underline;
}

.slider-controls {
  position: absolute;
  bottom: 16px;
  right: 24px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.slider-dot.active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 10px;
}

/* FILTER BAR */
.filter-bar-section {
  padding: 0 20px 20px;
}

.filter-container {
  display: flex;
  gap: 16px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 4px;
}

.provider-select-btn {
  background: var(--bg-card);
  color: #fff;
  border: 1px solid var(--border-subtle);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.category-pills {
  display: flex;
  gap: 8px;
}

.pill-btn {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  transition: all 0.2s;
}

.pill-btn:hover,
.pill-btn.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

/* GAMES SECTIONS */
.games-section {
  padding: 0 20px 30px;
}

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

.section-title {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform 0.2s, border-color 0.2s;
}

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

.game-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-exclusive,
.badge-live {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 3px;
}

.badge-exclusive {
  background: var(--accent-gold);
  color: #000;
}

.badge-live {
  background: #e53935;
  color: #fff;
}

.game-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

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

.game-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.game-name {
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: 11px;
  color: var(--text-muted);
}

/* INFO TEXT BLOCK */
.info-text-block {
  margin: 20px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-gold);
}

.info-text-block h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--accent-gold);
}

.info-text-block p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* FOOTER */
.main-footer {
  background: #090808;
  border-top: 1px solid var(--border-subtle);
  padding: 40px 20px 20px;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 12px;
}

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

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

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul a {
  color: var(--text-muted);
  font-size: 12px;
}

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

.payment-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.payment-tag {
  background: #181413;
  border: 1px solid var(--border-subtle);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  color: #ccc;
  font-weight: 600;
}

.footer-middle {
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.license-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-box {
  background: #181413;
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
}

.footer-bottom {
  text-align: center;
}

.legal-text {
  font-size: 11px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 10px;
}

.copyright {
  font-size: 12px;
  color: var(--text-muted);
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

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

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 400px;
  padding: 28px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  color: var(--text-muted);
  font-size: 24px;
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-logo {
  height: 28px;
  margin-bottom: 10px;
}

.domain-tag {
  font-size: 11px;
  color: var(--accent-gold);
}

.bonus-badge {
  font-size: 12px;
  background: rgba(40, 167, 69, 0.2);
  color: var(--accent-green);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
}

.auth-form .form-group {
  margin-bottom: 14px;
}

.auth-form label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.auth-form input,
.auth-form select {
  width: 100%;
  background: #100e0d;
  border: 1px solid var(--border-subtle);
  padding: 10px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 13px;
}

.auth-form input:focus {
  border-color: var(--accent-gold);
}

.form-actions {
  text-align: right;
  margin-bottom: 16px;
}

.forgot-pass {
  font-size: 11px;
  color: var(--accent-gold);
}

.form-check {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    bottom: 0;
  }
  .sidebar.mobile-open {
    left: 0;
    transform: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .top-header {
    padding: 0 12px;
  }
  .hero-content {
    padding: 20px;
  }
  .hero-title {
    font-size: 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Inner page styles */
/* ADDITIONAL STYLES FOR INNER ARTICLE & CONTENT PAGES */

/* SLOTS INTERLINKING SECTION */
.slots-interlinking-section {
  padding: 0 20px 30px;
}

.section-title-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.slots-linking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.slot-link-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.slot-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.slot-link-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.slot-link-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.85);
  color: var(--accent-gold);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid var(--accent-gold);
}

.slot-link-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.slot-link-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.slot-provider-name {
  font-size: 11px;
  color: var(--text-muted);
}

.slot-link-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 11px;
  border-radius: var(--radius-sm);
}

.slot-read-more {
  font-size: 11px;
  color: var(--accent-gold);
  font-weight: 600;
}

.slot-read-more:hover {
  text-decoration: underline;
}

/* ARTICLE CONTAINER & TYPOGRAPHY */
.page-article-container {
  margin: 0 20px 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 36px;
}

.article-featured-wrap {
  width: 100%;
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.article-featured-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.article-caption {
  background: #141110;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
}

/* HEADINGS STYLES */
.article-h1 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 10px;
}

.article-h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
  margin: 32px 0 14px;
  line-height: 1.3;
}

.article-h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
}

.article-h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold-hover);
  margin: 20px 0 10px;
}

.article-h5 {
  font-size: 14px;
  font-weight: 700;
  color: #eee;
  margin: 16px 0 8px;
}

.article-h6 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin: 14px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PARAGRAPHS & SPANS */
.article-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #e2dbd7;
  margin-bottom: 20px;
  font-weight: 500;
}

.article-text {
  font-size: 14px;
  line-height: 1.7;
  color: #c5bbb5;
  margin-bottom: 16px;
}

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

.text-muted-small {
  font-size: 11px;
  color: var(--text-muted);
}

/* INLINE LINKS */
.article-inline-link {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

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

/* LISTS (UL, OL) */
.article-list {
  margin: 16px 0 24px 20px;
  padding-left: 10px;
}

.article-ul li {
  list-style-type: square;
  color: var(--accent-gold);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.article-ul li > * {
  color: #c5bbb5;
}

.article-ol li {
  list-style-type: decimal;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.article-ol li > * {
  color: #c5bbb5;
  font-weight: 400;
}

/* ARTICLE FIGURES & ADAPTIVE IMAGES */
.article-inline-figure {
  margin: 24px 0;
  max-width: 100%;
}

.article-inline-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: block;
}

.article-figcaption {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
  text-align: center;
}

/* TABLE STYLES */
.article-table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.article-table th,
.article-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.article-table th {
  background: #141110;
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.article-table tbody tr {
  background: var(--bg-card);
  transition: background 0.2s;
}

.article-table tbody tr:nth-child(even) {
  background: #211c1b;
}

.article-table tbody tr:hover {
  background: #2b2422;
}

.badge-rtp {
  background: rgba(40, 167, 69, 0.15);
  color: var(--accent-green);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
}

/* CONTACT FORM STYLES */
.article-contact-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.contact-card {
  background: #13100f;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 28px;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.margin-zero {
  margin: 0 !important;
}

.text-sm {
  font-size: 12px !important;
}

.article-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.contact-form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  background: #1d1817;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.btn-inline-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}

/* FLOATING COOKIES MODAL IN RIGHT CORNER */
.cookie-modal-corner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  max-width: 340px;
  width: calc(100% - 48px);
  animation: slideInRight 0.4s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cookie-modal-content {
  background: #1c1716;
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  position: relative;
}

.cookie-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  color: var(--text-muted);
  font-size: 18px;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

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

.cookie-title {
  font-weight: 800;
  font-size: 13px;
  color: var(--accent-gold);
}

.cookie-text {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-link {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: underline;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
  .page-article-container {
    padding: 20px;
    margin: 0 12px 30px;
  }
  .article-h1 {
    font-size: 22px;
  }
  .article-h2 {
    font-size: 18px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .cookie-modal-corner {
    bottom: 12px;
    right: 12px;
  }
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  z-index: 1000;
  overflow-y: auto;
}

.top-header {
  margin-left: 240px;
  width: calc(100% - 240px);
}

.main-content {
  margin-left: 240px;
  width: calc(100% - 240px);
}

@media (max-width: 991px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .top-header,
  .main-content {
    margin-left: 0;
    width: 100%;
  }
}
.main-footer {
  margin-left: 240px;
  width: calc(100% - 240px);
}

@media (max-width: 991px) {
  .main-footer {
    margin-left: 0;
    width: 100%;
  }
}
.sidebar-mode-switch {
  display: flex;
  gap: 8px;
}

.sidebar-mode-switch .mode-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.info-text-block {
  background: #171313;
  border-left: 4px solid #f5aa18;
  border-radius: 10px;
  padding: 28px 32px;
  margin: 40px 0;
  color: #d8d2c8;
  font-size: 16px;
  line-height: 1.75;
}

.info-text-block h1,
.info-text-block h2,
.info-text-block h3,
.info-text-block h4,
.info-text-block h5,
.info-text-block h6 {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.25;
  margin: 28px 0 16px;
}

.info-text-block h1:first-child,
.info-text-block h2:first-child,
.info-text-block h3:first-child,
.info-text-block h4:first-child,
.info-text-block h5:first-child,
.info-text-block h6:first-child {
  margin-top: 0;
}

.info-text-block h1 {
  font-size: 34px;
}

.info-text-block h2 {
  font-size: 28px;
}

.info-text-block h3 {
  font-size: 24px;
}

.info-text-block h4 {
  font-size: 20px;
}

.info-text-block h5 {
  font-size: 18px;
}

.info-text-block h6 {
  font-size: 16px;
  text-transform: uppercase;
  color: #f5aa18;
}

.info-text-block p {
  margin: 0 0 18px;
}

.info-text-block p:last-child {
  margin-bottom: 0;
}

.info-text-block a {
  color: #f5aa18;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-text-block a:hover {
  color: #ffc64a;
}

.info-text-block strong,
.info-text-block b {
  color: #ffffff;
  font-weight: 800;
}

.info-text-block em,
.info-text-block i {
  color: #f1e4c8;
}

.info-text-block ul,
.info-text-block ol {
  margin: 18px 0 22px;
  padding-left: 24px;
}

.info-text-block li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.info-text-block ul li::marker {
  color: #f5aa18;
}

.info-text-block ol li::marker {
  color: #f5aa18;
  font-weight: 800;
}

.info-text-block blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid #f5aa18;
  background: #211b18;
  color: #f1e4c8;
  border-radius: 8px;
}

.info-text-block img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  border-radius: 10px;
}

.info-text-block figure {
  margin: 26px 0;
}

.info-text-block figcaption {
  margin-top: 8px;
  color: #9e9588;
  font-size: 14px;
  text-align: center;
}

.info-text-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 10px;
  background: #120f0f;
}

.info-text-block th,
.info-text-block td {
  border: 1px solid #332a24;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.info-text-block th {
  background: #251b13;
  color: #f5aa18;
  font-weight: 800;
}

.info-text-block td {
  color: #d8d2c8;
}

.info-text-block hr {
  border: 0;
  border-top: 1px solid #332a24;
  margin: 30px 0;
}

.info-text-block code {
  background: #241d1a;
  color: #ffc64a;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.95em;
}

.info-text-block pre {
  background: #100d0d;
  color: #f1e4c8;
  padding: 18px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 24px 0;
}

.info-text-block pre code {
  background: transparent;
  padding: 0;
}

@media (max-width: 767px) {
  .info-text-block {
    padding: 22px 18px;
    font-size: 15px;
  }

  .info-text-block h1 {
    font-size: 28px;
  }

  .info-text-block h2 {
    font-size: 24px;
  }

  .info-text-block h3 {
    font-size: 21px;
  }

  .info-text-block table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.casino-promo-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 32px 0;
  padding: 20px 22px;
  background: #111;
  border: 1px dashed #f5aa18;
  border-radius: 8px;
}

.promo-code-text {
  color: #f5aa18;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-code-text span {
  color: #f5aa18;
}

.promo-code-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-copy-code,
.btn-activate-bonus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-copy-code {
  background: #f5aa18;
  color: #050505;
}

.btn-activate-bonus {
  background: #2ecc71;
  color: #fff;
}

.btn-copy-code:hover {
  background: #ffc247;
}

.btn-activate-bonus:hover {
  background: #35d87a;
}

@media (max-width: 700px) {
  .casino-promo-code {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-code-actions {
    width: 100%;
  }

  .btn-copy-code,
  .btn-activate-bonus {
    flex: 1;
  }
}
.providers-modal {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1200;
  width: min(860px, calc(100vw - 40px));
  max-height: 70vh;
  overflow-y: auto;
  padding: 22px;
  background: #25211d;
  border: 1px solid #3a332b;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.provider-dropdown-wrap {
  position: relative;
}

.providers-modal.active {
  display: block;
}

.providers-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.providers-modal-head h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.providers-modal-head input {
  width: 270px;
  max-width: 100%;
  height: 38px;
  padding: 0 14px;
  background: #181512;
  border: 1px solid #4b4036;
  border-radius: 8px;
  color: #fff;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 0 26px;
}

.providers-grid a {
  display: block;
  padding: 10px 0;
  color: #e8e0d3;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #3a332b;
}

.providers-grid a:hover {
  color: #f5aa18;
}

@media (max-width: 900px) {
  .providers-modal {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    width: auto;
  }

  .providers-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .providers-modal-head {
    align-items: stretch;
    flex-direction: column;
  }

  .providers-modal-head input {
    width: 100%;
  }
}
.filter-bar-section,
.filter-container,
.provider-dropdown-wrap {
  overflow: visible;
}

.providers-modal {
  display: none;
  position: fixed;
  top: 90px;
  left: 260px;
  right: 24px;
  z-index: 99999;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 22px;
  background: #25211d;
  border: 1px solid #3a332b;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.providers-modal.active {
  display: block;
}

@media (max-width: 991px) {
  .providers-modal {
    top: 80px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 100px);
  }
}
.provider-dropdown-wrap {
  position: relative;
}

.filter-bar-section,
.filter-container,
.provider-dropdown-wrap {
  overflow: visible;
}

.providers-modal {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 99999;
  width: 760px;
  max-width: calc(100vw - 280px);
  max-height: 520px;
  overflow-y: auto;
  padding: 22px;
  background: #25211d;
  border: 1px solid #3a332b;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.providers-modal.active {
  display: block;
}

.providers-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.providers-modal-head h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.providers-modal-head input {
  width: 270px;
  height: 38px;
  padding: 0 14px;
  background: #181512;
  border: 1px solid #4b4036;
  border-radius: 8px;
  color: #fff;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 0 26px;
}

.providers-grid a {
  display: block;
  padding: 10px 0;
  color: #e8e0d3;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #3a332b;
}

.providers-grid a:hover {
  color: #f5aa18;
}

@media (max-width: 991px) {
  .providers-modal {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 100px);
  }

  .providers-modal-head {
    align-items: stretch;
    flex-direction: column;
  }

  .providers-modal-head input {
    width: 100%;
  }

  .providers-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
.sport-bonuses-section,
.sport-live-section {
  padding: 34px 24px;
}

.sport-main-title {
  margin: 0 0 34px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.sport-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.sport-bonus-card {
  position: relative;
  display: block;
  min-height: 164px;
  overflow: hidden;
  border-radius: 10px;
  background: #171313;
  text-decoration: none;
}

.sport-bonus-card-center {
  grid-column: 2;
}

.sport-bonus-card img {
  width: 100%;
  height: 100%;
  min-height: 164px;
  object-fit: cover;
  display: block;
}

.sport-bonus-overlay {
  position: absolute;
  left: 20px;
  top: 50%;
  max-width: 190px;
  transform: translateY(-50%);
  color: #fff;
}

.sport-bonus-overlay span {
  display: block;
  color: #f5aa18;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.sport-bonus-overlay small {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.sport-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto 20px;
}

.sport-section-title {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.sport-live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #2ecc71;
}

.sport-market-link {
  border: 1px solid #f5aa18;
  border-radius: 22px;
  padding: 10px 22px;
  color: #f5aa18;
  font-weight: 800;
  text-decoration: none;
}

.sport-market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.sport-market-card {
  padding: 24px 20px;
  border: 1px solid #2f2924;
  border-radius: 12px;
  background: radial-gradient(circle at right, rgba(245, 170, 24, 0.22), transparent 42%), #171313;
}

.sport-market-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 16px;
  background: rgba(245, 170, 24, 0.18);
  color: #f5aa18;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sport-market-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.sport-market-card p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.sport-market-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sport-market-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 8px;
  background: #f5aa18;
  color: #0b0908;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .sport-bonus-grid,
  .sport-market-grid {
    grid-template-columns: 1fr;
  }

  .sport-bonus-card-center {
    grid-column: auto;
  }

  .sport-section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
.bonus-grid-section {
  padding: 42px 24px;
  background: #0f0d0d;
}

.bonus-grid-container {
  max-width: 1180px;
  margin: 0 auto;
}

.bonus-grid-title {
  margin-bottom: 26px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bonus-card {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #171313;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.bonus-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .bonus-grid-section {
    padding: 30px 16px;
  }

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

  .bonus-grid-title {
    font-size: 24px;
  }
}
.sport-faq-section {
  padding: 42px 24px;
  background: #0f0d0d;
}

.sport-faq-container {
/*  max-width: 960px;*/
  margin: 0 auto;
}

.sport-faq-title {
  margin-bottom: 24px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.sport-faq-list {
  display: grid;
  gap: 12px;
}

.sport-faq-item {
  overflow: hidden;
  border: 1px solid #2f2924;
  border-radius: 10px;
  background: #171313;
}

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

.sport-faq-question span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.sport-faq-question span::before,
.sport-faq-question span::after {
  content: "";
  position: absolute;
  background: #f5aa18;
  border-radius: 2px;
}

.sport-faq-question span::before {
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
}

.sport-faq-question span::after {
  top: 2px;
  left: 8px;
  width: 2px;
  height: 14px;
  transition: transform 0.2s ease;
}

.sport-faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: #d8d2c8;
  font-size: 15px;
  line-height: 1.7;
}

.sport-faq-answer p {
  margin: 0;
}

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

.sport-faq-item.active .sport-faq-question span::after {
  transform: rotate(90deg);
}

@media (max-width: 700px) {
  .sport-faq-section {
    padding: 30px 16px;
  }

  .sport-faq-title {
    font-size: 24px;
  }

  .sport-faq-question {
    padding: 16px;
    font-size: 15px;
  }

  .sport-faq-answer {
    padding: 0 16px 16px;
  }
}
.argentina-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(116, 172, 223, 0.45);
  border-radius: 999px;
  background: rgba(116, 172, 223, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.argentina-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.argentina-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border: 1px solid rgba(116, 172, 223, 0.5);
  border-radius: 999px;
  background: rgba(116, 172, 223, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.argentina-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 24px;
  height: 16px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.argentina-flag svg {
  display: block;
  width: 24px;
  height: 16px;
}

.argentina-code {
  color: #dff2ff;
}
.argentina-badge {
  padding: 3px;
}
.argentina-code {
  display: none;
}