/* ============================================
   HERO SECTION
   ============================================ */
.hero_section {
  position: relative;
  background: linear-gradient(135deg, #161a1d 0%, #2e1a2e 40%, #9b177e 100%);
  padding: 50px 0 60px;
  overflow: hidden;
  text-align: center;
}

.hero_overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>')
    repeat;
  pointer-events: none;
}

.hero_content {
  position: relative;
  z-index: 1;
}

.hero_badge {
  display: inline-block;
  background: rgba(155, 23, 126, 0.3);
  border: 1px solid rgba(155, 23, 126, 0.6);
  color: #f0c6e6;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero_section h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 18px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero_subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  font-weight: 600;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero_cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.btn_hero_primary {
  display: inline-block;
  background: #5cb338;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  box-shadow: 0 4px 15px rgba(92, 179, 56, 0.35);
}

.btn_hero_primary:hover {
  background: #4a9a2d;
  transform: translateY(-2px);
}

.btn_hero_secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.btn_hero_secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero_trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero_trust span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
}

.hero_trust i {
  color: #5cb338;
  margin-right: 6px;
}

/* ============================================
   FEATURES SECTION (icons + text flex center)
   ============================================ */
.features_section {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.features_grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.feature_item {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 24px 16px;
}

.feature_icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #faf3f8, #ebd0e5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature_icon i {
  font-size: 28px;
  color: #9b177e;
}

.feature_item h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature_item p {
  font-size: 14px;
  color: var(--light-dark);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   PAGE LINK CARDS (internal links / shortcodes)
   ============================================ */
.page_cards_section {
  padding: 40px 0;
}

.page_cards_heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  border-left: 4px solid var(--brand);
  padding-left: 12px;
}

.page_cards_subheading {
  font-size: 16px;
  color: var(--light-dark);
  margin-bottom: 24px;
  font-weight: 600;
}

.page_cards_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page_card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8e8e8;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.page_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page_card_image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f5f5f5;
}

.page_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.page_card:hover .page_card_image img {
  transform: scale(1.05);
}

.page_card_placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #faf3f8, #ebd0e5);
}

.page_card_placeholder i {
  font-size: 48px;
  color: #9b177e;
  opacity: 0.4;
}

.page_card_body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page_card_tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #9b177e;
  background: #faf3f8;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
}

.page_card_body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.page_card_body p {
  font-size: 14px;
  color: var(--light-dark);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.page_card_link {
  font-size: 14px;
  font-weight: 700;
  color: #9b177e;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.page_card:hover .page_card_link {
  gap: 10px;
}

/* ============================================
   SEO HIGHLIGHT BLOCK
   ============================================ */
.seo_highlight_block {
  margin-bottom: 20px;
}

.seo_highlight_inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, #161a1d, #2e1a2e);
  border-radius: 14px;
  padding: 32px 36px;
  border-left: 5px solid #9b177e;
}

.seo_highlight_icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(155, 23, 126, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo_highlight_icon i {
  font-size: 22px;
  color: #e88ed5;
}

.seo_highlight_content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  border-left: none;
  padding-left: 0;
}

.seo_highlight_content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.seo_highlight_content b {
  color: #e88ed5;
}

/* ============================================
   FAQ STYLES
   ============================================ */
.faq_title {
  font-size: 28px;
  font-weight: bold;
  color: #1c1e21;
  margin-bottom: 30px;
}

.faq_item {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #fff;
}
.faq_item.active .faq_question {
  background-color: #f0f0f0;
}

.faq_item h3 {
  font-size: 20px;
  margin-bottom: 0px;
}

.faq_question {
  width: 100%;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  background: #fff;
  color: #222831;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  outline: none;
  transition: background 0.3s ease;
}

.faq_question:hover {
  background-color: #f0f0f0;
}

.faq_answer {
  display: none;
  color: var(--light-dark);
  animation: fadeIn 0.3s ease-in-out;
  padding: 18px 20px;
}

.faq_answer p {
  font-size: 16px !important;
  margin-bottom: 0px !important;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq_item.active .arrow {
  transform: rotate(180deg);
}

/* ============================================
   CASINO REVIEW
   ============================================ */
.casino_review_top_wrapper {
  background-color: #ebd0e5;
  padding: 15px 0px;
  z-index: 1000;
}

.casino_review_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.casino_review_logo img {
  width: 150px;
  border-radius: 10px;
}

/* ============================================
   EXPERT CARD
   ============================================ */
.expert_card_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 60px;
  width: 100%;
  background-color: #faf3f8;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  overflow: hidden;
}

.expert_image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 100%;
}

.expert_left_content {
  width: 100%;
}

.expert_left_content h4 {
  font-size: 19px;
  margin-bottom: 10px;
}

.expert_left_content p {
  font-size: 14px;
  margin: 10px 0px;
}

.expert_left_content p:last-child {
  margin-bottom: 0px;
}

/* ============================================
   RESPONSIVE IMAGES
   ============================================ */
.responsive_img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   MOBILE STYLES
   ============================================ */
@media (max-width: 768px) {
  /* Hero */
  .hero_section {
    padding: 50px 0 40px;
  }

  .hero_section h1 {
    font-size: 32px;
  }

  .hero_subtitle {
    font-size: 16px;
  }

  .hero_cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn_hero_primary,
  .btn_hero_secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero_trust {
    flex-direction: column;
    gap: 10px;
  }

  /* Features */
  .features_section {
    padding: 30px 0;
  }

  .features_grid {
    gap: 8px;
  }

  .feature_item {
    flex: 1 1 140px;
    padding: 16px 8px;
  }

  .feature_icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .feature_icon i {
    font-size: 20px;
  }

  .feature_item h3 {
    font-size: 14px;
  }

  .feature_item p {
    font-size: 12px;
  }

  /* Page cards */
  .page_cards_grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page_cards_heading {
    font-size: 24px;
  }

  .page_card_image {
    height: 160px;
  }

  /* SEO highlight */
  .seo_highlight_inner {
    flex-direction: column;
    padding: 24px 20px;
  }

  /* FAQ */
  .faq_item h3 {
    font-size: 16px;
  }

  /* Casino review */
  .casino_review_top_wrapper {
    width: 100%;
    position: fixed;
    bottom: 0px;
  }

  .casino_review_logo img {
    width: 90px;
  }

  .btn.review {
    width: 120px;
    font-size: 16px;
  }

  /* Expert */
  .expert_card_container {
    row-gap: 20px;
    flex-direction: column;
    padding: 20px 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .page_cards_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
