/* style/index-how-to-get-b52play-code.css */

:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-index-how-to-get-b52play-code {
  font-family: Arial, sans-serif;
  color: var(--color-text-main); /* Default text color for the page */
  background-color: var(--color-background); /* Page background */
}

.page-index-how-to-get-b52play-code__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is just for spacing */
  overflow: hidden;
}

.page-index-how-to-get-b52play-code__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.page-index-how-to-get-b52play-code__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-index-how-to-get-b52play-code__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin-top: -150px; /* Adjust to overlap slightly with image below */
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-index-how-to-get-b52play-code__main-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--color-gold);
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
}

.page-index-how-to-get-b52play-code__hero-description {
  font-size: 1.1rem;
  color: var(--color-text-main);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-index-how-to-get-b52play-code__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-index-how-to-get-b52play-code__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-index-how-to-get-b52play-code__btn--primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid var(--color-glow);
  box-shadow: 0 0 15px var(--color-glow);
}

.page-index-how-to-get-b52play-code__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--color-glow);
}

.page-index-how-to-get-b52play-code__btn--secondary {
  background: var(--color-card-bg);
  color: var(--color-text-main);
  border: 2px solid var(--color-border);
}

.page-index-how-to-get-b52play-code__btn--secondary:hover {
  background: var(--color-border);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-index-how-to-get-b52play-code__btn--small {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.page-index-how-to-get-b52play-code__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--color-divider);
}

.page-index-how-to-get-b52play-code__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-how-to-get-b52play-code__section-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(17, 168, 78, 0.5);
}

.page-index-how-to-get-b52play-code__text-block {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-how-to-get-b52play-code__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-how-to-get-b52play-code__card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text-main);
}

.page-index-how-to-get-b52play-code__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-index-how-to-get-b52play-code__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-index-how-to-get-b52play-code__card-title {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-how-to-get-b52play-code__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.page-index-how-to-get-b52play-code__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
}

.page-index-how-to-get-b52play-code__step {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-how-to-get-b52play-code__step-title {
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-how-to-get-b52play-code__step-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 2px solid var(--color-glow);
  max-width: 100%;
  display: block;
}

.page-index-how-to-get-b52play-code__step-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  text-align: justify;
}

.page-index-how-to-get-b52play-code__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-index-how-to-get-b52play-code__list-item {
  background-color: var(--color-card-bg);
  border-left: 5px solid var(--color-primary);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-how-to-get-b52play-code__list-item strong {
  color: var(--color-gold);
}

.page-index-how-to-get-b52play-code__grid--types {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-index-how-to-get-b52play-code__faq-list {
  margin-top: 40px;
}

.page-index-how-to-get-b52play-code__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--color-text-main);
}

.page-index-how-to-get-b52play-code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-primary);
  cursor: pointer;
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-index-how-to-get-b52play-code__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-how-to-get-b52play-code__faq-question:hover {
  background-color: var(--color-border);
}

.page-index-how-to-get-b52play-code__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-gold);
  margin-left: 15px;
}

.page-index-how-to-get-b52play-code__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  background-color: var(--color-card-bg);
}

.page-index-how-to-get-b52play-code__faq-item[open] .page-index-how-to-get-b52play-code__faq-question {
  border-bottom: 1px solid var(--color-divider);
}

.page-index-how-to-get-b52play-code__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.page-index-how-to-get-b52play-code__floating-btn {
  display: block;
  padding: 12px 25px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-index-how-to-get-b52play-code__floating-btn--register {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid var(--color-glow);
}

.page-index-how-to-get-b52play-code__floating-btn--register:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--color-glow);
}

.page-index-how-to-get-b52play-code__floating-btn--login {
  background: var(--color-card-bg);
  color: var(--color-text-main);
  border: 2px solid var(--color-border);
}

.page-index-how-to-get-b52play-code__floating-btn--login:hover {
  transform: scale(1.05);
  background: var(--color-border);
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-index-how-to-get-b52play-code__hero-content {
    margin-top: -100px;
  }
  .page-index-how-to-get-b52play-code__section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-index-how-to-get-b52play-code {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-index-how-to-get-b52play-code__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-index-how-to-get-b52play-code__main-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
  .page-index-how-to-get-b52play-code__hero-description {
    font-size: 1rem;
  }
  .page-index-how-to-get-b52play-code__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-how-to-get-b52play-code__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-index-how-to-get-b52play-code__section-title {
    font-size: clamp(1.3rem, 4vw, 2rem);
    margin-bottom: 30px;
  }
  .page-index-how-to-get-b52play-code__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-index-how-to-get-b52play-code__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-how-to-get-b52play-code__card {
    padding: 25px;
  }
  .page-index-how-to-get-b52play-code__card-image {
    height: 200px;
  }
  .page-index-how-to-get-b52play-code__step {
    padding: 30px 20px;
  }
  .page-index-how-to-get-b52play-code__step-title {
    font-size: 1.4rem;
  }
  .page-index-how-to-get-b52play-code__step-image {
    height: auto !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-index-how-to-get-b52play-code__text-block, 
  .page-index-how-to-get-b52play-code__list-item, 
  .page-index-how-to-get-b52play-code__faq-answer {
    font-size: 0.95rem;
  }
  .page-index-how-to-get-b52play-code__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-index-how-to-get-b52play-code__floating-buttons {
    flex-direction: row;
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    bottom: 15px;
    gap: 10px;
  }
  .page-index-how-to-get-b52play-code__floating-btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  /* Ensure all images are responsive */
  .page-index-how-to-get-b52play-code img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-how-to-get-b52play-code__hero-image-wrapper,
  .page-index-how-to-get-b52play-code__card,
  .page-index-how-to-get-b52play-code__step {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-index-how-to-get-b52play-code__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

@media (max-width: 480px) {
  .page-index-how-to-get-b52play-code__hero-content {
    margin-top: -60px;
  }
  .page-index-how-to-get-b52play-code__main-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .page-index-how-to-get-b52play-code__btn {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
  .page-index-how-to-get-b52play-code__floating-buttons {
    flex-direction: column;
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    bottom: 10px;
    gap: 8px;
  }
  .page-index-how-to-get-b52play-code__floating-btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
}