/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #2d3447;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.nb7x-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.nb7x-header {
  background-color: #1d2158;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nb7x-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nb7x-logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.nb7x-nav {
  display: flex;
  gap: 30px;
}

.nb7x-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nb7x-nav-link:hover {
  color: #96a5d1;
}

.nb7x-nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #eaae16;
  transition: width 0.3s ease;
}

.nb7x-nav-link:hover::after {
  width: 100%;
}

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

.nb7x-online-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #96a5d1;
}

.nb7x-online-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.nb7x-header-buttons {
  display: flex;
  gap: 10px;
}

/* Button Styles */
.nb7x-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nb7x-btn-login {
  background-color: #96a5d1;
  color: #1d2158;
}

.nb7x-btn-login:hover {
  background-color: #7a8bc4;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(150, 165, 209, 0.3);
}

.nb7x-btn-signup {
  background-color: #eaae16;
  color: #1d2158;
}

.nb7x-btn-signup:hover {
  background-color: #d19914;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(234, 174, 22, 0.3);
}

.nb7x-btn-primary {
  background: linear-gradient(135deg, #eaae16, #d19914);
  color: #1d2158;
  font-size: 16px;
  padding: 15px 30px;
}

.nb7x-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(234, 174, 22, 0.4);
}

.nb7x-btn-secondary {
  background-color: transparent;
  color: #96a5d1;
  border: 2px solid #96a5d1;
  font-size: 16px;
  padding: 13px 30px;
}

.nb7x-btn-secondary:hover {
  background-color: #96a5d1;
  color: #1d2158;
  transform: translateY(-3px);
}

/* Mobile Menu */
.nb7x-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nb7x-burger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.nb7x-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nb7x-burger.active span:nth-child(2) {
  opacity: 0;
}

.nb7x-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nb7x-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #1d2158;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nb7x-mobile-menu.active {
  display: block;
}

.nb7x-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nb7x-mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nb7x-mobile-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.nb7x-btn-mobile {
  flex: 1;
  text-align: center;
}

/* Hero Section */
.nb7x-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nb7x-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.nb7x-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.nb7x-hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 33, 88, 0.8), rgba(45, 52, 71, 0.8));
}

.nb7x-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.nb7x-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #eaae16, #96a5d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.nb7x-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #96a5d1;
}

.nb7x-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.nb7x-online-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: #96a5d1;
}

/* Breadcrumbs */
.nb7x-breadcrumbs {
  background-color: rgba(29, 33, 88, 0.3);
  padding: 15px 0;
}

.nb7x-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.nb7x-breadcrumb-nav a {
  color: #96a5d1;
  text-decoration: none;
}

.nb7x-breadcrumb-nav a:hover {
  color: #eaae16;
}

.nb7x-breadcrumb-separator {
  color: #666;
}

/* Section Styles */
.nb7x-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
}

/* Bonuses Section */
.nb7x-bonuses {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(29, 33, 88, 0.1), rgba(45, 52, 71, 0.1));
}

.nb7x-bonuses-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.nb7x-bonus-card {
  background: linear-gradient(135deg, #1d2158, #2d3447);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 2px solid rgba(150, 165, 209, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nb7x-bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(234, 174, 22, 0.1), transparent);
  transition: left 0.5s ease;
}

.nb7x-bonus-card:hover::before {
  left: 100%;
}

.nb7x-bonus-card:hover {
  transform: translateY(-10px);
  border-color: #eaae16;
  box-shadow: 0 10px 30px rgba(234, 174, 22, 0.2);
}

.nb7x-bonus-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.nb7x-bonus-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.nb7x-bonus-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #eaae16;
  margin-bottom: 15px;
}

.nb7x-bonus-desc {
  color: #96a5d1;
  margin-bottom: 25px;
}

.nb7x-btn-bonus {
  background: linear-gradient(135deg, #eaae16, #d19914);
  color: #1d2158;
  width: 100%;
}

/* Games Section */
.nb7x-games {
  padding: 80px 0;
}

.nb7x-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.nb7x-game-card {
  background: linear-gradient(135deg, #2d3447, #1d2158);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(150, 165, 209, 0.2);
}

.nb7x-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(150, 165, 209, 0.2);
}

.nb7x-game-logo {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.nb7x-game-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.nb7x-game-provider {
  color: #96a5d1;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.nb7x-btn-game {
  background-color: #96a5d1;
  color: #1d2158;
  width: 100%;
}

/* Wheel Game */
.nb7x-wheel-game {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(29, 33, 88, 0.1), rgba(45, 52, 71, 0.1));
}

.nb7x-wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.nb7x-wheel-wrapper {
  position: relative;
}

.nb7x-wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #eaae16;
  z-index: 10;
}

