/* style/blog-kimsport-promotions-unlocked.css */

/* Body background is handled by shared.css with var(--site-bg) which is #08160F */
.page-blog-kimsport-promotions-unlocked {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-blog-kimsport-promotions-unlocked__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-blog-kimsport-promotions-unlocked__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-kimsport-promotions-unlocked__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-kimsport-promotions-unlocked__cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-kimsport-promotions-unlocked__cta-button--secondary {
  background: #11271B; /* Card BG */
  border: 2px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-blog-kimsport-promotions-unlocked__cta-button--secondary:hover {
  background: #0A4B2C; /* Deep Green */
  border-color: #57E38D; /* Glow */
  transform: translateY(-2px);
}

/* Hero Section */
.page-blog-kimsport-promotions-unlocked__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #08160F;
}

.page-blog-kimsport-promotions-unlocked__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-kimsport-promotions-unlocked__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

.page-blog-kimsport-promotions-unlocked__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly over image for visual flow */
  position: relative;
  z-index: 1;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E;
}

.page-blog-kimsport-promotions-unlocked__hero-title {
  font-size: 3em;
  font-weight: 800;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-blog-kimsport-promotions-unlocked__hero-description {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

/* Introduction Section */
.page-blog-kimsport-promotions-unlocked__introduction-section {
  padding: 60px 0;
  background-color: #08160F;
  text-align: center;
}

/* Promotions Grid Section */
.page-blog-kimsport-promotions-unlocked__promotions-grid-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-blog-kimsport-promotions-unlocked__card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

.page-blog-kimsport-promotions-unlocked__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow */
}

.page-blog-kimsport-promotions-unlocked__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-kimsport-promotions-unlocked__card-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  padding: 15px 20px 10px;
}

.page-blog-kimsport-promotions-unlocked__card-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-blog-kimsport-promotions-unlocked__card-button {
  display: block;
  margin: 0 20px 20px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-blog-kimsport-promotions-unlocked__card-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* How To Claim Section */
.page-blog-kimsport-promotions-unlocked__how-to-claim-section {
  padding: 60px 0;
  background-color: #08160F;
  text-align: center;
}

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

.page-blog-kimsport-promotions-unlocked__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
  text-align: left;
}

.page-blog-kimsport-promotions-unlocked__step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #2AD16F;
  color: #08160F;
  font-weight: 700;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 20px;
}

.page-blog-kimsport-promotions-unlocked__step-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-kimsport-promotions-unlocked__step-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-kimsport-promotions-unlocked__how-to-claim-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

/* VIP Section */
.page-blog-kimsport-promotions-unlocked__vip-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

.page-blog-kimsport-promotions-unlocked__vip-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 900px;
  margin: 40px auto 0;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

/* Responsible Gambling Section */
.page-blog-kimsport-promotions-unlocked__responsible-gambling-section {
  padding: 60px 0;
  background-color: #08160F;
  text-align: center;
}

/* FAQ Section */
.page-blog-kimsport-promotions-unlocked__faq-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-kimsport-promotions-unlocked__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-blog-kimsport-promotions-unlocked__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-kimsport-promotions-unlocked__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

.page-blog-kimsport-promotions-unlocked__faq-item summary:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-kimsport-promotions-unlocked__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-kimsport-promotions-unlocked__faq-qtext {
  flex-grow: 1;
}

.page-blog-kimsport-promotions-unlocked__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-blog-kimsport-promotions-unlocked__faq-item[open] .page-blog-kimsport-promotions-unlocked__faq-toggle {
  color: #57E38D; /* Glow */
}

.page-blog-kimsport-promotions-unlocked__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
  margin-top: -1px; /* Overlap border */
}

/* Final CTA Section */
.page-blog-kimsport-promotions-unlocked__final-cta-section {
  padding: 60px 0;
  background-color: #08160F;
  text-align: center;
}

.page-blog-kimsport-promotions-unlocked__final-cta-section .page-blog-kimsport-promotions-unlocked__paragraph {
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-kimsport-promotions-unlocked__hero-title {
    font-size: 2.5em;
  }
  .page-blog-kimsport-promotions-unlocked__hero-description {
    font-size: 1.1em;
  }
  .page-blog-kimsport-promotions-unlocked__section-title {
    font-size: 2em;
  }
  .page-blog-kimsport-promotions-unlocked__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-blog-kimsport-promotions-unlocked {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-kimsport-promotions-unlocked__hero-title {
    font-size: 2em;
  }
  .page-blog-kimsport-promotions-unlocked__hero-description {
    font-size: 1em;
  }
  .page-blog-kimsport-promotions-unlocked__section-title {
    font-size: 1.8em;
  }
  .page-blog-kimsport-promotions-unlocked__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
    border-radius: 10px;
  }
  .page-blog-kimsport-promotions-unlocked__cta-button,
  .page-blog-kimsport-promotions-unlocked__card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-kimsport-promotions-unlocked__cta-buttons,
  .page-blog-kimsport-promotions-unlocked__button-group,
  .page-blog-kimsport-promotions-unlocked__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-kimsport-promotions-unlocked__grid {
    grid-template-columns: 1fr;
  }
  .page-blog-kimsport-promotions-unlocked__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-kimsport-promotions-unlocked img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-kimsport-promotions-unlocked__section,
  .page-blog-kimsport-promotions-unlocked__card,
  .page-blog-kimsport-promotions-unlocked__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-kimsport-promotions-unlocked__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-kimsport-promotions-unlocked__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-blog-kimsport-promotions-unlocked__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-kimsport-promotions-unlocked__hero-title {
    font-size: 1.8em;
  }
  .page-blog-kimsport-promotions-unlocked__section-title {
    font-size: 1.5em;
  }
  .page-blog-kimsport-promotions-unlocked__hero-content {
    margin-top: -30px;
  }
}