/* ===== DUAL RANGE SLIDER STYLES ===== */
.dual-range-slider {
  position: relative;
  padding: 10px 0;
}

.dual-range-slider .relative {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 20px 0;
}

.rtp-range-input {
  position: absolute;
  width: 100%;
  height: 6px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  z-index: 2;
}

.rtp-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #FF2C2C;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.rtp-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 44, 44, 0.4);
}

.rtp-range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #FF2C2C;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.rtp-range-input::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 44, 44, 0.4);
}

.rtp-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  z-index: 1;
}

.rtp-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF2C2C, #FF6B6B);
  border-radius: 3px;
  z-index: 1;
  transition: all 0.2s ease;
}

/* Ensure the second input is above the first */
.rtp-range-input:last-of-type {
  z-index: 3;
}

/* Hide the default track */
.rtp-range-input::-webkit-slider-track {
  background: transparent;
}

.rtp-range-input::-moz-range-track {
  background: transparent;
  border: none;
}

:root {
  --bg-primary: #171719;
  --bg-secondary: #222224;
  --bg-tertiary: #2D2D2D;
  --bg-dark: #111113;
  --bg-gray: #393939;

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-tertiary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.5);

  --brand-red: #FF2C2C;
  --brand-red-hover: #CC0000;
  --brand-red-opacity: rgba(255, 44, 44, 0.3);

  --border-primary: rgba(255, 255, 255, 0.1);
  --border-secondary: rgba(255, 255, 255, 0.2);
  --border-tertiary: rgba(255, 255, 255, 0.3);

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  user-select: none;
}

[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --bg-dark: #212529;
  --bg-gray: #6c757d;

  --text-primary: #212529;
  --text-secondary: rgba(33, 37, 41, 0.8);
  --text-tertiary: rgba(33, 37, 41, 0.6);
  --text-muted: rgba(33, 37, 41, 0.5);

  --brand-red: #dc3545;
  --brand-red-hover: #bb2d3b;
  --brand-red-opacity: rgba(220, 53, 69, 0.2);

  --border-primary: rgba(33, 37, 41, 0.1);
  --border-secondary: rgba(33, 37, 41, 0.2);
  --border-tertiary: rgba(33, 37, 41, 0.3);


  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.25);
}

/* light theme */
[data-theme="light"] .mobile-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-primary);
}

[data-theme="light"] .mobile-dropdown-content {
  background: var(--bg-primary);
  border: 2px solid var(--border-primary);
}

[data-theme="light"] .mobile-nav-link {
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-primary);
}

[data-theme="light"] .mobile-nav-link:hover,
[data-theme="light"] .mobile-nav-link.active {
  color: var(--brand-red);
}

[data-theme="light"] .mobile-dropdown-header {
  border-bottom: 1px solid var(--border-primary);
}

[data-theme="light"] .mobile-nav-actions {
  border-top: 1px solid var(--border-primary);
}

[data-theme="light"] .mobile-theme-toggle {
  border-top: 1px solid var(--border-primary);
}


[data-theme="light"] .bg-brand-tags-bg,
[data-theme="light"] .bg-white {
  background-color: var(--bg-primary);
}

[data-theme="light"] .betting-content p{
  color: #ffffff !important;
}

[data-theme="light"] .bg-white svg {
  color: var(--text-primary);
}

[data-theme="light"] .bg-white svg path {
  fill: var(--text-primary);
}


[data-theme="light"] .games-item-wrapper {
  background-color: rgb(248 249 250 / var(--tw-bg-opacity, 1))
}

.games-item-wrapper:hover {
  background-color: rgb(65 61 61);
}

[data-theme="light"] .bg-white\/50 {
  background-color: rgb(0 0 0 / 50%)
}

[data-theme="light"] .bg-\[\#202022\] {
  background-color: var(--bg-primary);
}
[data-theme="light"] .divider {
  background-color: var(--bg-gray);
}

[data-theme="light"] .light-theme-fix {
  display: none;
}

[data-theme="light"] .block6_rating_item {
  background-color: rgb(248 249 250 / var(--tw-bg-opacity, 1))
}

[data-theme="light"] .search-suggestion-active {
  background-color: rgb(81 76 76 / 10%) !important;
}

[data-theme="light"] .nav-links .page-numbers {
  background-color: rgb(248 249 250 / var(--tw-bg-opacity, 1));
  color: var(--text-primary);
}

[data-theme="light"] .article-content p,
[data-theme="light"] .comment-select,
[data-theme="light"] .comment-select:focus {
  color: var(--text-primary);
}

[data-theme="light"] .comments-svg-colors svg path {
  fill: var(--text-primary);
}

[data-theme="light"] .comments-svg-colors .fix-color-svg path {
  fill: none !important;
  stroke: var(--text-primary);
}

