/* style/promotions-new-user-bonus.css */
:root {
  --primary-color: #0A2A5B;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f9f9f9;
  --background-dark: #000000;
  --border-color: #e0e0e0;
}

.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Body background is dark */
}

.page-promotions-new-user-bonus__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions-new-user-bonus__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  overflow: hidden;
  color: var(--text-light);
  background-color: var(--primary-color);
  min-height: 600px;
}

.page-promotions-new-user-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2;
}

.page-promotions-new-user-bonus__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-promotions-new-user-bonus__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-promotions-new-user-bonus__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__cta-button--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__intro-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__registration-guide .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__section-title {
  color: var(--primary-color);
  text-shadow: none;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user-bonus__text-block .highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__text-block .highlight {
  color: var(--primary-color);
}

.page-promotions-new-user-bonus__details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__detail-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__detail-card:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: center;
}

.page-promotions-new-user-bonus__registration-guide {
  padding: 60px 0;
}

.page-promotions-new-user-bonus__guide-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-promotions-new-user-bonus__guide-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__step-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-new-user-bonus__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.page-promotions-new-user-bonus__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--text-light);
  font-size: 1.5em;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__step-number {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-promotions-new-user-bonus__step-text h3 {
  font-size: 1.3em;
  margin: 0 0 5px 0;
  color: var(--primary-color);
}

.page-promotions-new-user-bonus__step-text p {
  margin: 0;
  font-size: 1em;
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__why-kubet-section {
  padding: 60px 0;
}

.page-promotions-new-user-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions-new-user-bonus__feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus__feature-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__feature-item p {
  color: var(--text-light);
  font-size: 1em;
}

.page-promotions-new-user-bonus__faq-section {
  padding: 60px 0;
}

.page-promotions-new-user-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--text-light);
  color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background: #f0f0f0;
}

.page-promotions-new-user-bonus__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-promotions-new-user-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background: #f9f9f9;
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain content */
  padding: 20px !important;
  opacity: 1;
  border-top: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__cta-final {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__section-title {
  color: var(--secondary-color);
}

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__copyright-info {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  background-color: #000000;
}

.page-promotions-new-user-bonus a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-new-user-bonus a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions-new-user-bonus__light-bg a {
  color: var(--primary-color);
}

.page-promotions-new-user-bonus__light-bg a:hover {
  color: #071f3f;
}

/* Ensure images don't have filters */
.page-promotions-new-user-bonus img {
  filter: none !important; /* Absolutely no filters */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.3em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__guide-content {
    flex-direction: column;
  }
  .page-promotions-new-user-bonus__guide-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions-new-user-bonus__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 500px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__cta-button {
    padding: 15px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions-new-user-bonus__cta-button--centered {
    margin-top: 30px;
  }
  .page-promotions-new-user-bonus__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__text-block {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-new-user-bonus__detail-card {
    padding: 25px;
  }
  .page-promotions-new-user-bonus__card-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus__guide-image {
    max-width: 100%;
  }
  .page-promotions-new-user-bonus__step-list {
    width: 100%;
  }
  .page-promotions-new-user-bonus__step-item {
    margin-bottom: 20px;
  }
  .page-promotions-new-user-bonus__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
    margin-right: 15px;
  }
  .page-promotions-new-user-bonus__step-text h3 {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-new-user-bonus__feature-item {
    padding: 25px;
  }
  .page-promotions-new-user-bonus__feature-icon {
    max-width: 120px;
  }
  .page-promotions-new-user-bonus__feature-title {
    font-size: 1.3em;
  }
  .page-promotions-new-user-bonus__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-promotions-new-user-bonus__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-promotions-new-user-bonus__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 0 15px;
  }
  .page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    padding: 15px !important;
  }
  .page-promotions-new-user-bonus__cta-final {
    padding: 60px 15px;
  }

  /* Mobile image responsive adaptation */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-new-user-bonus__hero-image,
  .page-promotions-new-user-bonus__guide-image,
  .page-promotions-new-user-bonus__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

.page-promotions-new-user-bonus__internal-link {
  color: inherit; /* Inherit color from parent for better contrast */
  text-decoration: underline;
}

.page-promotions-new-user-bonus__internal-link:hover {
  color: var(--secondary-color);
}
.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__internal-link {
  color: var(--primary-color);
}
.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__internal-link:hover {
  color: var(--secondary-color);
}