/*  biblesports Games CSS */

.biblesports-games {
  --bs-navy:      #0d1f3c;
  --bs-navy-mid:  #162c52;
  --bs-gold:      #f5a623;
  --bs-gold-dk:   #d4861a;
  --bs-red:       #c0392b;
  --bs-white:     #ffffff;
  --bs-offwhite:  #f5f3ef;
  --bs-text:      #1c1c2e;
  --bs-muted:     #6b7280;
  --bs-border:    #e2dfd6;
  --bs-radius:    8px;
  --bs-shadow-sm: 0 2px 10px rgba(13,31,60,.08);
  --bs-shadow-md: 0 6px 28px rgba(13,31,60,.13);
  --bs-font-head: 'Oswald', sans-serif;
  --bs-font-body: 'Source Sans 3', sans-serif;
  --bs-tr:        .22s ease;

  background: var(--bs-offwhite);
  color: var(--bs-text);
}

/* ── Page hero ── */
/* REMOVED: .bs-page-stripe (not in final) */

.biblesports-games .bs-page-hero {
  margin-bottom: 30px;
}
.biblesports-games {
  background-color: #fff;
}
.biblesports-games .bs-page-hero .bs-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0B5F3A;
  margin-bottom: 6px;
  text-align: center;
}
.biblesports-games .bs-page-hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
}
/* REMOVED: .bs-page-hero h1 span (gold span, not in final) */

input[type=search]:focus {
    outline: none !important;
}

/* ── Page body layout ── */
.biblesports-games .bs-page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 64px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

/* ===== SIDEBAR / CATEGORIES ===== */
.biblesports-games .bs-categories {
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.biblesports-games .bs-cat-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bs-navy);
  border-bottom: 3px solid #f4a300;
  padding-bottom: 10px;
  margin-bottom: 4px;
}

/* Group container */
.biblesports-games .bs-cat-group {
  background: var(--bs-white);
  border-radius: var(--bs-radius);
  overflow: hidden;
  box-shadow: var(--bs-shadow-sm);
  margin-bottom: 8px;
}

/* Group header button */
.biblesports-games .bs-cat-header {
  width: 100%;
  background: #1a1a1a;
  color: var(--bs-white);
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--bs-tr), color var(--bs-tr);
  border-radius: 0;
  line-height: 20px;
}

/* Arrow — hidden on desktop, shown on mobile */
.biblesports-games .bs-cat-arrow {
  display: none;
  font-size: 12px;
  transition: transform .25s;
}
.biblesports-games .bs-cat-header[aria-expanded="true"] .bs-cat-arrow {
  transform: rotate(180deg);
}

/* Category body — always visible on desktop */
.biblesports-games .bs-cat-body {
  padding: 6px 0;
  border: 2px solid rgba(11, 95, 58, .15);
  text-align: center;
  margin: auto;
}

/* Individual checkbox row */
.biblesports-games .bs-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background var(--bs-tr);
}
.biblesports-games .bs-cat-item:hover {
  background: #f0eee8;
}

/* Custom checkbox */
.biblesports-games .bs-cat-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 3px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color var(--bs-tr), background var(--bs-tr);
}
.biblesports-games .bs-cat-item input[type="checkbox"]:checked {
  background: var(--bs-navy);
  border-color: var(--bs-navy);
}
.biblesports-games .bs-cat-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.biblesports-games .bs-cat-item .label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bs-text);
  cursor: pointer;
  user-select: none;
  line-height: 1.3;
}

/* ══════════════════════════════════════
   CONTENT AREA
══════════════════════════════════════ */
.biblesports-games .bs-content-area {
  flex: 1;
  min-width: 0;
}

.biblesports-games .bs-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.biblesports-games .bs-results-count {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bs-muted);
}
.biblesports-games .bs-results-count strong {
  color: var(--bs-navy);
}

.biblesports-games .bs-top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.biblesports-games .bs-top-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--bs-tr), transform var(--bs-tr);
}
.biblesports-games .bs-top-btn:active { transform: scale(.97); }
.biblesports-games .bs-top-btn svg { width: 13px; flex-shrink: 0; }

.biblesports-games .bs-top-btn-dl {
  background: var(--bs-navy);
  color: var(--bs-white);
}
.biblesports-games .bs-top-btn-dl:hover { background: var(--bs-navy-mid); }
.biblesports-games .bs-top-btn-dl svg { fill: var(--bs-white); }

.biblesports-games .bs-top-btn-play {
  background: var(--bs-red);
  color: var(--bs-white);
}
.biblesports-games .bs-top-btn-play:hover { background: #a93226; }
.biblesports-games .bs-top-btn-play svg { fill: var(--bs-white); }

/* ══════════════════════════════════════
   PRODUCT GRID
══════════════════════════════════════ */
.biblesports-games .bs-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ── Product card ── */
.biblesports-games .bs-product-card {
  background: var(--bs-white);
  border-radius: var(--bs-radius);
  overflow: hidden;
  box-shadow: var(--bs-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--bs-tr), box-shadow var(--bs-tr);
  animation: bsFadeUp .45s ease both;
}
.biblesports-games .bs-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bs-shadow-md);
}

@keyframes bsFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Card image wrapper ── */
.biblesports-games .bs-card-img-wrap {
  padding-top: 0;
  height: auto;
}

.biblesports-games .bs-card-img-wrap img {
  position: static;
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.biblesports-games .bs-product-card:hover .bs-card-img-wrap img {
  transform: scale(1.06);
}

/* ── Gold badge top-left of image ── */
.biblesports-games .bs-card-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  background: var(--bs-gold);
  color: var(--bs-navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
}

/* ── Circular play button bottom-right of image ── */
.biblesports-games .bs-card-play-btn {
  position: absolute;
  bottom: 9px;
  right: 9px;
  width: 32px;
  height: 32px;
  background: var(--bs-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background var(--bs-tr), transform var(--bs-tr);
}
.biblesports-games .bs-card-play-btn:hover {
  background: var(--bs-gold);
  transform: scale(1.1);
}
.biblesports-games .bs-card-play-btn svg {
  width: 11px;
  fill: white;
  margin-left: 2px;
}

/* ── Card body ── */
.biblesports-games .bs-card-body {
  padding: 13px 13px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid rgba(11, 95, 58, .15);
}

.biblesports-games .bs-card-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #1c1c2e;
  line-height: 1.35;
}

.biblesports-games .bs-card-meta {
  font-size: 11.5px;
  color: var(--bs-muted);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f4a300 !important;
    color: #1a1a1a !important;
}
.select2-container--default {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1c1c2e !important;
}
.select2-container{
    width: 90% !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    text-align: start !important;
}
.biblesports-games .bs-card-actions {
  display: flex;
  gap: 7px;
  margin-top: auto;
}

.biblesports-games .bs-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  border-radius: 5px;
  border: none;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--bs-tr), transform var(--bs-tr);
}
.biblesports-games .bs-btn:active { transform: scale(.97); }
.biblesports-games .bs-btn svg { width: 11px; flex-shrink: 0; }

