/* style/blog-vff88-promotions-registration.css */

:root {
  --vff88-primary-color: #C91F17;
  --vff88-secondary-color: #E53935;
  --vff88-button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  --vff88-card-bg: #D32F2F;
  --vff88-section-bg: #B71C1C;
  --vff88-text-main: #FFF5E1;
  --vff88-border-color: #F2B544;
  --vff88-glow-color: #FFCC66;
  --vff88-gold-color: #F4D34D;
  --vff88-deep-red: #7A0E0E;
  --text-dark: #333333;
  --text-light: #ffffff;
}

.page-blog-vff88-promotions-registration {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default for light backgrounds */
  background-color: var(--bg-color); /* Assumed from shared.css */
}

.page-blog-vff88-promotions-registration__dark-bg {
  background-color: var(--vff88-section-bg);
  color: var(--vff88-text-main);
}

.page-blog-vff88-promotions-registration__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-vff88-promotions-registration__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  background-color: var(--vff88-section-bg);
}

.page-blog-vff88-promotions-registration__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-vff88-promotions-registration__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.8); /* Slightly darken for text contrast */
}

.page-blog-vff88-promotions-registration__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: var(--vff88-text-main);
  margin-top: -100px; /* Overlap slightly with image for visual flow */
}

.page-blog-vff88-promotions-registration__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-vff88-promotions-registration__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-vff88-promotions-registration__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.page-blog-vff88-promotions-registration__btn-primary,
.page-blog-vff88-promotions-registration__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-vff88-promotions-registration__btn-primary {
  background: var(--vff88-button-gradient);
  color: var(--text-dark);
  border: 2px solid var(--vff88-gold-color);
}

.page-blog-vff88-promotions-registration__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-vff88-promotions-registration__btn-secondary {
  background-color: var(--vff88-secondary-color);
  color: var(--vff88-text-main);
  border: 2px solid var(--vff88-secondary-color);
}

.page-blog-vff88-promotions-registration__btn-secondary:hover {
  background-color: var(--vff88-primary-color);
  border-color: var(--vff88-primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-vff88-promotions-registration__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  color: var(--vff88-gold-color);
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-vff88-promotions-registration__section {
  padding: 60px 0;
}

.page-blog-vff88-promotions-registration__about-vff88 {
  background-color: #ffffff;
  color: var(--text-dark);
}

.page-blog-vff88-promotions-registration__about-vff88 .page-blog-vff88-promotions-registration__section-title {
  color: var(--vff88-primary-color);
}

.page-blog-vff88-promotions-registration__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-vff88-promotions-registration__registration-guide {
  background-color: var(--vff88-deep-red);
}

.page-blog-vff88-promotions-registration__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-vff88-promotions-registration__step-item {
  background-color: var(--vff88-card-bg);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--vff88-text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-vff88-promotions-registration__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 2px solid var(--vff88-gold-color);
}

.page-blog-vff88-promotions-registration__step-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--vff88-gold-color);
}

.page-blog-vff88-promotions-registration__step-description {
  font-size: 1em;
  line-height: 1.5;
}

.page-blog-vff88-promotions-registration__promotions-section {
  background-color: #f8f8f8;
  color: var(--text-dark);
}

.page-blog-vff88-promotions-registration__promotions-section .page-blog-vff88-promotions-registration__section-title {
  color: var(--vff88-primary-color);
}

.page-blog-vff88-promotions-registration__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-blog-vff88-promotions-registration__promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-vff88-promotions-registration__promo-card {
  background-color: var(--vff88-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--vff88-text-main);
}

.page-blog-vff88-promotions-registration__promo-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--vff88-gold-color);
}

.page-blog-vff88-promotions-registration__promo-description {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-blog-vff88-promotions-registration__game-types {
  background-color: var(--vff88-section-bg);
}

.page-blog-vff88-promotions-registration__game-category {
  background-color: var(--vff88-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: var(--vff88-text-main);
  margin-bottom: 30px;
}

.page-blog-vff88-promotions-registration__game-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 2px solid var(--vff88-gold-color);
}

.page-blog-vff88-promotions-registration__game-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--vff88-gold-color);
}