[data-theme="light"] .fix-color-light-theme {
  color: #ffffff;
}

[data-theme="light"] [contenteditable="true"]:empty:before {
  color: var(--text-muted);
}

[data-theme="light"] .placeholder-white\/50::placeholder {
  color: var(--text-muted);
}

[data-theme="light"] .fix-none-fill-svg svg path {
  fill: none !important;
}

[data-theme="light"] .mobile-search-input {
  background-color: var(--bg-dark);
  color: #ffffff;
}

[data-theme="light"] .mobile-search-input:focus {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

[data-theme="light"] .mobile-search-input:focus::placeholder {
  color: var(--text-primary);
}

[data-theme="light"] .mobile-search-input:focus+.mobile-search-button svg path {
  stroke: var(--text-primary);
}

[data-theme="light"] .block2_item{
  background-color: rgb(248 249 250 / var(--tw-bg-opacity, 1))
}

.wpcf7-form-control{
  background-color: var(--bg-primary);
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--border-primary);
}
[data-theme="light"] .wpcf7-form-control{
  background-color: var(--bg-gray);
  color: var(--text-primary);
}

/* ===== CUSTOM UTILITY CLASSES ===== */
/*  Tailwind */

/* Backgrounds */
.bg-custom-primary {
  background-color: var(--bg-primary) !important;
}

.bg-custom-secondary {
  background-color: var(--bg-secondary) !important;
}

.bg-custom-tertiary {
  background-color: var(--bg-tertiary) !important;
}

.bg-custom-dark {
  background-color: var(--bg-dark) !important;
}

.bg-custom-gray {
  background-color: var(--bg-gray) !important;
}

/* Text Colors */
.text-custom-primary {
  color: var(--text-primary) !important;
}

.text-custom-secondary {
  color: var(--text-secondary) !important;
}

.text-custom-tertiary {
  color: var(--text-tertiary) !important;
}

.text-custom-muted {
  color: var(--text-muted) !important;
}

/* Brand Colors */
.text-custom-red {
  color: var(--brand-red) !important;
}

.bg-custom-red {
  background-color: var(--brand-red) !important;
}

.border-custom-red {
  border-color: var(--brand-red) !important;
}

/* Borders */
.border-custom-primary {
  border-color: var(--border-primary) !important;
}

.border-custom-secondary {
  border-color: var(--border-secondary) !important;
}

.border-custom-tertiary {
  border-color: var(--border-tertiary) !important;
}

.mobile-dropdown {
  opacity: 0;
  display: none;
  visibility: hidden;
  transition: all 0.3s ease;
}



