.biblesports-games .bs-btn-dl  { background: var(--bs-navy); color: var(--bs-white); }
.biblesports-games .bs-btn-dl:hover { background: var(--bs-navy-mid); }
.biblesports-games .bs-btn-dl svg { fill: white; }

.biblesports-games .bs-btn-play { background: #f4a300; color: #1a1a1a; border-radius: 50px; }
.biblesports-games .bs-btn-play:hover { transform: scale(1.05); background: #ffb820; color: #1a1a1a; }
.biblesports-games .bs-btn-play svg { fill: #1a1a1a; }

/* ══════════════════════════════════════
   BOTTOM ACTIONS & PAGINATION
══════════════════════════════════════ */
.biblesports-games .bs-bottom-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--bs-border);
  border-bottom: 1px solid var(--bs-border);
}

.biblesports-games .bs-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 12px;
}
.biblesports-games .bs-pg-info { font-size: 13px; color: var(--bs-muted); }
.biblesports-games .bs-pg-info strong { color: var(--bs-navy); }
.biblesports-games .bs-pg-controls { display: flex; gap: 5px; }

.biblesports-games .bs-pg-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 2px solid var(--bs-border);
  background: var(--bs-white);
  font-size: 13px;
  font-weight: 700;
  color: var(--bs-navy);
  cursor: pointer;
  transition: all var(--bs-tr);
}
.biblesports-games .bs-pg-btn:hover   { border-color: #1a1a1a; }
.biblesports-games .bs-pg-btn.active  { background: #1a1a1a; border-color: #1a1a1a; color: white; }
.biblesports-games .bs-pg-btn:disabled { opacity: .35; cursor: not-allowed; pointer-events: none; }

/* ══════════════════════════════════════
   CARD BUTTON VISIBILITY
══════════════════════════════════════ */
.bs-card-actions .bs-btn-dl,
.bs-card-actions .bs-btn-play {
    display: none;
}
.bs-card-actions .bs-btn-dl.show,
.bs-card-actions .bs-btn-play.show {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ══════════════════════════════════════
   RESPONSIVE — DESKTOP BREAKPOINTS
   (tablets only, no mobile changes here)
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .biblesports-games .bs-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .biblesports-games .bs-products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 767px)
   THIS IS THE FIXED SECTION
══════════════════════════════════════ */
@media (max-width: 767px) {

  /* Fix body overflow */
  .biblesports-games .bs-page-body {
    flex-direction: column;
    gap: 0;
    padding: 16px 12px 48px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  /* Content area must not overflow */
  .biblesports-games .bs-content-area {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* Sidebar full-width, not sticky */
  .biblesports-games .bs-categories {
    width: 100%;
    position: static;
    margin-bottom: 16px;
    gap: 4px;
  }

  /* Show arrow on mobile */
  .biblesports-games .bs-cat-arrow {
    display: inline;
  }

  /* Mobile: header becomes accordion toggle */
  .biblesports-games .bs-cat-header {
    background: var(--bs-offwhite);
    color: var(--bs-navy);
    border-bottom: 1px solid var(--bs-border);
    padding: 13px 16px;
    font-size: 11.5px;
  }
  .biblesports-games .bs-cat-header[aria-expanded="true"] {
    background: var(--bs-navy);
    color: var(--bs-white);
    border-bottom: none;
  }

  /* Body collapses on mobile */
  .biblesports-games .bs-cat-body {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .32s ease;
  }
  .biblesports-games .bs-cat-body.open {
    max-height: 600px;
    padding: 6px 0;
  }

  /* Bigger touch targets */
  .biblesports-games .bs-cat-item { padding: 10px 16px; }

  /* KEY FIX: single column grid, constrained width */
  .biblesports-games .bs-products-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
  }

  /* Card must not overflow its column */
  .biblesports-games .bs-product-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  /* Image natural height on mobile */
  .biblesports-games .bs-card-img-wrap img {
    height: auto;
    max-height: 220px;
    object-fit: cover;
    width: 100%;
  }

  /* Card body tighter on mobile */
  .biblesports-games .bs-card-body {
    padding: 12px;
  }

  /* Smaller button text on mobile */
  .biblesports-games .bs-top-btn { padding: 9px 12px; font-size: 11px; }

  /* Pagination centered */
  .biblesports-games .bs-pagination {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .biblesports-games .bs-pg-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    width: 100%;
  }

  .biblesports-games .bs-pg-btn {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .devotional-page .page {
        padding: 30px 10px 5px;
    }
}

/* ══════════════════════════════════════
   Login CSS
══════════════════════════════════════ */
#ajax-login-form {
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#ajax-login-form h2 {
  background: #1a2a4a;
  color: #ffffff;
  text-align: center;
  padding: 30px 20px 28px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #e8a020;
  line-height: 1.1;
  position: relative;
}

.login-subtitle {
  display: block;
  font-size: 13px;
  color: #ccc;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

#bs-login-form {
  padding: 30px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#bs-login-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 8px;
  margin-top: 18px;
}

#bs-login-form label:first-of-type {
  margin-top: 0;
}

#bs-login-form input[type="text"],
#bs-login-form input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  border: solid 1px #000;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

#bs-login-form input[type="text"]::placeholder,
#bs-login-form input[type="password"]::placeholder {
  color: #888;
}

.forgot-password {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 18px;
}

.forgot-password a {
  color: #e8a020;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.forgot-password a:hover {
  color: #c8881a;
  text-decoration: underline;
}

p.status {
  font-size: 13px;
  color: #c0392b;
  min-height: 18px;
  margin-bottom: 4px;
}

#bs-login-form input[type="submit"] {
  width: 100%;
  padding: 16px;
  background: #f4a300;
  color: #1a1a1a;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-bottom: 12px;
}

