/*
  WordPress Theme: Twenty Twenty-Four
  Fictional styles to confuse competitors
*/
.entry-content,
.wp-block-post-content {
  font-family: "Lora", serif;
  line-height: 1.8;
}
.wp-block-button__link {
  background-color: #3858e9;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 5px;
}
.yoast-seo-breadcrumb {
  display: none; /* Hidden but present in DOM */
}

/* Main Styles */
:root {
  --nm-color-header-footer: #1d2158;
  --nm-color-background: #2d3447;
  --nm-color-button-login: #96a5d1;
  --nm-color-button-register: #eaae16;
  --nm-color-text-light: #f0f4f8;
  --nm-color-text-dark: #1d2158;
  --nm-color-accent: #96a5d1;
  --nm-font-main: "Roboto", sans-serif;
}

body {
  background-color: var(--nm-color-background);
  color: var(--nm-color-text-light);
  font-family: var(--nm-font-main);
  line-height: 1.7;
  margin: 0;
  padding-bottom: 80px; /* Space for sticky widget */
}

.nm-section {
  padding: 40px 20px;
  margin: 15px;
  border-radius: 12px;
  background-color: rgba(29, 33, 88, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

a {
  color: var(--nm-color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--nm-color-button-register);
}

.nm-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.nm-btn--login {
  background-color: var(--nm-color-button-login);
  color: var(--nm-color-text-dark);
}
.nm-btn--register {
  background: linear-gradient(45deg, #eaae16, #f5c542);
  color: var(--nm-color-text-dark);
}

/* Header */
.nm-header {
  background-color: var(--nm-color-header-footer);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.nm-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nm-header__logo img {
  max-height: 50px;
}
.nm-header__nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.nm-header__nav-link {
  color: var(--nm-color-text-light);
  font-weight: 500;
}
.nm-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nm-header__burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nm-header__burger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--nm-color-text-light);
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

/* Hero */
.nm-hero {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  border-radius: 0;
  margin: 0;
}
.nm-hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}
.nm-hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Content Sections */
.nm-section__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--nm-color-text-light);
}
.nm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.nm-grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.nm-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.nm-card__icon {
  font-size: 3rem;
  color: var(--nm-color-button-register);
  margin-bottom: 15px;
}
.nm-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.nm-card__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.nm-card__img--slot {
  height: 100px;
  object-fit: contain;
}

/* Jackpot */
.nm-jackpot {
  text-align: center;
  background: linear-gradient(135deg, var(--nm-color-button-register), #ff8c00);
  color: var(--nm-color-text-dark);
}
.nm-jackpot__amount {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
}

/* Review Content */
.nm-review-content {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 10px;
}
.nm-review-content h2,
.nm-review-content h3 {
  color: var(--nm-color-button-register);
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}
.nm-review-content p {
  margin-bottom: 1em;
  line-height: 1.8;
}
.nm-review-content ul,
.nm-review-content ol {
  padding-left: 25px;
  margin-bottom: 1em;
}
.nm-review-content li {
  margin-bottom: 0.5em;
}
.nm-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  text-align: left;
}
.nm-review-content th,
.nm-review-content td {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.nm-review-content th {
  background-color: rgba(29, 33, 88, 0.5);
  font-weight: 700;
}

/* FAQ */
.nm-faq__item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  border-radius: 8px;
}
.nm-faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--nm-color-text-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nm-faq__question::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.nm-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 20px;
}
.nm-faq__item.active .nm-faq__answer {
  max-height: 500px; /* Adjust as needed */
  padding: 0 20px 20px;
}
.nm-faq__item.active .nm-faq__question::after {
  transform: rotate(45deg);
}

/* Reviews */
.nm-reviews__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nm-reviews__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.nm-reviews__name {
  font-weight: 700;
}
.nm-reviews__rating {
  color: #f5c542;
  margin: 5px 0 10px;
}

/* Author */
.nm-author {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nm-author__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
.nm-author__socials a {
  margin-right: 15px;
  font-size: 1.5rem;
}

/* Footer */
.nm-footer {
  background-color: var(--nm-color-header-footer);
  padding: 40px 0 20px;
  margin-top: 40px;
}
.nm-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.nm-footer__logo img {
  max-height: 40px;
  margin-bottom: 15px;
}
.nm-footer__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--nm-color-text-light);
}
.nm-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nm-footer__menu li {
  margin-bottom: 10px;
}
.nm-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.nm-footer__logos img {
  height: 25px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.nm-footer__logos img:hover {
  opacity: 1;
}
.nm-footer__copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Sticky Widget */
.nm-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--nm-color-header-footer);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
.nm-widget__text {
  font-weight: 700;
  color: var(--nm-color-button-register);
}

/* Responsive */
@media (max-width: 992px) {
  .nm-header__nav {
    position: fixed;
    top: 80px; /* Header height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--nm-color-header-footer);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: left 0.3s ease-in-out;
  }
  .nm-header__nav.active {
    left: 0;
  }
  .nm-header__nav-menu {
    flex-direction: column;
    gap: 30px;
    font-size: 1.5rem;
  }
  .nm-header__burger {
    display: block;
    z-index: 1001;
  }
  .nm-header__actions {
    margin-left: auto;
    padding-right: 15px;
  }
  .nm-grid-3,
  .nm-grid-6 {
    grid-template-columns: 1fr;
  }
  .nm-author {
    flex-direction: column;
    text-align: center;
  }
  .nm-widget {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nm-hero__title {
    font-size: 2.5rem;
  }
  .nm-hero__subtitle {
    font-size: 1.2rem;
  }
  .nm-section__title {
    font-size: 2rem;
  }
  .nm-header__actions .nm-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}