/* Header Mobile Styles */
@media (max-width: 768px) {
  .mobile-header {
    padding: 24px 20px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-header-scrollable {
    will-change: transform;
  }

  .mobile-header-hidden {
    transform: translateY(-100%);
  }

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

  .mobile-nav {
    display: flex !important;
  }

  .mobile-logo-container {
    display: flex;
    align-items: center;
  }

  .mobile-logo {
    height: 24px;
    width: auto;
    filter: brightness(1.1) contrast(1.2);
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .mobile-action-button {
    width: 44px;
    height: 44px;
    background: var(--brand-red-opacity);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .mobile-action-button:hover {
    background: var(--brand-red);
    transform: scale(1.05);
  }

  .mobile-action-button svg {
    width: 20px;
    height: 20px;
    color: var(--brand-red);
    transition: color 0.3s ease;
  }

  .mobile-action-button:hover svg {
    color: white;
  }



  .mobile-menu-button {
    background: transparent;
    border: 1px solid var(--brand-red-opacity);

  }

  .mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 24px 0px 20px 0px;
  }

  .max-md\:text-xs.text-base {
    font-size: 0.625rem !important;
  }

  .mobile-close-button {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
  }

  .mobile-close-button:hover {
    background: var(--brand-red-opacity);
    border-color: var(--brand-red);
  }

  .mobile-close-button svg {
    width: 20px;
    height: 20px;
  }

  .mobile-nav-actions {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-nav-button {
    display: block;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .mobile-nav-button-outline {
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
    background: transparent;
  }

  .mobile-nav-button-outline:hover {
    background: var(--brand-red);
    color: white;
  }

  .mobile-nav-button-primary {
    background: var(--brand-red);
    color: white;
    border: 1px solid var(--brand-red);
  }

  .mobile-nav-button-primary:hover {
    background: var(--brand-red-hover);
    border-color: var(--brand-red-hover);
  }

  .mobile-theme-toggle {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-primary);
  }


  .mobile-theme-button:hover {
    background: var(--bg-tertiary);
  }

  .mobile-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
  }

  .bg-profile-cover {
    background-position-y: var(--mobile-bg-pos-y, -611.06px) !important;
  }

  .mobile-dropdown.active {
    opacity: 1;
    visibility: visible;
    display: block
  }



  .mobile-nav-links {
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
  }

  .mobile-nav-links .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-links .mobile-menu-item {
    position: relative;
    font-family: 'Furore', sans-serif;

  }

  .mobile-nav-links .mobile-menu-item.has-submenu .mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav-link,
  .mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .mobile-nav-link:last-child,
  .mobile-menu-link:last-child {
    border-bottom: none;
  }

  .mobile-nav-link:hover,
  .mobile-menu-link:hover {
    color: var(--brand-red);
  }

  .mobile-nav-link.active,
  .mobile-menu-link.active {
    color: var(--brand-red);
    font-weight: 600;
  }

  .mobile-menu-item.active .mobile-nav-link {
    color: var(--brand-red);
  }

  .mobile-menu-item.active .mobile-nav-link .text-brand-red {
    color: var(--brand-red);
  }


  .mobile-menu-item.active .mobile-nav-link {
    color: var(--brand-red);
    font-weight: 600;
  }

  .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu-item {
    position: relative;
  }

  .mobile-menu-item.has-submenu .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-submenu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
  }

  .mobile-submenu-toggle:hover {
    color: var(--brand-red);
    background: rgba(255, 44, 44, 0.2);
    transform: scale(1.05);
  }

  .mobile-submenu-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
    background: rgba(255, 44, 44, 0.2);
    color: var(--brand-red);
  }

  .mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-submenu.active {
    max-height: 500px;
    border-radius: 11px;
  }

  .mobile-submenu .mobile-menu-link {
    padding: 16px 24px 16px 40px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
  }

  .mobile-submenu .mobile-menu-link:last-child {
    border-bottom: none;
  }

  .mobile-submenu .mobile-menu-link:hover {
    background: rgba(255, 44, 44, 0.05);
    transform: translateX(8px);
  }

  .mobile-submenu .mobile-menu-link.active {
    color: var(--brand-red);
    font-weight: 600;
  }

  .mobile-submenu .mobile-menu-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--brand-red);
  }

  .mobile-steam-button {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-primary);
  }

  .mobile-steam-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 44, 44, 0.1), rgba(255, 44, 44, 0.05));
    border: 1px solid rgba(255, 44, 44, 0.3);
    border-radius: 12px;
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .mobile-steam-link:hover {
    background: linear-gradient(135deg, rgba(255, 44, 44, 0.2), rgba(255, 44, 44, 0.1));
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 44, 44, 0.2);
  }

  .mobile-steam-link svg {
    width: 20px;
    height: 20px;
  }

  .mobile-menu-link .ml-1 {
    margin-left: 8px;
  }

  .mobile-menu-link .text-brand-red {
    color: var(--brand-red);
  }

  .mobile-menu-link .text-xs {
    font-size: 12px;
  }

  .mobile-dropdown {
    display: none;
  }

  .mobile-dropdown.active {
    display: block;
  }

  .mobile-dropdown-content {
    background: var(--bg-primary);
    margin: 16px 16px 16px 16px;
    border-radius: 16px;
    padding: 16px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border: 2px solid var(--border-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }


  .mobile-close-button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-close-button:hover {
    background: rgba(255, 44, 44, 0.2);
    transform: scale(1.05);
  }

  .mobile-search-container {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-primary);
    background: rgba(255, 255, 255, 0.02);
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
  }

  .mobile-search-form {
    position: relative;
  }

  .mobile-search-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding-right: 50px;
  }

  .mobile-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 44, 44, 0.6);
  }

  .mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .mobile-search-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-search-button:hover {
    background: #e60000;
    transform: translateY(-50%) scale(1.05);
  }

  .mobile-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    margin-top: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .mobile-search-suggestions .search-suggestion-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-primary);
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .mobile-search-suggestions .search-suggestion-item:last-child {
    border-bottom: none;
  }

  .mobile-search-suggestions .search-suggestion-item:hover,
  .mobile-search-suggestions .search-suggestion-item.search-suggestion-active {
    background: rgba(255, 44, 44, 0.1);
  }

  .mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 11px;
  }

  .mobile-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--brand-red);
  }

  .mobile-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-user-details {
    flex: 1;
  }

  .mobile-user-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
  }

  .mobile-user-email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
  }

  .mobile-user-menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
  }

  .mobile-user-menu-toggle:hover {
    background: rgba(255, 44, 44, 0.2);
    color: var(--brand-red);
    transform: scale(1.05);
  }

  .mobile-user-menu-toggle svg {
    width: 20px;
    height: 20px;
  }

  .mobile-nav-actions {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
  }


  .mobile-nav-button {
    flex: 1;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Furore', sans-serif;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
  }

  .mobile-nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .mobile-nav-button:hover::before {
    left: 100%;
  }

  .mobile-nav-button-outline {
    border: 2px solid var(--border-primary);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
  }

  .mobile-nav-button-outline:hover {
    background: rgba(255, 44, 44, 0.1);
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 44, 44, 0.2);
  }

  .mobile-nav-button-primary {
    background: linear-gradient(135deg, var(--brand-red), #e60000);
    color: white;
    border: 2px solid var(--brand-red);
    box-shadow: 0 4px 15px rgba(255, 44, 44, 0.3);
  }

  .mobile-nav-button-primary:hover {
    background: linear-gradient(135deg, #e60000, #cc0000);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 44, 44, 0.4);
  }

  .mobile-user-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
  }

  .mobile-user-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex !important;
  }

  .mobile-user-modal-content {
    background: var(--bg-primary);
    width: 100%;
    margin: 50% 20px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    overflow: hidden;
  }

  .mobile-user-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 32px;
    padding-bottom: 0px;
  }

  .mobile-user-modal-header h3 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

  .mobile-user-modal-close {
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding-bottom: 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-user-modal-close:hover {
    background: rgba(255, 44, 44, 0.2);
    color: var(--brand-red);
    transform: scale(1.05);
  }

  .mobile-user-modal-body {
    padding: 20px 0;
    padding-top: 10px;
  }

  .mobile-user-modal-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
  }

  .mobile-user-modal-link:hover {
    background: rgba(255, 44, 44, 0.1);
    color: var(--brand-red);
    transform: translateX(8px);
  }

  .mobile-user-modal-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .mobile-menu-link .ml-1 {
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
  }

  .mobile-menu-link .text-brand-red {
    color: var(--brand-red) !important;
  }

  .mobile-menu-link .text-xs {
    font-size: 12px;
  }

  .mobile-logo {
    height: 29.87px;
    width: 99px;
  }

  .mobile-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .mobile-text-header {
    font-size: 18px !important;
    line-height: normal !important;
  }

  .text-mobile-16.text-3\.5xl {
    font-size: 16px !important;
    line-height: normal !important;
  }

  .mobile-slider-dots {
    display: none !important;
  }

  .mobile-text-sm {
    font-size: 1.25rem !important;
  }

  .mobile-text-base {
    font-size: 16px !important;
  }

  .mobile-text-lg {
    font-size: 18px !important;
  }

  .mobile-text-xl {
    font-size: 20px !important;
  }

  .fix-width.btn-outline {
    max-width: 100% !important;
  }

  .mobile-text-2xl {
    font-size: 24px !important;
  }

  .mobile-svg-icon-header {
    width: 20px;
    height: 20px;
  }

  .mobile-svg-icon-mini {
    width: 16px;
    height: 16px;
  }

  .mobile-svg-icon-max-mini {
    width: 14px;
    height: 14px;
  }

  .text-mini.text-sm {
    font-size: 11px !important;
    line-height: 13px !important;
  }

  .meta-single-slider {
    left: 16px !important;
    right: 16px !important;
    height: 48px !important;
    width: 318px !important;
  }

  /* Мобильные отступы */
  .mobile-mt-4 {
    margin-top: 16px !important;
  }

  .mobile-mb-4 {
    margin-bottom: 16px !important;
  }

  .mobile-mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .mobile-p-4 {
    padding: 16px !important;
  }

  /* Скрыть элементы на мобильных */
  .mobile-hidden {
    display: none !important;
  }

}