#bs-login-form input[type="submit"]:hover {
  transform: scale(1.05);
  background: #ffb820;
  color: #1a1a1a;
}

#bs-login-form input[type="submit"]:active {
  transform: scale(0.99);
}

#bs-login-form a.signup_btn {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: #0B5F3A;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.1s ease;
}

#bs-login-form a.signup_btn:hover {
  background: #0B5F3A;
  color: #ffffff;
  transform: scale(1.05);
}

#bs-login-form a.signup_btn:active {
  transform: scale(0.99);
}

@media (max-width: 520px) {
  #bs-login-form {
    padding: 24px 20px 28px;
  }
}

/* ── LOGIN MODAL OVERLAY ── */
#bible_sports_section {
  position: relative !important;
}

#ajax-login-form {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0, 0, 0, 0.65) !important;
  padding: 20px !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}

#ajax-login-form h2,
#ajax-login-form #bs-login-form {
  width: 100% !important;
  max-width: 500px !important;
}

#ajax-login-form h2 {
  background: #1a1a1a !important;
  color: #fff !important;
  text-align: center !important;
  padding: 30px 20px 28px !important;
  border-radius: 4px 4px 0 0 !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  display: block !important;
}

#ajax-login-form #bs-login-form {
  background: #ffffff !important;
  border-radius: 0 0 4px 4px !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5) !important;
  padding: 30px 40px 36px !important;
  margin: 0 !important;
  max-height: 80vh !important;
  overflow-y: auto !important;
}

/* Signup Button */
.signup_btn {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 10px;
    border-radius: 6px;
    background: #f3f3f3;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.signup_btn:hover { background: #e6e6e6; }

.status {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: red;
}

@media (max-width: 480px) {
    #bs-login-form { margin: 20px; padding: 20px; }
}
@media (max-width: 767px) {
  .g-recaptcha {
    transform: scale(0.87);
    transform-origin: left top;
  }

  #bs-login-form .g-recaptcha,
  #ajax-login-form .g-recaptcha {
    transform: scale(0.87);
    transform-origin: left top;
  }
}
@media (max-width: 400px) {
  .g-recaptcha,
  #bs-login-form .g-recaptcha,
  #ajax-login-form .g-recaptcha {
    transform: scale(0.78);
    transform-origin: left top;
  }
}

/* ══════════════════════════════════════
   GrassBlade Table
══════════════════════════════════════ */
.bs_grassblade_table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 15px 0 !important;
  font-family: inherit;
}
.bs_grassblade_table caption {
  caption-side: top !important;
  text-align: right !important;
  padding-bottom: 5px !important;
  color: #777 !important;
  font-size: 11px !important;
}
.bs_grassblade_table thead tr {
  background: #0f2a44 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}
.bs_grassblade_table th {
  background: #1a1a1a !important;
  color: #ffffff !important;
  padding: 10px !important;
  text-transform: uppercase;
}
.bs_grassblade_table td {
  background: #ffffff !important;
  color: #333 !important;
  padding: 10px !important;
  border-top: 5px solid #f5f5f5 !important;
}
.bs_grassblade_table tbody td:first-child { font-weight: 600 !important; }
.bs_grassblade_table tr.odd td,
.bs_grassblade_table tr.tr_odd td { background: #f9fbfd !important; }
.bs_grassblade_table tbody tr:hover td { background: #eef4f9 !important; }

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.bs_grassblade_table tr th,
.bs_grassblade_table tr td { white-space: nowrap; }

/* ══════════════════════════════════════
   Navigation Buttons
══════════════════════════════════════ */
.biblesports-games .bs-activity-navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  gap: 10px;
}
.biblesports-games .bs-activity-navigation-buttons .nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 44px;
  padding: 0 16px;
  font-family: var(--bs-font-head);
  font-size: 16px;
  border-radius: var(--bs-radius);
  text-decoration: none;
  transition: var(--bs-tr);
  box-shadow: var(--bs-shadow-sm);
}
.biblesports-games .bs-activity-navigation-buttons a.nav-button {
  background: var(--bs-navy);
  color: var(--bs-white);
}
.biblesports-games .bs-activity-navigation-buttons a.nav-button:hover {
  background: var(--bs-navy-mid);
  transform: translateY(-2px);
}
.biblesports-games .bs-activity-navigation-buttons a.next {
  background: var(--bs-gold);
  color: var(--bs-white);
}
.biblesports-games .bs-activity-navigation-buttons a.next:hover {
  background: var(--bs-gold-dk);
  transform: translateY(-2px);
}
.biblesports-games .bs-activity-navigation-buttons .nav-button[style*="not-allowed"] {
  background: #ddd !important;
  color: #999 !important;
  box-shadow: none;
  pointer-events: none;
}
.bs-activity-navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.biblesports-games .bs-activity-navigation-buttons .nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════════════
   Registration Form
══════════════════════════════════════ */
.registration-wrapper {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  margin: 40px auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}
.reg-header {
  background: #1a1a1a;
  padding: 22px 32px;
  text-align: center;
}
.reg-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 !important;
}
.reg-body {
  padding: 32px;
  background: #fff;
}
#custom-user-registration-form .form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a2744;
  margin-bottom: 7px;
}
#custom-user-registration-form .form-label span {
  color: #c0392b;
  margin-left: 2px;
}
#custom-user-registration-form .form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: #000;
  border: 1px solid #000;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
#custom-user-registration-form .form-control::placeholder { color: #8896b3; }
#custom-user-registration-form .mb-3 { margin-bottom: 20px; }
#custom-user-registration-form .row {
  display: flex;
  gap: 16px;
  margin-left: 0;
  margin-right: 0;
}
#custom-user-registration-form .row.mb-3 { margin-bottom: 20px; }
#custom-user-registration-form .col-md-6 {
  flex: 1;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}