.page-blog-vff88-promotions-registration__game-description {
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-blog-vff88-promotions-registration__login-app-section {
  background-color: #ffffff;
  color: var(--text-dark);
}

.page-blog-vff88-promotions-registration__login-app-section .page-blog-vff88-promotions-registration__section-title {
  color: var(--vff88-primary-color);
}

.page-blog-vff88-promotions-registration__security-support {
  background-color: var(--vff88-deep-red);
}

.page-blog-vff88-promotions-registration__faq-section {
  background-color: #f8f8f8;
  color: var(--text-dark);
}

.page-blog-vff88-promotions-registration__faq-section .page-blog-vff88-promotions-registration__section-title {
  color: var(--vff88-primary-color);
}

.page-blog-vff88-promotions-registration__faq-list {
  margin-top: 30px;
}

.page-blog-vff88-promotions-registration__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-blog-vff88-promotions-registration__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--vff88-primary-color);
  cursor: pointer;
  background-color: #f0f0f0;
  list-style: none; /* For details tag */
}

.page-blog-vff88-promotions-registration__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details tag */
}

.page-blog-vff88-promotions-registration__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--vff88-secondary-color);
  transition: transform 0.3s ease;
}

.page-blog-vff88-promotions-registration__faq-item[open] .page-blog-vff88-promotions-registration__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-vff88-promotions-registration__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-blog-vff88-promotions-registration__conclusion {
  background-color: var(--vff88-primary-color);
}

.page-blog-vff88-promotions-registration__conclusion .page-blog-vff88-promotions-registration__section-title {
  color: var(--vff88-text-main);
}

.page-blog-vff88-promotions-registration__conclusion .page-blog-vff88-promotions-registration__text-block {
  color: var(--vff88-text-main);
}

.page-blog-vff88-promotions-registration__copyright-section {
  background-color: var(--vff88-deep-red);
  padding: 20px 0;
  text-align: center;
  color: var(--vff88-text-main);
  font-size: 0.9em;
}

/* Universal image responsive styles */
.page-blog-vff88-promotions-registration img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-blog-vff88-promotions-registration__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-blog-vff88-promotions-registration__hero-content {
    margin-top: -50px; /* Adjust overlap for mobile */
    padding: 15px;
  }

  .page-blog-vff88-promotions-registration__main-title {
    font-size: 2em; /* Smaller H1 for mobile */
    margin-bottom: 15px;
  }

  .page-blog-vff88-promotions-registration__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-vff88-promotions-registration__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .page-blog-vff88-promotions-registration__btn-primary,
  .page-blog-vff88-promotions-registration__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-vff88-promotions-registration__section {
    padding: 40px 0;
  }

  .page-blog-vff88-promotions-registration__container {
    padding: 0 15px;
  }

  .page-blog-vff88-promotions-registration__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-vff88-promotions-registration__text-block {
    font-size: 0.95em;
  }

  .page-blog-vff88-promotions-registration__steps-grid,
  .page-blog-vff88-promotions-registration__promos-grid {
    grid-template-columns: 1fr; /* Single column for grids */
    gap: 20px;
  }

  .page-blog-vff88-promotions-registration__step-item,
  .page-blog-vff88-promotions-registration__promo-card,
  .page-blog-vff88-promotions-registration__game-category {
    padding: 20px;
  }

  .page-blog-vff88-promotions-registration__step-title,
  .page-blog-vff88-promotions-registration__promo-title,
  .page-blog-vff88-promotions-registration__game-title {
    font-size: 1.3em;
  }

  /* Mobile specific image adaptation */
  .page-blog-vff88-promotions-registration img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-vff88-promotions-registration__section,
  .page-blog-vff88-promotions-registration__card,
  .page-blog-vff88-promotions-registration__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  .page-blog-vff88-promotions-registration__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-vff88-promotions-registration__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  .page-blog-vff88-promotions-registration__copyright-section {
    padding: 15px 0;
  }
}