@media (min-width: 1280px) {
  .xl\:hidden {
      display: none;
  }
}





























/* Показать только на десктопе */
@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }

  .mobile-nav {
    display: none !important;
  }

  .desktop-nav {
    display: flex !important;
  }
}


/* ===== RESPONSIVE UTILITIES ===== */
/* Адаптивные утилиты */

/* Скрыть элементы на определенных размерах экрана */
@media (max-width: 640px) {
  .sm-hidden {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .md-hidden {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .lg-hidden {
    display: none !important;
  }
}

/* Показать элементы только на определенных размерах */
@media (min-width: 641px) {
  .sm-only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .md-only {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .lg-only {
    display: none !important;
  }
}

/* Navigation Widget Mobile Adjustments */
@media (max-width: 768px) {
  .nav-widget {
    bottom: 15px !important;
    right: 15px !important;
  }

  .nav-widget-toggle {
    width: 50px !important;
    height: 50px !important;
    font-size: 18px !important;
  }

  .btn-outline {
    max-height: 40px !important;
    height: 40px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    display: flex;
    max-width: 92px !important;
    justify-content: center;
    align-items: center;
    font-size: 12px !important;
  }

  .max-md\:hidden.btn-outline {
    display: none !important;
  }

  .nav-widget-menu {
    min-width: 250px !important;
    max-height: 60vh !important;
    bottom: 60px !important;
  }
}

/* Slider Mobile Adjustments */
@media (max-width: 768px) {


  .slider-meta {
    padding: 12px !important;
    font-size: 14px !important;
  }
}

#mobile-user-modal {
  visibility: hidden;
  opacity: 0;
  display: none;
}

/* ===== PRINT STYLES ===== */
/* Стили для печати */
@media print {

  .mobile-only,
  .nav-widget,
  .mobile-menu-button {
    display: none !important;
  }
}

.btn-rating.btn-active {
  background-color: #FF2C2C !important;
  color: white !important;
  border-color: #FF2C2C !important;
}

/* Анимации для лоадера */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.4;
  }
}