#custom-user-registration-form .g-recaptcha { display: inline-block; }
#custom-user-registration-form .text-muted { font-size: 12px; color: #8896b3; }
#custom-user-registration-form .text-muted span { color: #c0392b; font-weight: 700; }
#custom-user-registration-form .btn-primary {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  background: #f4a300;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}
#custom-user-registration-form .btn-primary:hover {
  transform: scale(1.05);
  background: #ffb820;
  color: #1a1a1a;
}
#custom-user-registration-form .btn-primary:active { transform: translateY(0); }
#registration-response {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 580px) {
  .reg-body { padding: 24px 16px; }
  .reg-header { padding: 18px 16px; }
  .reg-header h2 { font-size: 22px; }
  #custom-user-registration-form .row { flex-direction: column; gap: 0; }
  #custom-user-registration-form .col-md-6 { width: 100%; margin-bottom: 20px; }
}

.nav-button {
  border-color: #f4a300 !important;
  background-color: #f4a300 !important;
}
/* End */
/* Button Disable*/
.bs-top-actions,.bs-bottom-actions {
    display: none !important;
}
.biblesports-games .bs-btn-play {
    display: flex !important;
}
/* Button Disable*/

/*Day Template*/
.devotional-page{
  font-family:"Noto Sans", sans-serif;
}
/* SMALL TEXT */
.devotional-page .hero-sub,
.devotional-page .card-text,
.devotional-page .match-meta,
.devotional-page .game-sub,
.devotional-page .game-badge,
.devotional-page .day-nav,
.devotional-page .nation-tag,
.devotional-page .main-btn,
.devotional-page .play-btn{
  font-family:"Noto Sans", sans-serif;
}
.devotional-page *,
.devotional-page *::before,
.devotional-page *::after{
  box-sizing:border-box;
}
/* Space between menu and date text */
.devotional-page .hero-top{
    margin-bottom:28px;
}
.devotional-page .hero-date{
    margin-top:50px;
}
.devotional-page{
  background:#f3f3f1;
  color:#222;
  padding-bottom:40px;
}

/* HERO */

.devotional-page .hero{
   background: linear-gradient(90deg, #07552f 0%, #0b6c3f 50%, #064926 100%);
    padding: 46px 20px 5px;
    text-align: center;
}

.devotional-page .hero-date{
  color:#ffb300;
  font-size:14px;
  font-weight:700;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:22px;
}

.devotional-page .hero h1{
  font-family:Arial, sans-serif;
  color:#fff;
  font-size:50px;
  font-weight:800;
  line-height:1.15;
  margin-bottom:16px;
}

.devotional-page .hero-sub{
  color:rgba(255,255,255,.82);
  font-size:20px;
}

.devotional-page .hero-sub span{
  color:#ffb300;
  font-weight:700;
}

/* PAGE */

.devotional-page .page{
  max-width:1120px;
  margin:auto;
  padding:34px 24px 50px;
}

/* SECTION CARD */
.devotional-page .card-label{
  display:flex;
  align-items:center;
  gap:10px;
  color:#f2a500;
  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:18px;
}

.devotional-page .card-title, .devotional-page .card-title a{
  font-family:Arial, sans-serif;
  font-size:28px;
  font-weight:800;
  color:#0b5f3a;
  margin-bottom:5px;
  text-transform: uppercase;
}

.devotional-page .card-text, .devotional-page .card-text p{
  color:#555;
  font-size:16px;
  line-height:1.7;
  margin-bottom:24px;
}

.devotional-page .main-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#0b6c3f;
  color:#fff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:8px;
  font-weight:700;
  font-size:16px;
  transition:.2s;
}

.devotional-page .main-btn:hover{
  background:#08542f;
}

/* NATIONS */

.devotional-page .nation-tags{
  display:flex;
  gap:12px;
  margin-bottom:14px;
  flex-wrap:wrap;
}

.devotional-page .nation-tag{
  background:#f3f3f1;
  color:#222222;
  border:1px solid #ddd;
  padding:10px 16px;
  border-radius:999px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
}
.devotional-page .nation-tag a{
  color:#222222;
}
.devotional-page .nation-tag a:hover{
   color:#555; 
}

.devotional-page .match-meta{
  color:#888;
  font-size:15px;
  margin-bottom:18px;
}

/* DIVIDER */

.devotional-page .games-divider{
  display:flex;
  align-items:center;
  gap:16px;
  margin:26px 0 22px;
}

.devotional-page .games-divider::before,
.devotional-page .games-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:#ddd;
}

.devotional-page .games-divider span{
  color:#0b6c3f;
  font-size:18px;
  font-weight:800;
  letter-spacing:4px;
  text-transform:uppercase;
}

/* GAMES GRID */

.devotional-page .games-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:24px;
}

.devotional-page .game-card{
  background:#fff;
  border:1px solid #ddd;
  border-radius:12px;
  padding:34px 24px 24px;
  text-align:center;
  position:relative;
}

.devotional-page .game-card::after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  border-style:solid;
  border-width:0 22px 22px 0;
  border-color:transparent #f2a500 transparent transparent;
}

.devotional-page .game-icon{
  font-size:34px;
  color:#444;
  margin-bottom:20px;
}

.devotional-page .game-title{
  font-family:Arial, sans-serif;
  color:#0b5f3a;
  font-size:25px;
  font-weight:800;
  margin-bottom:8px;
}

.devotional-page .game-sub{
  color:#888;
  margin-bottom:22px;
  font-size:16px;
}

.devotional-page .play-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#0b6c3f;
  color:#fff;
  text-decoration:none;
  padding:12px 22px;
  border-radius:8px;
  font-weight:700;
  margin-bottom:5px;
}

.devotional-page .game-badge{
  color:#999;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
}

/* DAY NAV */

.devotional-page .day-nav{
  background:#fff;
  border:1px solid #ddd;
  border-radius:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 24px;
}

.devotional-page .day-nav a{
  text-decoration:none;
  color:#0b5f3a;
  font-weight:700;
}

.devotional-page .day-nav-center{
  color:#333;
  font-weight:600;
}

/* RESPONSIVE */

@media(max-width:900px){

  .devotional-page .hero h1{
    font-size:42px;
  }

  .devotional-page .hero-sub{
    font-size:18px;
  }

  .devotional-page .games-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:640px){

  .devotional-page .hero h1{
    font-size:34px;
  }

  .devotional-page .card-title{
    font-size:24px;
  }

  .devotional-page .card-text{
    font-size:16px;
  }

  .devotional-page .game-title{
    font-size:24px;
  }

  .devotional-page .day-nav{
    flex-direction:column;
    gap:14px;
  }
}

