/* 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;
}

.nb-wrapper-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* 3 колонки, проміжки між картками */
.nb-games-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

/* гарантуємо лише 2 ряди (6 карток) */
.nb-games-grid > .nb-game-card:nth-child(n+7){
  display: none;
}

/* опційно: адаптив — на планшеті 2 в ряд, на мобільному 1 */
@media (max-width: 991.98px){
  .nb-games-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 575.98px){
  .nb-games-grid{ grid-template-columns: 1fr; }
}

/* якщо у тебе нема Bootstrap, зробимо утиліту d-md-none самі */
@media (min-width: 768px){
  .d-md-none{ display: none !important; }
}
@media (max-width: 767.98px){
  .d-md-none{ display: block !important; }
}
/* Грід: 3 у ряд, 2 ряди максимум */
.nb-screenshots-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.nb-screenshots-grid > .nb-screenshot-item:nth-child(n+7){
  display: none; /* все, що понад 6, ховаємо */
}

/* Карточки + оверлей */
.nb-screenshot-item{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.nb-screenshot-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.nb-screenshot-overlay{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 90%);
  color: #fff;
  transform: translateY(8px);
  opacity: .0;
  transition: .25s ease;
}
.nb-screenshot-item:hover .nb-screenshot-overlay{
  transform: translateY(0);
  opacity: 1;
}

/* Адаптив: планшет — 2 у ряд, мобілка — грід ховаємо, вмикаємо слайдер */
@media (max-width: 991.98px){
  .nb-screenshots-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767.98px){
  .nb-screenshots-grid{ display: none; }
  .d-md-none{ display: block !important; }
}
@media (min-width: 768px){
  .d-md-none{ display: none !important; }
}