.loader-spin {
  animation: spin 1s linear infinite;
}

.loader-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.loader-bounce {
  animation: bounce 1.4s infinite ease-in-out both;
}

.loader-bounce-delay-1 {
  animation-delay: -0.32s;
}

.loader-bounce-delay-2 {
  animation-delay: -0.16s;
}

.loader-bounce-delay-3 {
  animation-delay: 0s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* Лоадер для слайдера */
.category-loader-spin {
  animation: spin 1s linear infinite;
}

/* Улучшенная анимация для точек в слайдере */
.category-loader .loader-bounce {
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
}

.category-loader .loader-bounce-delay-1 {
  animation-delay: 0ms;
}

.category-loader .loader-bounce-delay-2 {
  animation-delay: 200ms;
}

.category-loader .loader-bounce-delay-3 {
  animation-delay: 400ms;
}

/* Force show user avatar in left sidebar on all pages */
#user-avatar-initials,
#user-avatar-image {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Single post content styling */
.article-content p .underline {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* Single post content typography */
.article-content h2 {
  font-size: 1.875rem;
  /* text-3.5xl */
  margin-bottom: 1.5rem;
  font-weight: bold;
  line-height: 1.1;
  font-family: var(--font-primary);
}

.article-content h3 {
  font-size: 1.5rem;
  /* text-2xl */
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-primary);
}

.article-content p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: normal;
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.article-content a {
  text-decoration: underline;
}

/* Mobile responsive content */
@media (max-width: 768px) {
  .article-content h2 {
    font-size: 1.25rem;
    /* text-mobile-2xs */
    margin-bottom: 0.5rem;
  }

  .article-content h3 {
    font-size: 1.25rem;
    /* text-mobile-2xs */
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
  }

  .article-content p {
    font-size: 0.875rem;
    /* text-mobile-base */
    line-height: 1.8;
  }
}

.max-w-\[881px\] {
  max-width: 881px;
}

.casino-filter-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 44 44 / var(--tw-border-opacity, 1));
  border-radius: 4px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media not all and (min-width: 768px) {
  .casino-filter-checkbox {
    height: 16px;
    width: 16px;
    border-radius: 6px;
  }
}

.casino-filter-checkbox:checked {
  --tw-border-opacity: 1;
  border-color: rgb(255 44 44 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 44 44 / var(--tw-bg-opacity, 1));
}

.casino-filter-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 8.5L7 12.5L13 3.5" stroke="%23171719" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
  background-size: contain;
}

@media not all and (min-width: 768px) {
  .casino-filter-checkbox:checked::after {
    height: 12px;
    width: 12px;
  }
}

.casino-filter-checkbox:not(:checked) {
  background: transparent;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 44 44 / var(--tw-border-opacity, 1));
}

.casino-filter-checkbox:hover {
  border-color: #FF2C2C;
}

.casino-filter-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 44, 44, 0.3);
}


.block5 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.block5_item {
  width: 29%;
}