/*Prayer Section*/
.featured_home_page{
    padding-top:50px;
    padding-bottom:50px;
}

/* =========================
   HEADER
========================= */

.featured_home_page .top_header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:34px;
}

.featured_home_page .tag{
    display:block;
    margin-bottom:10px;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    color:#d6a21c;
}

.featured_home_page .top_header h2 em{
    font-style:italic;
    font-weight:600;
}

.featured_home_page .match_count{
    padding-top:18px;
    font-size:14px;
    letter-spacing:1px;
    color:#6f6f6f;
}

/* =========================
   GRID - base
========================= */

.featured_home_page .card_grid{
    display:grid;
    gap:22px;
    grid-template-columns:repeat(3, 1fr);
}

.featured_home_page .card_grid--1{
    grid-template-columns:1fr;
}

.featured_home_page .card_grid--2{
    grid-template-columns:repeat(2, 1fr);
}

.featured_home_page .card_grid--4 .nation_card:last-child{
    grid-column:1 / -1;
}

.featured_home_page .card_grid--5{
    grid-template-columns:repeat(6, 1fr);
}

.featured_home_page .card_grid--5 .nation_card{
    grid-column:span 2;
}

.featured_home_page .card_grid--5 .nation_card:nth-last-child(-n+2){
    grid-column:span 3;
}

.featured_home_page .card_grid--7 .nation_card:last-child{
    grid-column:1 / -1;
}

.featured_home_page .card_grid--8{
    grid-template-columns:repeat(6, 1fr);
}

.featured_home_page .card_grid--8 .nation_card{
    grid-column:span 2;
}

.featured_home_page .card_grid--8 .nation_card:nth-last-child(-n+2){
    grid-column:span 3;
}

/* =========================
   CARD
========================= */

.featured_home_page .nation_card{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg, #003b1f 0%, #004c22 58%, #2c5e0c 100%);
    padding:24px;
    border-radius:28px 28px 42px 28px;
    min-height:255px;
    display:flex;
    flex-direction:column;
    color:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
}

.featured_home_page .nation_card::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(255,255,255,0.07), transparent 34%);
    pointer-events:none;
}

/* =========================
   TOP MATCH ROW
========================= */

.featured_home_page .card_top{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:28px;
}

.featured_home_page .team,
.featured_home_page .team a{
    width:58px;
    height:58px;
    border-radius:50%;
    border:3px solid rgba(214,162,28,0.55);
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d8d8d8;
    font-size:24px;
    font-weight:700;
    flex-shrink:0;
    box-shadow:inset 0 0 0 4px rgba(255,255,255,0.02);
}

.featured_home_page .team a:hover{
    color:#f0b400;
}

.featured_home_page .v-dash{
    flex:1;
    height:1px;
    background:rgba(255,255,255,0.18);
}

.featured_home_page .vs{
    color:#f0b400;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
}

/* =========================
   TITLE
========================= */

.featured_home_page .nation_card h3{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.4;
    font-weight:800;
}

.featured_home_page .nation_card h3 span{
    color:#f0b400;
    margin:0 6px;
}

.featured_home_page .nation_card h3 a{
    color:#fff;
    text-decoration:none;
    transition:0.25s ease;
}

.featured_home_page .nation_card h3 a:hover{
    color:#f0b400;
}

/* =========================
   META
========================= */

.featured_home_page .meta{
    margin:0;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:rgba(255,255,255,0.7);
}

/* =========================
   DIVIDER
========================= */

.featured_home_page .divider{
    height:1px;
    margin:24px 0;
    background:rgba(255,255,255,0.12);
}

/* =========================
   DESCRIPTION
========================= */

.featured_home_page .desc{
    margin:0;
    position:relative;
    padding-left:18px;
    font-size:16px;
    line-height:1.6;
    color:#f3f3f3;
}

.featured_home_page .desc::before{
    content: "\201C";
    position:absolute;
    left:0;
    top:-4px;
    font-size:28px;
    line-height:1;
    color:#f0b400;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px){

    .featured_home_page .card_grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .featured_home_page .card_grid--1{
        grid-template-columns:1fr;
    }

    .featured_home_page .card_grid .nation_card{
        grid-column:auto;
    }

    .featured_home_page .card_grid--3 .nation_card:last-child,
    .featured_home_page .card_grid--5 .nation_card:last-child,
    .featured_home_page .card_grid--7 .nation_card:last-child{
        grid-column:1 / -1;
    }

    .featured_home_page .top_header h2{
        font-size:42px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px){

    .featured_home_page{
        padding:20px;
    }

    .featured_home_page .top_header{
        flex-direction:column;
    }

    .featured_home_page .top_header h2{
        font-size:34px;
    }

    .featured_home_page .card_grid,
    .featured_home_page .card_grid--1,
    .featured_home_page .card_grid--2,
    .featured_home_page .card_grid--3,
    .featured_home_page .card_grid--4,
    .featured_home_page .card_grid--5,
    .featured_home_page .card_grid--6,
    .featured_home_page .card_grid--7,
    .featured_home_page .card_grid--8{
        grid-template-columns:1fr !important;
    }

    .featured_home_page .card_grid .nation_card{
        grid-column:auto !important;
    }

    .featured_home_page .nation_card{
        min-height:auto;
        border-radius:24px 24px 34px 24px;
    }

    .featured_home_page .team,
    .featured_home_page .team a{
        width:52px;
        height:52px;
        font-size:20px;
    }
}

/* =========================
   SECTION CARD STYLE
========================= */

.devotional-page .section-card,
.devotional-page .featured_home_page{
    position:relative;
    background:#fff;
    border:1px solid #ddd;
    border-left:5px solid #f2a500;
    border-radius:12px;
    padding:34px 28px;
    margin-bottom:26px;
    box-shadow:0 1px 2px rgba(0,0,0,0.03);
}
/*End*/

.nation_card__header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

.nation_card__flag_wrap{
    width:42px;
    height:42px;
    border-radius:50%;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:2px solid rgba(255,255,255,.7);
    box-shadow:
        0 3px 10px rgba(0,0,0,.18),
        inset 0 0 0 2px rgba(255,255,255,.15);
    flex-shrink:0;
}

.nation_card__flag{
    width:100%;
    object-fit:cover;
    display:block;
}

.nation_card h3{
    margin:0;
    font-size:32px;
    line-height:1.1;
}

.language-switcher{
    margin-bottom:20px;
    text-align:right;
}
.language-switcher select{
    padding:10px 14px;
    border-radius:8px;
    min-width:180px;
}

/* Select2 container */

/* Selected field */
.biblesports-games .select2-container--default .select2-selection--single {
    height: 42px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px;
    display: flex !important;
    align-items: center;
    background: #fff !important;
}

/* Selected text */
.biblesports-games .select2-container--default .select2-selection--single 
.biblesports-games .select2-selection__rendered {
    line-height: 42px !important;
    padding-left: 12px;
    color: #222 !important;
    font-size: 16px;
}

/* Arrow alignment */
.biblesports-games .select2-container--default .select2-selection--single 
.biblesports-games .select2-selection__arrow {
    height: 42px !important;
}

/* Dropdown */
.biblesports-games .select2-dropdown {
    border: 1px solid #ccc !important;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    z-index: 9999 !important;
}

/* Options */
.biblesports-games .select2-results__option {
    padding: 10px 12px !important;
    font-size: 16px;
}

/* Highlighted option */
.biblesports-games .select2-container--default 
.biblesports-games .select2-results__option--highlighted.select2-results__option--selectable {
    background: #f4a900 !important;
    color: #000 !important;
}
.biblesports-games .select2-container--default .select2-selection--single .select2-selection__rendered{
     color: #000 !important;
}
/* Show dropdown arrow */
.biblesports-games .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    position: absolute;
    top: 0;
    right: 10px;
    width: 20px;
}

