/* =====================================================
   GAME LIBRARY BOTTOM
===================================================== */

.game-library-bottom{
  position:relative;
  padding:22px 24px 72px;
}

.game-library-bottom-wrap{
  position:relative;
  width:min(1160px, 100%);
  margin:0 auto;
  padding:26px;

  display:grid;
  grid-template-columns:minmax(310px, 1fr) minmax(330px, 1.05fr) minmax(270px, .82fr);
  gap:22px;
  align-items:center;

  border-radius:30px;

  background:
    radial-gradient(circle at 4% 16%, rgba(255,216,122,.2), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(18,98,50,.11), transparent 34%),
    linear-gradient(135deg, rgba(255,248,232,.98), rgba(236,216,166,.93));

  border:1px solid rgba(255,216,122,.5);
  border-top:2px solid rgba(255,216,122,.7);

  box-shadow:
    0 24px 72px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.76);
}

.game-library-bottom-wrap::before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:24px;
  border:1px solid rgba(16,59,38,.07);
  pointer-events:none;
}

/* =====================================================
   LEFT COPY
===================================================== */

.game-library-bottom-kicker,
.game-library-bottom-give span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin:0 0 9px;
  color:#8b6c22;
  font-family:Inter, Arial, sans-serif;
  font-size:.62rem;
  font-weight:950;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.game-library-bottom-kicker::before,
.game-library-bottom-give span::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:#0f6b3b;
  box-shadow:0 0 10px rgba(15,107,59,.28);
}

.game-library-bottom h2{
  margin:0 0 12px;
  color:#103b26;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2rem, 2.8vw, 3.2rem);
  font-weight:700;
  line-height:.9;
  letter-spacing:-.05em;
}

.game-library-bottom-copy > p{
  max-width:520px;
  margin:0;
  color:#263d31;
  font-family:Inter, Arial, sans-serif;
  font-size:.88rem;
  line-height:1.55;
}

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

.game-library-bottom-copy blockquote{
  position:relative;
  margin:16px 0 0;
  padding:14px 18px;
  border-radius:18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(16,59,38,.065));
  border:1px solid rgba(16,59,38,.12);
  border-left:4px solid #d49d25;
  color:#103b26;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1rem;
  line-height:1.35;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.62),
    0 10px 22px rgba(0,0,0,.05);
}

.game-library-bottom-copy blockquote span{
  display:block;
  margin-bottom:7px;
  color:#8b6c22;
  font-family:Inter, Arial, sans-serif;
  font-size:.6rem;
  font-weight:950;
  letter-spacing:.15em;
  text-transform:uppercase;
}

/* =====================================================
   ACCORDIONS
===================================================== */

.game-library-bottom-faqs{
  position:relative;
  display:grid;
  gap:9px;
}

.game-library-bottom-faqs details{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.68), rgba(16,59,38,.05));
  border:1px solid rgba(16,59,38,.13);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 10px 18px rgba(0,0,0,.045);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.game-library-bottom-faqs details:hover{
  transform:translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.76),
    0 14px 24px rgba(0,0,0,.06);
}

.game-library-bottom-faqs details::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background:linear-gradient(180deg, #0f6b3b, #d49d25);
}

.game-library-bottom-faqs summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  min-height:46px;
  padding:10px 15px 10px 18px;
  color:#103b26;
  font-family:Inter, Arial, sans-serif;
  font-size:.84rem;
  font-weight:950;
}

.game-library-bottom-faqs summary::-webkit-details-marker{
  display:none;
}

.game-library-bottom-faqs summary::before{
  content:"✦";
  display:grid;
  place-items:center;
  width:23px;
  height:23px;
  flex:0 0 23px;
  border-radius:999px;
  background:#0f6b3b;
  color:#ffe39a;
  font-size:.58rem;
  box-shadow:0 0 14px rgba(15,107,59,.2);
}

.game-library-bottom-faqs summary::after{
  content:"+";
  margin-left:auto;
  color:#8b6c22;
  font-size:1.1rem;
  font-weight:900;
  line-height:1;
}

.game-library-bottom-faqs details[open]{
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(16,59,38,.065));
}

.game-library-bottom-faqs details[open] summary{
  border-bottom:1px solid rgba(16,59,38,.1);
}

.game-library-bottom-faqs details[open] summary::after{
  content:"–";
}

.game-library-bottom-faqs details p{
  margin:0;
  padding:12px 18px 16px 50px;
  color:#2a4034;
  font-family:Inter, Arial, sans-serif;
  font-size:.82rem;
  line-height:1.58;
}

/* =====================================================
   GIVE BOX
===================================================== */

.game-library-bottom-give{
  position:relative;
  overflow:hidden;
  padding:22px;
  border-radius:24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,216,122,.2), transparent 34%),
    linear-gradient(135deg, #061b12, #0c472b);
  color:#fff8e8;
  border:1px solid rgba(255,216,122,.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 18px 36px rgba(0,0,0,.2);
}

.game-library-bottom-give::after{
  content:"";
  position:absolute;
  right:-72px;
  bottom:-88px;
  width:210px;
  height:210px;
  border-radius:999px;
  background:rgba(255,216,122,.075);
}

.game-library-bottom-give h3{
  position:relative;
  margin:0 0 10px;
  color:#fff8e8;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(1.75rem, 2.3vw, 2.25rem);
  line-height:.92;
  letter-spacing:-.04em;
}

.game-library-bottom-give p{
  position:relative;
  margin:0;
  color:rgba(255,248,232,.84);
  font-family:Inter, Arial, sans-serif;
  font-size:.86rem;
  line-height:1.55;
}

.game-library-bottom-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  min-height:44px;
  padding:11px 18px;
  border-radius:12px;
  background:linear-gradient(135deg, #d49d25, #ffe39a);
  color:#08180f;
  font-family:Inter, Arial, sans-serif;
  font-size:.76rem;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
  box-shadow:
    0 12px 24px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.45);
  transition:
    transform .2s ease,
    filter .2s ease,
    box-shadow .2s ease;
}

.game-library-bottom-btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
  box-shadow:
    0 16px 30px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.5);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:1180px){
  .game-library-bottom-wrap{
    grid-template-columns:1fr;
    width:min(920px, 100%);
    padding:28px;
    border-radius:28px;
  }

  .game-library-bottom-copy > p{
    max-width:none;
  }

  .game-library-bottom-give{
    border-radius:24px;
  }
}

@media (max-width:760px){
  .game-library-bottom{
    padding:18px 14px 76px;
  }

  .game-library-bottom-wrap{
    padding:22px;
    gap:22px;
    border-radius:24px;
  }

  .game-library-bottom-wrap::before{
    inset:9px;
    border-radius:18px;
  }

  .game-library-bottom h2{
    font-size:clamp(2.35rem, 12vw, 3.45rem);
  }

  .game-library-bottom-faqs details p{
    padding:12px 18px 16px;
  }
}