/* style/register-guide.css */
.page-register-guide {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  background-color: #1a1a1a; /* Dark background for contrast */
}

.page-register-guide .highlight {
  color: #FFD700; /* Gold highlight */
}

.page-register-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-guide__hero {
  background: linear-gradient(135deg, #8B0000, #4a0000); /* Dark red gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register-guide__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(139, 0, 0, 0) 70%);
  opacity: 0.3;
  animation: page-register-guide__pulse 10s infinite alternate;
}

@keyframes page-register-guide__pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-register-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.page-register-guide__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-register-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 1;
}

.page-register-guide__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text on gold */
}

.page-register-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-register-guide__btn--secondary {
  background-color: #8B0000; /* Dark red button */
  color: #ffffff; /* White text on dark red */
}

.page-register-guide__btn--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.page-register-guide__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-register-guide__section {
  padding: 80px 0;
  text-align: center;
}

.page-register-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-register-guide__section-description {
  font-size: 1.1em;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.page-register-guide__why-k8vn {
  background-color: #222; /* Slightly lighter dark background */
}

.page-register-guide__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-register-guide__feature-item {
  background-color: #2c2c2c;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-guide__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.page-register-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-register-guide__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-register-guide__feature-description {
  font-size: 1em;
  color: #bbb;
  line-height: 1.6;
}

.page-register-guide__steps {
  background-color: #1a1a1a;
}

.page-register-guide__step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 50px;
}

.page-register-guide__step-item {
  text-align: left;
  background-color: #2c2c2c;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-register-guide__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #8B0000; /* Dark red number */
  margin-bottom: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.page-register-guide__step-item h3 {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  padding-right: 100px; /* Make space for number */
  position: relative;
  z-index: 1;
}

.page-register-guide__step-text {
  font-size: 1.1em;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-register-guide__step-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

.page-register-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-register-guide__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #ccc;
}

.page-register-guide__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register-guide__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-register-guide__tips {
  background-color: #222;
}

.page-register-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-register-guide__tip-item {
  background-color: #2c2c2c;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-register-guide__tip-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-register-guide__tip-item p {
  color: #bbb;
  line-height: 1.6;
}

.page-register-guide__app-download {
  background-color: #1a1a1a;
}

.page-register-guide__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.page-register-guide__app-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-register-guide__app-subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-register-guide__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

.page-register-guide__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 3px solid #8B0000;
}

.page-register-guide__promotions {
  background-color: #222;
}

.page-register-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-register-guide__promo-item {
  background-color: #2c2c2c;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-guide__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2);
}

.page-register-guide__promo-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #FFD700;
}

.page-register-guide__promo-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-register-guide__promo-text {
  color: #bbb;
  line-height: 1.6;
}

.page-register-guide__cta-center {
  margin-top: 50px;
}

.page-register-guide__faq {
  background-color: #1a1a1a;
}

.page-register-guide__faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-register-guide__faq-item {
  background-color: #2c2c2c;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-register-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-register-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #8B0000;
  transition: transform 0.3s ease;
}

.page-register-guide__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-register-guide__faq-answer {
  color: #bbb;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 0px;
}

.page-register-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 10px 0px;
}

.page-register-guide__cta-final {
  background-color: #8B0000; /* Dark red background for final CTA */
  padding: 100px 0;
}

.page-register-guide__cta-final .page-register-guide__section-title,
.page-register-guide__cta-final .page-register-guide__section-description {
  color: #ffffff;
}

.page-register-guide__responsible-gaming {
  margin-top: 30px;
  font-size: 0.9em;
  color: #ffcccc;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-register-guide__hero-title {
    font-size: 2.8em;
  }
  .page-register-guide__section-title {
    font-size: 2em;
  }
  .page-register-guide__app-content {
    flex-direction: column;
  }
  .page-register-guide__app-text {
    text-align: center;
  }
  .page-register-guide__step-number {
    position: static;
    margin: 0 auto 20px;
  }
  .page-register-guide__step-item h3 {
    padding-right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-register-guide__hero-title {
    font-size: 2.2em;
  }
  .page-register-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-register-guide__section-title {
    font-size: 1.8em;
  }
  .page-register-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-register-guide__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-register-guide__section {
    padding: 60px 0;
  }
  .page-register-guide__feature-title, .page-register-guide__promo-title {
    font-size: 1.3em;
  }
  .page-register-guide__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-register-guide__hero-title {
    font-size: 1.8em;
  }
  .page-register-guide__section-title {
    font-size: 1.5em;
  }
  .page-register-guide__section-description {
    font-size: 0.9em;
  }
  .page-register-guide__feature-icon {
    width: 50px;
    height: 50px;
  }
  .page-register-guide__step-number {
    font-size: 2.5em;
    width: 70px;
    height: 70px;
  }
  .page-register-guide__step-item h3 {
    font-size: 1.5em;
  }
  .page-register-guide__step-text {
    font-size: 0.95em;
  }
}