.block5_item-title {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.block5_item-desc {
  color: var(--text-secondary);
}

.block5_item img {
  margin-bottom: 20px;
}

.block6_rating_item {
  background: rgb(23 23 25 / var(--tw-bg-opacity, 1));
  padding: 50px 50px;
  margin-bottom: 20px;
  border-radius: 16px;
}

.block6_logo_section {
  display: flex;
  align-items: flex-start;
}

.block6_logo_section>img {
  margin-right: 30px;
  height: auto !important;
}

.block6_title_section a {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 28px;
  color: var(--text-primary);
}

.block6_desc,
.block6_parameter_title {
  color: var(--text-secondary);
}

.block6_parameter_section {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.block6_parameter_section {
  flex-direction: column;
}

.block6_parameter_item {
  width: 100%;
  display: flex;
}

.block6_parameter_value {
  margin-left: 28px;
}

.block6_parameter_title {
  display: flex;
  align-items: center;
}

.block6_parameter_title img {
  width: 22px;
  margin-right: 7px;
  height: auto !important;
  margin-top: 0px !important;
  max-width: auto !important;
}

.block6_parameter_item {
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .block6_logo_section {
    flex-direction: column;
  }

  .block6_parameter_value {
    margin-left: 0px;
  }

  .block6_parameter_item {
    margin-bottom: 20px;
    flex-direction: column;
  }
}

.block6_cta {
  margin-top: 30px;
}

.block6_cta a,
.bet-now-btn {
  background: var(--brand-red) !important;
  padding: 12px 70px;
  border-radius: 32px;
  box-shadow: 0px 0px 20px var(--bg-primary) !important;
  text-align: center;
  margin: 0 auto;
  display: block;
  width: max-content;
}

th,tr,td,
.list_style1 li::after,
.expert-review-faq--color-red-1.expert-review-faq--style-style-4 .expert-review-faq-item__question,
.expert-review-faq--color-blue-1.expert-review-faq--style-style-4 .expert-review-faq-item__question {
  background: var(--brand-red) !important;
}

.list_style2 li::before,
.list_style1 li::before,
.betting-title {
  color: var(--brand-red) !important;
}

.expert-review-faq--color-red-1.expert-review-faq--style-style-4 .expert-review-faq-item__question,
.expert-review-faq--color-blue-1.expert-review-faq--style-style-4 .expert-review-faq-item__question{
  color: var(--text-primary) !important;
}

.betting-title {
  border-bottom: 2px solid var(--brand-red) !important;
}

@media (min-width: 1024px) {
  .lg\:max-w-\[265px\] {
    max-width: 265px;
  }
}

@media not all and (min-width: 768px) {
  .max-md\:text-end {
    text-align: end;
  }
}

@media not all and (min-width: 768px) {
  .max-md\:w-\[173px\] {
    width: 173px;
  }
}



/* Pagination Styles */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;

}

.nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  background: var(--bg-primary);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links .page-numbers:hover {
  background: var(--bg-gray);
  border-color: var(--border-primary);
  color: #ffffff;
}

.nav-links .page-numbers.current {
  background: var(--brand-red);
  color: #ffffff;
}

.nav-links .page-numbers.dots {
  background: transparent;
  border: none;
  color: #666;
  cursor: default;
}

.nav-links .page-numbers.dots:hover {
  background: transparent;
  color: #666;
}

.nav-links .prev,
.nav-links .next {
  background: var(--bg-primary);
  color: #ffffff;
  font-weight: 500;
}

.nav-links .prev:hover,
.nav-links .next:hover {
  background: var(--bg-primary);
  border-color: var(--border-primary);
  color: #ffffff;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    gap: 4px;
    margin-top: 24px;
  }

  .nav-links .page-numbers {
    min-width: 32px;
    height: 32px;
    padding: 6px 8px;
    font-size: 12px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  body {
    padding: 0px !important;
  }

  .nav-links {
    gap: 4px;
    margin-top: 24px;
    justify-content: center;
  }

  .nav-links .page-numbers {
    min-width: 32px;
    height: 32px;
    padding: 6px 8px;
    font-size: 12px;
  }

  .nav-links .prev,
  .nav-links .next {
    min-width: 32px;
    height: 32px;
    padding: 6px 8px;
    font-size: 12px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .nav-links {
    gap: 2px;
    margin-top: 20px;
  }

  .nav-links .page-numbers {
    min-width: 28px;
    height: 28px;
    padding: 4px 6px;
    font-size: 11px;
  }

  .nav-links .prev,
  .nav-links .next {
    min-width: 28px;
    height: 28px;
    padding: 4px 6px;
    font-size: 11px;
  }
}

.h-\[33px\] {
  height: 33px;
}

.max-h-\[33px\] {
  max-height: 33px;
}

.search-suggestion-active {
  background-color: rgba(255, 255, 255, 0.1) !important;
}


/* Dropdown menu styles */
.group:hover .group-hover\:opacity-100 {
  opacity: 1 !important;
}

.group:hover .group-hover\:visible {
  visibility: visible !important;
}

/* Ensure dropdown positioning */
.relative.group {
  position: relative;
}

.relative.group ul {
  position: absolute;
  top: 30px;
  left: 0;
  background-color: var(--bg-primary);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 50;
  min-width: 220px;
  padding: 12px 0;
}

.relative.group:hover ul {
  opacity: 1;
  visibility: visible;
}

.relative.group ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  text-decoration: none;
  font-family: 'Furore', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  transition: all 0.2s ease;
  position: relative;
}

.relative.group ul li a span {
  flex-shrink: 0;
  margin-left: 8px;
}

.relative.group ul li a:hover {
  transform: translateX(4px);
}

.relative.group ul li:first-child a {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.relative.group ul li:last-child a {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Active states for navigation */
.nav-link-active,
.mobile-menu-link.active {
  color: #FF2C2C !important;
}

/* Active states for dropdown items */
.relative.group ul li a.active-dropdown-item {
  color: #FF2C2C !important;
  font-weight: 500;
  position: relative;
  opacity: 1 !important;
}

.relative.group ul li a.active-dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background-color: #FF2C2C;
  border-radius: 0 2px 2px 0;
}

.max-w-\[267px\] {
  max-width: 267px;
}


.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#search-suggestions .group:hover .opacity-0 {
  opacity: 1 !important;
}

.z-999 {
  z-index: 999;
}






.max-w-\[110px\] {
  max-width: 110px;
}

/* Voting component styles */
.voting-radio {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #FF2C2C;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.voting-radio:checked {
  background: #FF2C2C;
}

.voting-radio:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.voting-radio:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.voting-label.text-brand-red {
  color: #FF2C2C !important;
  font-weight: bold;
}

/* Voting loader styles */
.voting-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  z-index: 10;
}