.nb7x-wheel-controls {
  text-align: center;
}

.nb7x-btn-spin {
  background: linear-gradient(135deg, #eaae16, #d19914);
  color: #1d2158;
  font-size: 18px;
  padding: 15px 40px;
  margin-bottom: 15px;
}

.nb7x-wheel-desc {
  color: #96a5d1;
  font-size: 16px;
}

/* Modal */
.nb7x-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.nb7x-modal-content {
  background: linear-gradient(135deg, #1d2158, #2d3447);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  margin: 20px;
  border: 2px solid #eaae16;
}

.nb7x-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #eaae16;
  margin-bottom: 15px;
}

.nb7x-modal-text {
  color: #96a5d1;
  margin-bottom: 20px;
}

.nb7x-modal-prize {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

.nb7x-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* FAQ Section */
.nb7x-faq {
  padding: 80px 0;
}

.nb7x-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.nb7x-faq-item {
  background: linear-gradient(135deg, #1d2158, #2d3447);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(150, 165, 209, 0.2);
}

.nb7x-faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.nb7x-faq-question:hover {
  background-color: rgba(150, 165, 209, 0.1);
}

.nb7x-faq-icon {
  font-size: 1.5rem;
  color: #eaae16;
  transition: transform 0.3s ease;
}

.nb7x-faq-item.active .nb7x-faq-icon {
  transform: rotate(45deg);
}

.nb7x-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nb7x-faq-item.active .nb7x-faq-answer {
  max-height: 200px;
}

.nb7x-faq-answer div {
  padding: 0 20px 20px;
  color: #96a5d1;
  line-height: 1.6;
}

/* Author Section */
.nb7x-author {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(29, 33, 88, 0.1), rgba(45, 52, 71, 0.1));
}

.nb7x-author-card {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1d2158, #2d3447);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(150, 165, 209, 0.2);
}

.nb7x-author-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eaae16;
}

.nb7x-author-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.nb7x-author-title {
  color: #eaae16;
  font-weight: 600;
  margin-bottom: 15px;
}

.nb7x-author-bio {
  color: #96a5d1;
  line-height: 1.6;
  margin-bottom: 20px;
}

.nb7x-social-link {
  color: #96a5d1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nb7x-social-link:hover {
  color: #eaae16;
}

/* Footer */
.nb7x-footer {
  background-color: #1d2158;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.nb7x-footer-section {
  margin-bottom: 30px;
}

.nb7x-footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.nb7x-footer-desc {
  color: #96a5d1;
  line-height: 1.6;
  margin-bottom: 20px;
}

.nb7x-footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

.nb7x-footer-links a {
  color: #96a5d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nb7x-footer-links a:hover {
  color: #eaae16;
}

.nb7x-payment-methods img,
.nb7x-game-providers img {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nb7x-payment-methods img:hover,
.nb7x-game-providers img:hover {
  opacity: 1;
}

.nb7x-footer-bottom {
  border-top: 1px solid rgba(150, 165, 209, 0.2);
  padding-top: 30px;
  margin-top: 40px;
}

.nb7x-copyright {
  color: #96a5d1;
  font-size: 14px;
  margin: 0;
}

.nb7x-footer-legal {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.nb7x-footer-legal a {
  color: #96a5d1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nb7x-footer-legal a:hover {
  color: #eaae16;
}

/* Widget */
.nb7x-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1500;
  animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nb7x-widget-content {
  background: linear-gradient(135deg, #eaae16, #d19914);
  color: #1d2158;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 20px rgba(234, 174, 22, 0.3);
  position: relative;
}

.nb7x-widget-text strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
}

.nb7x-widget-text span {
  font-size: 14px;
}

.nb7x-widget-btn {
  background-color: #1d2158;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nb7x-widget-btn:hover {
  background-color: #2d3447;
  transform: scale(1.05);
}

.nb7x-widget-close {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #1d2158;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content Section */
.nb7x-content-section {
  padding: 60px 0;
}

.nb7x-content {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1d2158, #2d3447);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(150, 165, 209, 0.2);
}

.nb7x-content h1,
.nb7x-content h2,
.nb7x-content h3,
.nb7x-content h4,
.nb7x-content h5,
.nb7x-content h6 {
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.nb7x-content h2 {
  font-size: 1.8rem;
  color: #eaae16;
  border-bottom: 2px solid rgba(234, 174, 22, 0.3);
  padding-bottom: 10px;
}

.nb7x-content p {
  color: #96a5d1;
  margin-bottom: 20px;
  line-height: 1.7;
}

.nb7x-content ul,
.nb7x-content ol {
  color: #96a5d1;
  margin-bottom: 20px;
  padding-left: 30px;
}

.nb7x-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.nb7x-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background-color: rgba(29, 33, 88, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.nb7x-content th,
.nb7x-content td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(150, 165, 209, 0.2);
}

.nb7x-content th {
  background-color: #1d2158;
  color: #eaae16;
  font-weight: 600;
}

.nb7x-content td {
  color: #96a5d1;
}

.nb7x-content blockquote {
  border-left: 4px solid #eaae16;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #ffffff;
  background-color: rgba(234, 174, 22, 0.1);
  padding: 20px;
  border-radius: 0 8px 8px 0;
}

.nb7x-content a {
  color: #eaae16;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nb7x-content a:hover {
  color: #d19914;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nb7x-container {
    padding: 0 15px;
  }
}

@media (max-width: 992px) {
  .nb7x-hero-title {
    font-size: 2.5rem;
  }

  .nb7x-section-title {
    font-size: 2rem;
  }

  .nb7x-author-card {
    flex-direction: column;
    text-align: center;
  }

  .nb7x-footer-legal {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .nb7x-burger {
    display: flex;
  }

  .nb7x-nav {
    display: none;
  }

  .nb7x-hero-title {
    font-size: 2rem;
  }

  .nb7x-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nb7x-bonuses-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
  }

  .nb7x-bonus-card {
    min-width: 280px;
    scroll-snap-align: center;
  }

  .nb7x-games-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
  }

  .nb7x-game-card {
    min-width: 220px;
    scroll-snap-align: center;
  }

  .nb7x-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }

  .nb7x-widget-content {
    justify-content: space-between;
  }

  .nb7x-modal-content {
    margin: 10px;
    padding: 30px 20px;
  }

  .nb7x-modal-buttons {
    flex-direction: column;
  }

  .nb7x-content {
    padding: 25px;
  }

  .nb7x-content table {
    font-size: 14px;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  .nb7x-header-buttons .nb7x-btn-login {
    display: none;
  }

  .nb7x-hero-title {
    font-size: 1.8rem;
  }

  .nb7x-hero-subtitle {
    font-size: 1rem;
  }

  .nb7x-section-title {
    font-size: 1.8rem;
  }

  .nb7x-author-photo img {
    width: 120px;
    height: 120px;
  }

  .nb7x-footer-legal {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

@media (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: flex;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: flex;
  }
}

/* WordPress-like classes for obfuscation */
.wp-block-group {
  margin-bottom: 1.5em;
}

.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
}

.wp-block-column {
  flex: 1;
  margin-right: 2em;
}

.wp-block-button {
  margin-bottom: 1.5em;
}

.wp-element-caption {
  color: #666;
  font-size: 0.9em;
  margin-top: 0.5em;
}

/* Elementor-like classes */
.elementor-section {
  position: relative;
}

.elementor-container {
  max-width: 1200px;
  margin: 0 auto;
}

.elementor-widget {
  margin-bottom: 20px;
}

.elementor-heading-title {
  margin: 0;
}

/* Additional animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nb7x-bonus-card,
.nb7x-game-card,
.nb7x-faq-item {
  animation: fadeInUp 0.6s ease forwards;
}

.nb7x-bonus-card:nth-child(2) {
  animation-delay: 0.1s;
}

.nb7x-bonus-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* Scrollbar styling */
.nb7x-bonuses-slider::-webkit-scrollbar,
.nb7x-games-grid::-webkit-scrollbar {
  height: 8px;
}

.nb7x-bonuses-slider::-webkit-scrollbar-track,
.nb7x-games-grid::-webkit-scrollbar-track {
  background: rgba(150, 165, 209, 0.1);
  border-radius: 4px;
}

.nb7x-bonuses-slider::-webkit-scrollbar-thumb,
.nb7x-games-grid::-webkit-scrollbar-thumb {
  background: #eaae16;
  border-radius: 4px;
}

.nb7x-bonuses-slider::-webkit-scrollbar-thumb:hover,
.nb7x-games-grid::-webkit-scrollbar-thumb:hover {
  background: #d19914;
}