.nb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.nb-header {
  background: linear-gradient(135deg, #1d2158 0%, #2a2d6b 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

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

.nb-nav-desktop {
  display: flex;
}

.nb-nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.nb-nav-menu a {
  color: #96a5d1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nb-nav-menu a:hover {
  color: #eaae16;
}

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

.nb-online-count {
  background: rgba(234, 174, 22, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #eaae16;
  border: 1px solid #eaae16;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse 2s infinite;
}

.nb-online-icon {
  color: #4caf50;
  font-size: 12px;
  animation: blink 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 174, 22, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(234, 174, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 174, 22, 0);
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

.nb-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nb-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

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

.nb-btn-login:hover {
  background: #a8b5d8;
  transform: translateY(-2px);
  color: #1d2158;
}

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

.nb-btn-signup:hover {
  background: #f5c142;
  transform: translateY(-2px);
  color: #1d2158;
}

/* Mobile Menu Styles */
.nb-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nb-burger span {
  width: 25px;
  height: 3px;
  background: #96a5d1;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

.nb-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1d2158 0%, #2a2d6b 100%);
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(150, 165, 209, 0.3);
}

.nb-mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.nb-mobile-nav-list li {
  margin-bottom: 15px;
}

.nb-mobile-nav-list a {
  color: #96a5d1;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(150, 165, 209, 0.2);
  transition: color 0.3s ease;
}

.nb-mobile-nav-list a:hover {
  color: #eaae16;
}

.nb-mobile-online {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(150, 165, 209, 0.3);
  color: #eaae16;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Section Enhanced */
.nb-hero {
  background: linear-gradient(rgba(29, 33, 88, 0.8), rgba(45, 52, 71, 0.8)), url("/nomad-baner1.webp");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nb-hero-slider {
  position: relative;
}

.nb-hero-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.nb-hero-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.nb-hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.nb-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.nb-hero-btn {
  background: linear-gradient(45deg, #eaae16, #f5c142);
  color: #1d2158;
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(234, 174, 22, 0.3);
}

.nb-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(234, 174, 22, 0.4);
  color: #1d2158;
}

.nb-hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.nb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nb-dot.active,
.nb-dot:hover {
  background: #eaae16;
  transform: scale(1.2);
}

/* Content Sections */
.nb-content-wrapper {
  padding: 60px 0;
}

.nb-section {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nb-section h3 {
  color: #eaae16;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* Table of Contents */
.nb-toc {
  background: rgba(234, 174, 22, 0.1);
  border-left: 4px solid #96a5d1;
}

.nb-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.nb-toc-list li {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nb-toc-list li:hover {
  background: rgba(234, 174, 22, 0.2);
  transform: translateX(5px);
}

.nb-toc-list a {
  display: block;
  padding: 15px 20px;
  color: #96a5d1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nb-toc-list a:hover {
  color: #eaae16;
}

/* Breadcrumbs */
.nb-breadcrumbs {
  background: rgba(29, 33, 88, 0.3);
  padding: 15px 0;
  border-bottom: 1px solid rgba(150, 165, 209, 0.2);
}

.breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.breadcrumb-item a {
  color: #96a5d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #96a5d1;
  margin: 0 8px;
}

/* Footer Enhanced */
.nb-footer {
  background: linear-gradient(135deg, #1d2158 0%, #2a2d6b 100%);
  padding: 50px 0 20px;
  margin-top: auto;
  border-top: 3px solid #eaae16;
}

.nb-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.nb-footer-section h4 {
  color: #eaae16;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.nb-footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
}

.nb-footer-description {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.nb-footer-license {
  background: rgba(234, 174, 22, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 3px solid #eaae16;
}

.nb-footer-license p {
  color: #eaae16;
  font-size: 13px;
  margin: 0;
  font-weight: 500;
}

.nb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.nb-footer-links a {
  color: #96a5d1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.nb-footer-links a:hover {
  color: #eaae16;
  padding-left: 5px;
}

.nb-footer-links li:not(:has(a)) {
  color: #e0e0e0;
  font-size: 14px;
  padding: 5px 0;
}

/* Payment Methods */
.nb-footer-payments {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nb-footer-payments h4 {
  color: #eaae16;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.2rem;
}

.nb-payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: center;
}

.nb-payment-methods img {
  height: 40px;
  width: auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  filter: grayscale(20%);
}

.nb-payment-methods img:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(234, 174, 22, 0.3);
  filter: grayscale(0%);
}

/* Game Providers */
.nb-footer-providers {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nb-footer-providers h4 {
  color: #eaae16;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.2rem;
}

.nb-game-providers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 15px;
  justify-items: center;
  align-items: center;
}

.nb-game-providers img {
  height: 50px;
  width: auto;
  max-width: 80px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  filter: grayscale(30%);
}

.nb-game-providers img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(150, 165, 209, 0.3);
  filter: grayscale(0%);
}

/* Responsible Gaming */
.nb-footer-responsible {
  margin-bottom: 30px;
  text-align: center;
}

.nb-responsible-gaming {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.nb-responsible-gaming img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.nb-responsible-gaming img:hover {
  transform: scale(1.05);
}

/* Copyright */
.nb-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(150, 165, 209, 0.3);
  color: #96a5d1;
}

.nb-copyright p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.nb-disclaimer {
  color: #e0e0e0 !important;
  font-style: italic;
  font-size: 12px !important;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .nb-footer {
    padding: 40px 0 20px;
  }

  .nb-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .nb-payment-methods {
    gap: 10px;
  }

  .nb-payment-methods img {
    height: 35px;
    padding: 6px 10px;
  }

  .nb-game-providers {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 10px;
  }

  .nb-game-providers img {
    height: 45px;
    max-width: 70px;
    padding: 6px;
  }

  .nb-responsible-gaming {
    gap: 15px;
  }

  .nb-responsible-gaming img {
    height: 50px;
  }

  .nb-footer-payments,
  .nb-footer-providers {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .nb-footer-content {
    gap: 25px;
  }

  .nb-payment-methods img {
    height: 30px;
    padding: 5px 8px;
  }

  .nb-game-providers {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  }

  .nb-game-providers img {
    height: 40px;
    max-width: 60px;
  }

  .nb-responsible-gaming {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nb-responsible-gaming img {
    height: 45px;
  }

  .nb-copyright p {
    font-size: 12px;
  }

  .nb-disclaimer {
    font-size: 11px !important;
  }
}

/* Widget Enhanced */
.nb-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #eaae16 0%, #f5c142 50%, #eaae16 100%);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  max-width: 320px;
  animation: widgetPulse 3s infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

@keyframes widgetPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(234, 174, 22, 0.6);
  }
}

.nb-widget-pulse {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 20px;
  animation: shimmer 2s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.nb-widget-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #1d2158;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nb-widget-close:hover {
  background: rgba(29, 33, 88, 0.1);
  transform: rotate(90deg);
}

.nb-widget-content {
  position: relative;
  z-index: 2;
}

.nb-widget h4 {
  color: #1d2158;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.nb-widget p {
  color: #1d2158;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}

.nb-widget-bonus {
  background: rgba(29, 33, 88, 0.9);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nb-bonus-amount {
  color: #eaae16;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nb-bonus-details {
  color: #ffffff;
  font-size: 12px;
  opacity: 0.9;
}

.nb-widget-btn {
  background: linear-gradient(45deg, #1d2158, #2a2d6b);
  color: #eaae16;
  padding: 15px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(29, 33, 88, 0.4);
  border: 2px solid transparent;
}

.nb-widget-btn:hover {
  background: linear-gradient(45deg, #2a2d6b, #1d2158);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(29, 33, 88, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  color: #f5c142;
}

.nb-widget-timer {
  margin-top: 15px;
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(29, 33, 88, 0.3);
}

.nb-timer-label {
  color: #1d2158;
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.nb-timer {
  color: #1d2158;
  font-size: 18px;
  font-weight: 800;
  font-family: "Courier New", monospace;
  background: rgba(29, 33, 88, 0.1);
  padding: 8px 15px;
  border-radius: 8px;
  display: inline-block;
  border: 1px solid rgba(29, 33, 88, 0.2);
}

/* Content Text Styling */
.nb-content-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nb-content-text h1 {
  color: #eaae16;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.nb-content-text h2 {
  color: #96a5d1;
  font-size: 1.6rem;
  margin: 30px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(150, 165, 209, 0.3);
}

.nb-content-text h3 {
  color: #eaae16;
  font-size: 1.3rem;
  margin: 25px 0 15px 0;
}

.nb-content-text p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 15px;
}

.nb-content-text ul,
.nb-content-text ol {
  color: #e0e0e0;
  margin: 15px 0 15px 30px;
}

.nb-content-text li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.nb-content-text strong {
  color: #eaae16;
  font-weight: 600;
}

.nb-content-text a {
  color: #96a5d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nb-content-text a:hover {
  color: #eaae16;
  text-decoration: underline;
}

/* Author Info */
.nb-author-info {
  display: flex;
  gap: 20px;
  background: rgba(29, 33, 88, 0.2);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  border-left: 4px solid #96a5d1;
}

.nb-author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eaae16;
}

.nb-author-details h5 {
  color: #eaae16;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.nb-author-details p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.nb-author-details a {
  color: #96a5d1;
  font-size: 14px;
  font-weight: 500;
}

/* Article Sections */
.nb-article-intro {
  background: rgba(234, 174, 22, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #eaae16;
  margin-bottom: 30px;
}

.nb-article-intro p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.nb-article-section {
  margin-bottom: 35px;
}

/* Payment Table */
.nb-payment-table {
  overflow-x: auto;
  margin: 20px 0;
}

.nb-payment-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.nb-payment-table th,
.nb-payment-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nb-payment-table th {
  background: rgba(29, 33, 88, 0.3);
  color: #eaae16;
  font-weight: 600;
}

.nb-payment-table td {
  color: #e0e0e0;
}

.nb-payment-table tr:last-child td {
  border-bottom: none;
}

/* Rating Summary */
.nb-rating-summary {
  background: rgba(29, 33, 88, 0.2);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
  border: 1px solid rgba(150, 165, 209, 0.3);
}

.nb-rating-summary h3 {
  color: #eaae16;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.nb-rating-breakdown {
  display: grid;
  gap: 12px;
}

.nb-rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nb-rating-item:last-child {
  border-bottom: none;
}

.nb-rating-item span {
  color: #e0e0e0;
  font-weight: 500;
}

.nb-stars {
  font-size: 16px;
}

/* Mobile Widget Responsive */
@media (max-width: 768px) {
  .nb-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 20px;
  }

  .nb-widget h4 {
    font-size: 1.1rem;
  }

  .nb-bonus-amount {
    font-size: 1.3rem;
  }

  .nb-widget-btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .nb-timer {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .nb-widget {
    padding: 15px;
  }

  .nb-widget h4 {
    font-size: 1rem;
  }

  .nb-widget p {
    font-size: 13px;
  }

  .nb-bonus-amount {
    font-size: 1.2rem;
  }

  .nb-widget-btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .nb-author-info {
    flex-direction: column;
    text-align: center;
  }

  .nb-author-avatar {
    align-self: center;
  }

  .nb-payment-table {
    font-size: 14px;
  }

  .nb-payment-table th,
  .nb-payment-table td {
    padding: 10px 8px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}

/* WordPress-like elements for uniqueness */
.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
}
.wp-block-column {
  flex: 1;
}
.elementor-widget {
  display: block;
}
.yoast-breadcrumb {
  font-size: 14px;
}