.voting-loader.hidden {
  display: none;
}

/* Voting single component styles */
.voting-single-radio {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #FF2C2C;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.voting-single-radio:checked {
  background: #FF2C2C;
}

.voting-single-radio:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.voting-single-radio:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.voting-single-label.text-brand-red {
  color: #FF2C2C !important;
  font-weight: bold;
}

/* Voting single loader styles */
.voting-single-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  z-index: 10;
}

.voting-single-loader.hidden {
  display: none;
}

@media (max-width: 1410px) {
  body {
    padding: 20px;
  }

  .desktop-only {
    display: none;
  }

}


.games-item {
  padding: 4.2px;
}

.z-9999 {
  z-index: 100001;
}

.max-w-\[38px\] {
  max-width: 38px;
}

.max-h-\[38px\] {
  max-height: 38px;
}

.max-w-\[159px\] {
  max-width: 159px;
}

@media not all and (min-width: 768px) {
  .max-md\:max-w-\[117\.6px\] {
    max-width: 117.6px;
  }
}


div#ez-toc-container {
  background: rgb(97 20 20 / 50%) !important;
  border: 0px !important;
  border-radius: 11px !important;
  margin-top: 10px !important;
}

#ez-toc-container a {
  color: #fff !important;
}

#ez-toc-container .ez-toc-title {
  color: #fff !important;
}

#ez-toc-container ul li {
  color: #fff !important;
}

#ez-toc-container ul li a {
  color: #fff !important;
}

.expert-review-faq--color-blue-2.expert-review-faq--style-style-4 .expert-review-faq-item__question,
.expert-review-faq--color-blue-1.expert-review-faq--style-style-4 .expert-review-faq-item__question,
.expert-review-faq--color-blue-1.expert-review-faq--style-simple-1 .expert-review-faq-item:after,
.expert-review-faq--color-blue-1.expert-review-faq--style-simple-1 .expert-review-faq-item:before {
  background-color: rgb(255 44 44 / var(--tw-bg-opacity, 1)) !important;
}



.w-\[360px\] {
  width: 360px;
}
.rounded-l-2xl {
  border-top-left-radius: 1.5rem /* 24px */;
  border-bottom-left-radius: 1.5rem /* 24px */;
}

.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.max-w-\[150px\] {
  max-width: 150px;
}


@media not all and (min-width: 768px) {
  .max-md\:h-\[25px\] {
      height: 25px;
  }
}


.block1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
}

.block1_item {
  width: 49%;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 16px;
  background: var(--bg-dark);
}

.block1_title {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.block1_desc {
  color: #989898;
}

.block2 {
  margin-top: 40px;
  margin-bottom: 40px;
}



.list_style2 li {
  word-wrap: break-word;
}

.block2_item:before {
  content: url('icons/arrow-right.png');
  position: absolute;
  z-index: 100000;
  left: 66px;
  top: 28px;
}



.list_style1 li {
  margin-bottom: 10px;
}

.block2_desc ol, .block2_desc ul {
  margin-left: 18px;
}

.block2_desc li {
  color: #989898;
}



.block2 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.block2_item {
  position: relative;
  background: var(--bg-dark);
  padding: 42px 66px 51px 140px;
  margin-bottom: 20px;
  border-radius: 16px;
  word-wrap: break-word;
}


.block2_item:before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="66" height="44" fill="none"><path d="M12 22h42M45 14l13 8-13 8" stroke="%23FF2C2C" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  position: absolute;
  z-index: 100000;
  left: 66px;
  top: 30px;
}

.block2_desc ol, .block2_desc ul {
  margin-left: 18px;
}