/* Create custom arrow */
.biblesports-games .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #555 transparent transparent transparent !important;
    border-style: solid;
    border-width: 6px 5px 0 5px !important;
    height: 0;
    left: 50%;
    margin-left: -5px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
    display: block !important;
}
/* Dropdown background */
.biblesports-games .select2-dropdown {
    background: #fff !important;
    border: 1px solid #dcdcdc !important;
}

/* Dropdown option */
.biblesports-games .select2-results__option {
    background: #fff !important;
    color: #222 !important;
    padding: 12px 15px !important;
}

/* Hover option */
.biblesports-games .select2-results__option--highlighted.select2-results__option--selectable {
    background: #f4a900 !important;
    color: #000 !important;
}

/* Selected option */
.biblesports-games .select2-results__option--selected {
    background: #fff !important;
    color: #222 !important;
}

/* Main select box */
.biblesports-games .select2-container--default .select2-selection--single {
    background: #fff !important;
    border: 1px solid #ccc !important;
}

/* Rendered text */
.biblesports-games .select2-selection__rendered {
    color: #222 !important;
}

.biblesports-games li#select2-bsLanguageSwitcher-result-f92b-es {
    list-style: none;
}
.biblesports-games ul#select2-bsLanguageSwitcher-results {
    margin: 0;
    padding: 0;
}

/* Post CSS*/
/*
 * .bs-cat-world-cup-devotionals
 */
.bs-cat-world-cup-devotionals .bs-post-content {
    background-color: #022147;
    background-repeat: repeat;
    background-size: 300px auto;
    background-blend-mode: overlay;
    border-radius: 30px 30px 30px 30px;
    padding: 50px 0 40px;
    position: relative;
}
/* ── h1: "Day 1" — first h1 in content ── */
.bs-cat-world-cup-devotionals .bs-post-content h1:first-of-type {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6.3px;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin: 0 0 20px;
}

/* ── h1: "KICK-OFF" — second h1 ── */
.bs-cat-world-cup-devotionals .bs-post-content h1:nth-of-type(2) {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 10px;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin: 0 0 30px;
}

/* ── Scripture: first 2 <p> tags (bold ref + italic verse) ── */
.bs-cat-world-cup-devotionals .bs-post-content p{
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.2em;
    color: #ffffff91;
    text-align: center;
    padding: 0 30px;
    margin: 0 0 8px;
}
/* ── Image wrapper <p> — 3rd <p> contains the <img> ── */
.bs-cat-world-cup-devotionals .bs-post-content p:nth-of-type(3) {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    margin: 0 0 0;
}

/* ── Featured image ── */
.bs-cat-world-cup-devotionals .bs-post-content p:nth-of-type(3) img {
    width: 90%;
    border: 5px dotted #63BC8C;
    border-radius: 20px;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
    /* padding-bottom: 10px; */
}

/* ── Body paragraphs (4th <p> onwards, before PRAYER h1) ── */
.bs-cat-world-cup-devotionals .bs-post-content p:nth-of-type(n+4) {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1.1px;
    line-height: 1.4em;
    color: #ffffff91;
    text-align: left;
    padding: 0 20px 0 50px;
    margin: 0 10px 1em;
}

/* ── Empty trailing <p> ── */
.bs-cat-world-cup-devotionals .bs-post-content p:empty,
.bs-cat-world-cup-devotionals .bs-post-content .wp-block-paragraph:empty {
    display: none;
}

/* ── "PRAYER" label ── */
.bs-cat-world-cup-devotionals .bs-post-content h1:nth-of-type(3) {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6.3px;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 80px 20px 16px;
    /* Prayer bg starts here — using box-shadow trick for section bg */
    background-color: rgb(232 241 230 / 12%);
}

