/* Device Detection CSS */

/* Desktop styles (default) */
.only-mobile,
.mobile-only {
    display: none !important;
}

.only-desktop,
.desktop-only {
    display: block !important;
}

/* Mobile styles */
@media (max-width: 768px) {
    .only-mobile,
    .mobile-only {
        display: block !important;
    }
    
    .only-desktop,
    .desktop-only {
        display: none !important;
    }
}

/* Tablet styles (if needed) */
@media (min-width: 769px) and (max-width: 1024px) {
    .only-tablet {
        display: block !important;
    }
    
    .only-desktop {
        display: none !important;
    }
}

/* Additional helper classes */
.is-mobile .desktop-content,
.is-mobile .desktop-only {
    display: none !important;
}

.is-desktop .mobile-content,
.is-desktop .mobile-only {
    display: none !important;
}

.is-mobile .mobile-content,
.is-mobile .mobile-only {
    display: block !important;
}

.is-desktop .desktop-content,
.is-desktop .desktop-only {
    display: block !important;
}

/* Hide/show based on JavaScript detection */
.js .no-js {
    display: none !important;
}

.no-js .js {
    display: none !important;
}



/* Specific elements that should be hidden */
.game-of-week {
    display: none !important;
}

.games-page-provider-filter-slider {
    display: none !important; 
}



:root {
  --bg: #0b0d10;
  --text: #e6e6e6;
  --muted: #a0a0a0;
  --gold: #d8871e;
  --border: #2a2a2a;
}
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dotted color-mix(in oklab, var(--gold) 60%, transparent);
}
a:hover {
  color: color-mix(in oklab, var(--gold) 80%, #fff);
}

h1
{
  font-size: 10px;
}
 .content h2, h3, h4, h5, h6 {
  color: var(--gold) !important;

}

/* Списки */
ul, ol {
  margin: 0 0 1em 1.5em;
  padding: 0;
}
li::marker {
  color: var(--gold);
}

/* Таблицы */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  border: 1px solid var(--border);
  background: #111318;
  color: var(--text);
}
th, td {
  padding: 0.75em 1em;
  border: 1px solid var(--border);
  text-align: left;
}
th {
  background: #16181e;
  color: var(--gold);
  font-weight: 600;
}
tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
tr:hover {
  background: rgba(212, 175, 55, 0.06);
}

/* Для мобильных — горизонтальный скролл таблиц */
@media (max-width: 768px) {
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  th, td {
    white-space: nowrap;
  }
}