.block2_desc li {
  color: #989898;
}

.betting-block, .payment-methods{
  background: var(--bg-dark) !important;
}
.betting-content p{
  color: var(--text-primary) !important;
}

/* .py-2\.5 {
  padding-top: 0.625rem /* 10px ;
  padding-bottom: 0.625rem /* 10px ;
}

.bg-\[\#202022\] {
  --tw-bg-opacity: 1;
  background-color: rgb(32 32 34 / var(--tw-bg-opacity, 1)) /* #202022 ;
}
.max-w-\[169px\] {
  max-width: 169px;
}

.w-\[45px\] {
  width: 45px;
}

.h-\[2px\] {
  height: 2px;
}

.h-\[36px\] {
  height: 36px;
}

.w-\[30px\] {
  width: 30px;
}

.h-\[1px\] {
  height: 1px;
}
.bg-white\/15 {
  background-color: rgb(255 255 255 / 0.15);
}


@media not all and (min-width: 768px) {
  .max-md\:-ml-4 {
      margin-left: -1rem /* -16px ;
  }
}

.-ml-6 {
  margin-left: -1.5rem /* -24px ;
}


.pt-6 {
  padding-top: 1.5rem /* 24px ;
}


.pb-16 {
  padding-bottom: 4rem /* 64px ;
}

.-mt-2 {
  margin-top: -0.5rem /* -8px ;
}

.w-7 {
  width: 1.75rem /* 28px ;
}

.px-\[55\.5px\] {
  padding-left: 55.5px;
  padding-right: 55.5px;
}


.w-\[192px\] {
  width: 192px;
}

.h-\[241px\] {
  height: 241px;
} */


.max-h-webkit-fill-available{
  max-height: -webkit-fill-available;
}

@media not all and (min-width: 768px) {
  .max-md\:w-\[18px\] {
      width: 18px;
  }
}

@media not all and (min-width: 768px) {
  .max-md\:w-\[128px\] {
      width: 128px;
  }
}

@media not all and (min-width: 768px) {
  .max-md\:h-\[45px\] {
      height: 45px;
  }
}


@media not all and (min-width: 768px) {
  .max-md\:rounded-\[12px\] {
      border-radius: 12px;
  }
}


@media not all and (min-width: 768px) {
  .max-md\:pb-\[38px\] {
      padding-bottom: 38px;
  }
}


@media not all and (min-width: 768px) {
  .max-md\:mb-10 {
      margin-bottom: 2.5rem /* 40px */;
  }
}

@media not all and (min-width: 768px) {
  .max-md\:h-\[200px\] {
      height: 200px;
  }
}


@media not all and (min-width: 768px) {
  .max-md\:space-y-5 > :not([hidden]) ~ :not([hidden]) {
      --tw-space-y-reverse: 0;
      margin-top: calc(1.25rem /* 20px */ * calc(1 - var(--tw-space-y-reverse)));
      margin-bottom: calc(1.25rem /* 20px */ * var(--tw-space-y-reverse));
  }
}

.text-right {
  text-align: right;
}



.expert-review-likes {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 15px -5px -8px;
}

.expert-review-likes__button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.expert-review-likes__button:hover {
  background: rgba(255, 44, 44, 0.15);
  border-color: rgba(255, 44, 44, 0.6);
  color: #FF2C2C;
  transform: translateY(-1px);
}

.expert-review-likes__button:active {
  transform: translateY(0);
}

.expert-review-likes__button--like:hover {
  color: #FF2C2C;
}

.expert-review-likes__button--dislike:hover {
  color: #FF2C2C;
}

.expert-review-likes__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expert-review-likes__icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.expert-review-likes__button:hover .expert-review-likes__icon svg {
  transform: scale(1.1);
}

.expert-review-likes__label {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.expert-review-likes__count {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-left: 4px;
}

.expert-review-likes__button:hover .expert-review-likes__count {
  color: #FF2C2C;
}

@media (max-width: 768px) {
  .expert-review-likes {
      gap: 2px;
  }
  
  .expert-review-likes__button {
      padding: 8px 16px;
      font-size: 13px;
      gap: 6px;
  }
  
 .expert-review-likes__icon svg {
      width: 18px;
      height: 18px;
  }
  
  .expert-review-likes__label {
      font-size: 13px;
  }
  
  .expert-review-likes__count {
      font-size: 13px;
  }
}


@media not all and (min-width: 1024px) {
  .max-lg\:block {
      display: block;
  }
}

@media (min-width: 1024px) {
  .lg\:justify-between {
      justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .lg\:flex-row {
      flex-direction: row;
  }
}
@media (max-width: 768px) {
    table {
        display: block !important;
        overflow-x: auto !important;
        width: 100% !important;
    }
}