/* ── Prayer text ── */
.bs-cat-world-cup-devotionals .bs-post-content h1:nth-of-type(4) {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.4em;
    color: #ffffff91;
    text-align: center;
    margin: 0;
    padding: 0 5% 80px;
    background-color: rgb(232 241 230 / 12%);
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .bs-cat-world-cup-devotionals .bs-post-content h1:first-of-type {
        font-size: 22px;
        letter-spacing: 25px;
    }
    .bs-cat-world-cup-devotionals .bs-post-content h1:nth-of-type(2) {
        font-size: 22px;
        letter-spacing: 25px;
    }
    .bs-cat-world-cup-devotionals .bs-post-content p:nth-of-type(1),
    .bs-cat-world-cup-devotionals .bs-post-content p:nth-of-type(2) {
        font-size: 14px;
    }
    .bs-cat-world-cup-devotionals .bs-post-content p:nth-of-type(n+4) {
        font-size: 14px;
    }
    .bs-cat-world-cup-devotionals .bs-post-content h1:nth-of-type(3) {
        font-size: 22px;
        letter-spacing: 25px;
    }
    .bs-cat-world-cup-devotionals .bs-post-content h1:nth-of-type(4) {
        font-size: 22px;
        letter-spacing: 0.8px;
        line-height: 1.3em;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
    .bs-cat-world-cup-devotionals .bs-post-content h1:first-of-type {
        letter-spacing: 10px;
    }
    .bs-cat-world-cup-devotionals .bs-post-content h1:nth-of-type(2) {
        letter-spacing: 10px;
    }
    .bs-cat-world-cup-devotionals .bs-post-content p:nth-of-type(1),
    .bs-cat-world-cup-devotionals .bs-post-content p:nth-of-type(2) {
        font-size: 2.5vw;
        padding: 0;
    }
    .bs-cat-world-cup-devotionals .bs-post-content p:nth-of-type(n+4) {
        font-size: 2.5vw;
        padding: 10px;
        margin: 0 0 1em;
        text-align: center !important;
    }
    .bs-cat-world-cup-devotionals .bs-post-content h1:nth-of-type(3) {
        font-size: 22px;
        letter-spacing: 10px;
        padding-top: 60px;
    }
    .bs-cat-world-cup-devotionals .bs-post-content h1:nth-of-type(4) {
        font-size: 20px;
        letter-spacing: -0.5px;
        padding-bottom: 60px;
    }
}
/* ── Back Button ── */
.bs-back-btn-wrap {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    justify-content: right;
    position: relative;
    left: 0;
}
.bs-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #010101;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(74, 124, 89, 0.35);
    transition: box-shadow 0.25s, transform 0.2s;
}

.bs-back-btn:hover {
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.5);
    transform: translateY(-1px);
}

.bs-back-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(74, 124, 89, 0.3);
}

/* Arrow side — darker green block */
.bs-back-btn .bs-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.18);
    padding: 10px 12px;
    height: 100%;
    transition: background 0.2s;
}

.bs-back-btn:hover .bs-btn-arrow {
    background: rgba(0, 0, 0, 0.28);
}

.bs-back-btn .bs-btn-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    display: block;
    transition: transform 0.2s;
}

.bs-back-btn:hover .bs-btn-arrow svg {
    transform: translateX(-3px);
}

/* Label side */
.bs-back-btn .bs-btn-label {
    padding: 10px 18px 10px 14px;
}

/*
 * Scoped to .bs-cat-praying-the-world-stage
 */


.bs-cat-praying-the-world-stage {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
}

.bs-cat-praying-the-world-stage .bs-post-content {
    padding: 10px 0 40px;
}

/* ═══════════════════════════════════════
   ALL PARAGRAPHS — base style
   ═══════════════════════════════════════ */
.bs-cat-praying-the-world-stage .bs-post-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d;
    margin: 0 0 16px;
    text-align:center;
}

.bs-cat-praying-the-world-stage .bs-post-content p b,
.bs-cat-praying-the-world-stage .bs-post-content p strong {
    font-weight: 700;
    color: #1a1a1a;
    font-style: normal;
}

.bs-cat-praying-the-world-stage .bs-post-content p i,
.bs-cat-praying-the-world-stage .bs-post-content p em {
    font-style: italic;
}

/* ═══════════════════════════════════════
   IMAGE — works whether inside its own <p>
   or mixed with text in same <p>
   ═══════════════════════════════════════ */
.bs-cat-praying-the-world-stage .bs-post-content img {
    /*display: block;*/
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
    margin: 16px 0;
}

/* Any <p> that contains an img — remove default p padding */
.bs-cat-praying-the-world-stage .bs-post-content p:has(img) {
    margin: 0 0 24px;
    line-height: 1.5; /* scripture line above image */
    text-align: center;
}

/* ═══════════════════════════════════════
   GREY CARD — wraps body description text
   Target: <p> tags that have data-interaction-id
   (Elementor adds this attr to body text widgets)
   ═══════════════════════════════════════ */
.bs-cat-praying-the-world-stage .bs-post-content p[data-interaction-id] {
    background: #f2f3f5;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 24px 0 32px;
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d;
    clear: both;
}

/* ═══════════════════════════════════════
   TWO COLUMN LAYOUT — Prayer list left,
   body text right (matches Czech screenshot)
   Only when both h3+ul and p[data-interaction-id] exist
   ═══════════════════════════════════════ */
@media (min-width: 640px) {

    /* Float body description right */
    .bs-cat-praying-the-world-stage .bs-post-content p[data-interaction-id] {
        float: right;
        width: 100%;
        /* margin-left: 3%; */
        margin-top: 0;
    }

    /* Prayer Focus heading clears only on mobile */
    .bs-cat-praying-the-world-stage .bs-post-content h3 {
        clear: none;
    }

    /* ul stays left */
    .bs-cat-praying-the-world-stage .bs-post-content ul {
        width: 100%;
        float: left;
    }

    /* clearfix after ul */
    .bs-cat-praying-the-world-stage .bs-post-content ul::after {
        content: '';
        display: table;
        clear: both;
    }
}

/* ═══════════════════════════════════════
   H3 — "Prayer Focus:"
   ═══════════════════════════════════════ */
.bs-cat-praying-the-world-stage .bs-post-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.3;
    clear: both;
}

/* ═══════════════════════════════════════
   UL — Prayer list
   ═══════════════════════════════════════ */
.bs-cat-praying-the-world-stage .bs-post-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.bs-cat-praying-the-world-stage .bs-post-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d;
    padding: 0 0 14px 5px;
    position: relative;
}



/* ═══════════════════════════════════════
   CLEARFIX — reset float after content
   ═══════════════════════════════════════ */
.bs-cat-praying-the-world-stage .bs-post-content::after {
    content: '';
    display: table;
    clear: both;
}

/* ═══════════════════════════════════════
   EMPTY ELEMENTS
   ═══════════════════════════════════════ */
