/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* Base Styles */
body {
  font-family: "Roboto", sans-serif;
  color: #f0f0f0;
  line-height: 1.7;
  background-color: #2d3447; /* цвет фона */
  transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #fff;
}

a {
  color: #96a5d1; /* цвет ссылок */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #eaae16;
}

.container {
  max-width: 1200px;
}

/* Colors & Backgrounds */
.nm-1d2158-bg {
  background-color: #1d2158;
}
.nm-2d3447-bg {
  background-color: #2d3447;
}
.nm-text-eaae16 {
  color: rgb(29, 33, 88) !important;
}

/* Buttons */
.btn {
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 700;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.nm-btn-login {
  background-color: #96a5d1;
  color: #1d2158;
}
.nm-btn-login:hover {
  background-color: #8796c1;
  color: #1d2158;
}
.nm-btn-register {
  background-color: #eaae16;
  color: #1d2158;
}
.nm-btn-register:hover {
  background-color: #d9a014;
  color: #1d2158;
}
.nm-btn-download {
  background: linear-gradient(45deg, #96a5d1, #8796c1);
  color: #fff;
}

/* Header */
.nm-header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
}
.nm-logo {
  height: 45px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  margin: 0 10px;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #eaae16;
}
.navbar-toggler {
  border: none;
}

/* Hero */
.nm-hero {
  position: relative;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.nm-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: zoom-in 20s ease-in-out infinite;
}
.nm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 33, 88, 0.7);
}
.nm-hero-content {
  position: relative;
  z-index: 2;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Breadcrumbs */
.nm-breadcrumbs {
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.breadcrumb {
  margin-bottom: 0;
}
.breadcrumb-item a {
  color: #96a5d1;
}
.breadcrumb-item.active {
  color: #f0f0f0;
}

/* Content Blocks */
.content-block {
  padding: 40px 20px;
  margin-bottom: 2rem;
  border-radius: 15px;
  animation: fade-in-up 0.6s ease-out;
}
.nm-block-styles {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Table */
.nm-table {
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
}
.nm-table td {
  padding: 1rem;
  border-top: 1px solid #4a5268;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: rgba(0, 0, 0, 0.15);
}

/* Jackpots */
.nm-jackpot-block {
  background: linear-gradient(135deg, #eaae16, #d9a014);
  color: #1d2158;
}
.nm-jackpot-block h2 {
  color: #1d2158;
}
.nm-jackpot-amount {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Video */
.nm-video-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Cards */
.nm-card {
  background-color: #2d3447;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  border: 1px solid #4a5268;
}
.nm-card-bonus {
  font-size: 2rem;
  font-weight: 700;
  color: #eaae16;
}
.nm-slot-card img {
  height: 80px;
  margin-bottom: 15px;
}

/* Slider */
.nm-slider {
  width: 100%;
  padding-bottom: 40px; /* Space for pagination */
}
.swiper-pagination-bullet {
  background-color: #96a5d1;
}
.swiper-pagination-bullet-active {
  background-color: #eaae16;
}

/* Text Content Styling */
.text-content-styling {
  line-height: 1.8;
}
.text-content-styling p {
  margin-bottom: 1rem;
}
.text-content-styling ul,
.text-content-styling ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.text-content-styling li {
  margin-bottom: 0.5rem;
}
.text-content-styling table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  text-align: left;
}
.text-content-styling th,
.text-content-styling td {
  padding: 12px 15px;
  border: 1px solid #4a5268;
}
.text-content-styling th {
  background-color: #2d3447;
  color: #eaae16;
}
.text-content-styling blockquote {
  border-left: 4px solid #eaae16;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #ccc;
}

/* FAQ Accordion */
.nm-accordion .accordion-item {
  background-color: #2d3447;
  border: 1px solid #4a5268;
  color: #ffffff;
  margin-bottom: 5px;
}
.nm-accordion .accordion-button {
  background-color: #2d3447;
  color: #fff;
  font-weight: 700;
}
.nm-accordion .accordion-button:not(.collapsed) {
  background-color: #1d2158;
  color: #eaae16;
  box-shadow: none;
}
.nm-accordion .accordion-button:focus {
  box-shadow: none;
}
.nm-accordion .accordion-body {
  background-color: #22283a;
}

/* Reviews */
.nm-review-card {
  text-align: left;
}
.nm-stars {
  color: #eaae16;
}

/* Author */
.nm-author-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nm-author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eaae16;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .nm-author-card {
    flex-direction: row;
    text-align: left;
  }
  .nm-author-photo {
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

/* Footer */
.nm-footer {
  padding: 40px 0 20px;
  color: #ccc;
}
.nm-footer h5 {
  color: #eaae16;
  margin-bottom: 1rem;
}
.nm-footer ul li a {
  color: #ccc;
}
.nm-footer ul li a:hover {
  color: #fff;
}
.nm-footer-icons img {
  height: 25px;
  margin: 5px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.nm-footer-icons img:hover {
  opacity: 1;
}
.nm-copyright {
  border-top: 1px solid #4a5268;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

/* Sticky Widget */
.nm-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(45deg, #1d2158, #2d3447);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  animation: slide-in-bottom 0.5s ease-out;
}
.nm-widget-text {
  color: #fff;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .nm-sticky-widget .container {
    flex-direction: column;
    text-align: center;
  }
  .nm-widget-text {
    margin-bottom: 10px;
    margin-right: 0 !important;
  }
}

@keyframes slide-in-bottom {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Неиспользуемые классы для запутывания */
.widget-title {
  font-family: "Times New Roman", serif;
}
.entry-footer {
  display: none;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
}