.bs-cat-praying-the-world-stage .bs-post-content p:empty,
.bs-cat-praying-the-world-stage .bs-post-content br:only-child {
    display: none;
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════ */
@media (max-width: 639px) {
    .bs-cat-praying-the-world-stage .bs-post-content p[data-interaction-id] {
        float: none;
        width: 100%;
        margin-left: 0;
        padding: 16px;
    }

    .bs-cat-praying-the-world-stage .bs-post-content ul {
        float: none;
        width: 100%;
    }

    .bs-cat-praying-the-world-stage .bs-post-content h3 {
        clear: both;
        font-size: 18px;
    }

    .bs-cat-praying-the-world-stage .bs-post-content img {
        max-width: 100%;
    }
    .language-switcher{
        text-align:center;
    }
    .bs-back-btn-wrap{
        justify-content: center;
    }
}
/* End */
/*New CSS*/
/* =========================
   WRAPPER
========================= */

.wrap_new {
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}

.wrap_new * {
  box-sizing: border-box;
}

/* =========================
   HEADINGS
========================= */

.wrap_new .play-today-heading {
  text-align: center;
  font-size: 28px;
  color: #0b6c3f;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.wrap_new .play-today-heading::before,
.wrap_new .play-today-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #d8d4cc;
  max-width: 120px;
}

/* =========================
   GRID
========================= */

.wrap_new .grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

/* =========================
   GAME CARDS  (static, side-by-side)
========================= */

.wrap_new .game-card-new {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e4e0d8;
  padding: 1.4rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: 0.2s ease;
}

.wrap_new .game-card-new:hover {
  box-shadow: 0 6px 20px rgba(11,108,63,0.10);
  transform: translateY(-2px);
}

.wrap_new .gold-corner {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent #f2a500 transparent transparent;
}

.wrap_new .card-icon  { font-size: 32px; line-height: 1; }

.wrap_new .card-title {
  font-size: 20px;
  color: #0b6c3f;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.wrap_new .card-desc {
  font-size: 16px;
  color: #888;
  text-align: center;
  letter-spacing: 0.02em;
}

.wrap_new .play-btn {
  margin-top: 6px;
  padding: 8px 22px;
  background: #0b6c3f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.wrap_new .play-btn:hover { background: #2a5a2a; color: #fff; }

.wrap_new .meta-tag {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* bottom nav — KTN slider only */
.wrap_new .slider-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid #f0ede8;
  gap: 10px;
  flex-wrap: wrap;
}

.wrap_new .dots {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.wrap_new .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8d4cc;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  padding: 0;
}

.wrap_new .dot.active {
  background: #0b6c3f;
  transform: scale(1.3);
}

.wrap_new .nav-btns {
  display: flex;
  gap: 6px;
}

.wrap_new .nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #e0ddd8;
  background: #fff;
  color: #5a7a5a;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  padding: 0;
}

.wrap_new .nav-btn:hover,
.wrap_new .nav-btn:focus {
  border-color: #0b6c3f;
  background: #0b6c3f;
  color: #f0e8c8;
}

.wrap_new .counter {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* =========================
   NATION CARD  (KTN)
========================= */

.wrap_new .nation-card {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e4e0d8;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 100%;
}

.wrap_new .gold-corner-lg {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent #f2a500 transparent transparent;
  z-index: 3;
}

.wrap_new .nc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.85rem;
  border-bottom: 1px solid #f0ede8;
}

.wrap_new .nc-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wrap_new .nc-icon {
  font-size: 34px;
  line-height: 1;
}

.wrap_new .nc-label-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wrap_new .nc-eyebrow {
  font-size: 13px;
  line-height: 27px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f2a500;
  font-weight: 700;
}

.wrap_new .nc-title {
  color: #0b5f3a;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.wrap_new .nc-slider-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.wrap_new .nc-slides {
  display: flex;
  width: 100%;
  transition: transform 0.42s cubic-bezier(.22,1,.36,1);
}

.wrap_new .nc-hero {
  min-width: 100%;
  background: #0b6c3f;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.wrap_new .nc-hero::before {
  content: '';
  position: absolute;
  right: -40px; top: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.wrap_new .nc-hero::after {
  content: '';
  position: absolute;
  right: 20px; top: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
}

.wrap_new .hero-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.wrap_new .hero-flag { flex-shrink: 0; display: flex; align-items: center; }
.wrap_new .hero-flag img { height: 32px; width: auto; display: block; border-radius: 4px; }

.wrap_new .hero-name {
  font-size: 42px;
  color: #f0e8c8;
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin: 0;
  word-break: break-word;
  font-weight: 800;
}

.wrap_new .hero-meta { width: 100%; }

.wrap_new .vs-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #1e4a1e;
  border: 1px solid #2a6a2a;
  border-radius: 20px;
  padding: 4px 10px;
}

.wrap_new .vs-name {
  font-size: 13px;
  color: #a0d0a0;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.wrap_new .hero-play-btn {
  padding: 8px 22px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff !important;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: 0.2s ease;
}

.wrap_new .hero-play-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* =========================
   SECTION
========================= */

.play-today-section { margin-bottom: 2rem; }

.play-today-section .games-divider .card-title {
  font-size: 28px;
  color: #0b6c3f;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

  .wrap_new .grid-wrap { grid-template-columns: 1fr; }

  .wrap_new .nc-top { padding: 16px; }
  .wrap_new .nc-title { font-size: 20px; }

  .wrap_new .nc-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
    gap: 14px;
  }

  .wrap_new .hero-info { width: 100%; gap: 10px; align-items: center; }
  .wrap_new .hero-flag img { height: 24px; }
  .wrap_new .hero-name { font-size: 24px; white-space: normal; }
  .wrap_new .hero-meta { width: 100%; margin-top: 6px; }

  .wrap_new .hero-play-btn {
    width: 100%;
    text-align: center;
    margin-top: 2px;
  }

  .wrap_new .nc-bottom { padding: 12px 16px; }

  .wrap_new .play-btn { width: 100%; text-align: center; }

  .play-today-section .games-divider .card-title { font-size: 22px; }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .wrap_new .hero-name { font-size: 21px; }
  .wrap_new .hero-play-btn { font-size: 11px; padding: 10px 14px; }
  .wrap_new .nc-title { font-size: 18px; }
  .wrap_new .hero-flag img { height: 22px; }
}
/*End*/