/* Curacao + Licenses pages */

.curacao-hero{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  padding: 34px 28px;
  margin: 4px 0 28px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
}

.curacao-hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.curacao-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(235,235,239,.95) 0%, rgba(235,235,239,.78) 45%, rgba(235,235,239,.45) 100%),
    radial-gradient(1200px 420px at 15% 10%, rgba(255,255,255,.60), rgba(255,255,255,0));
}

.curacao-hero__grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}

/* Alias classes used in templates */
.curacao-h1{
  margin-top: 30px;
  font-size: 44px;
  letter-spacing: -.02em;
  line-height: 1.06;
  color: rgba(48, 52, 61,.94);
}

.curacao-hero__h1{
  margin-top: 30px;
  font-size: 44px;
  letter-spacing: -.02em;
  line-height: 1.06;
  color: rgba(48, 52, 61,.94);
}

.curacao-hero__intro{
  margin: 14px 0 0;
  max-width: 56ch;
  font-size: 15px;
  color: rgba(15,23,42,.72);
}

.curacao-facts{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 16px;
  backdrop-filter: blur(10px) saturate(1.5);
}

.curacao-facts__title{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(107,114,128,.95);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.curacao-facts__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.curacao-facts__row:last-child{ border-bottom: 0; }
.curacao-facts__row .k,
.curacao-facts__k{ color: rgba(107,114,128,.95); font-size: 12px; font-weight: 700; }
.curacao-facts__row .v,
.curacao-facts__v{ color: rgba(15,23,42,.88); font-size: 13px; font-weight: 700; text-align:right; }

.curacao-section{
  margin: 65px 0 34px;
}

.curacao-section--last{ margin-bottom: 0; }

.curacao-h2{
  margin: 0;
  font-size: 30px;
  letter-spacing: -.02em;
  color: rgba(15,23,42,.92);
}

.curacao-text{
  margin-top: 12px;
  color: rgba(15,23,42,.74);
  font-size: 15px;
  max-width: 78ch;
  margin-bottom: 20px;
}

.curacao-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.curacao-viewall{
  display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid #878787;
    color: rgb(125 125 125 / 94%);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .06em;
    text-decoration: none;
}
.curacao-viewall:hover{ text-decoration:none; filter: brightness(1.12); }

/* Alias for templates that use .curacao-btn */
.curacao-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid #878787;
  color: rgb(125 125 125 / 94%);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
  text-decoration: none;
}
.curacao-btn:hover{ text-decoration:none; filter: brightness(1.12); }

.curacao-casino-grid,
.curacao-news-grid,
.curacao-casinos,
.curacao-news{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.curacao-note{
  margin-top: 35px;
  color: rgba(15,23,42,.72);
  font-size: 14px;
  max-width: 99ch;
}

.curacao-empty{
  grid-column: 1 / -1;
  background: rgba(255,255,255,.7);
  border: 1px dashed rgba(15,23,42,.18);
  border-radius: 16px;
  padding: 12px 14px;
  color: rgba(15,23,42,.70);
  font-size: 13px;
}

.curacao-split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.curacao-img{
  margin-top: 66px;
}

.curacao-img img{ width:100%; height:100%; object-fit: cover; }

.curacao-tablewrap{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow2);
  margin-top: 14px;
}

.curacao-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.curacao-table th,
.curacao-table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  vertical-align: top;
}

.curacao-table thead th{
  background: rgba(15,23,42,.03);
  font-weight: 900;
  color: rgba(15,23,42,.86);
}

/* Make the left "Criteria" column visually distinct */
.curacao-table thead th:first-child{
  background: rgba(15,23,42,.06);
}

.curacao-table tbody td:first-child{
  background: rgba(15,23,42,.03);
  font-weight: 900;
  color: rgba(15,23,42,.88);
  width: 22%;
}

.curacao-table tbody tr:hover{
  background: rgba(15,23,42,.02);
}

.curacao-steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.curacao-step__img{
  width: 100%;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.06);
  margin-bottom: 12px;
}
.curacao-step__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curacao-step{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 16px;
}

/* About (What is ... license) */
.curacao-about{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}

.curacao-about__right{
  display:flex;
  justify-content:flex-end;
}

.curacao-about__img{
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow2);
}

/* Pros / Cons block */
.curacao-pc{
  display:grid;
  gap: 14px;
  margin-top: 14px;
}

.curacao-pc__head{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color: rgba(15,23,42,.92);
  margin-bottom: 10px;
}

.curacao-pc__icon{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display:inline-block;
  background: rgba(15,23,42,.06);
  position: relative;
}
.curacao-pc__icon--pro{ background: rgba(16,185,129,.14); }
.curacao-pc__icon--con{ background: rgba(239,68,68,.14); }

.curacao-pc__item{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: var(--shadow2);
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(15,23,42,.82);
}
.curacao-pc__item--pro{ border-left: 3px solid rgba(16,185,129,.75); }
.curacao-pc__item--con{ border-left: 3px solid rgba(239,68,68,.75); }

/* FAQ */
.curacao-faq{
  margin-top: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(15,23,42,.10);
  overflow: hidden;
}

.curacao-faq__item{
  border-bottom: 1px solid rgba(15,23,42,.08);
  padding: 0;
}
.curacao-faq__item:last-child{ border-bottom: 0; }

.curacao-faq__q{
  list-style: none;
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 900;
  color: rgba(15,23,42,.92);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.curacao-faq__q::-webkit-details-marker{ display:none; }

.curacao-faq__q:after{
  content: '+';
  width: 30px;
  height: 30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  color: rgba(15,23,42,.86);
  flex: 0 0 auto;
}

.curacao-faq__item[open] .curacao-faq__q:after{ content: '–'; }

.curacao-faq__a{
  padding: 0 16px 16px;
  color: rgba(15,23,42,.74);
  font-size: 14px;
  line-height: 1.55;
}

/* Other licenses cards */
.curacao-licenses{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.curacao-license{
  text-decoration:none;
  color: inherit;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow2);
  transition: transform .15s ease, filter .15s ease;
}
.curacao-license:hover{ text-decoration:none; transform: translateY(-1px); filter: brightness(1.02); }

.curacao-license__img{
  height: 90px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.curacao-license__img img{ max-width: 100%; object-fit: contain; }

.curacao-license__name{
  font-weight: 900;
  color: rgba(15,23,42,.92);
}

.curacao-license__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.16);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(15,23,42,.78);
}

.curacao-step__img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.7);
  aspect-ratio: 16/9;
}



.curacao-step__n{
  font-size: 12px;
  margin-top: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(107,114,128,.95);
  text-transform: uppercase;
}

.curacao-step__t{
  margin-top: 8px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(15,23,42,.92);
}

.curacao-step__d{
  margin-top: 8px;
  color: rgba(15,23,42,.72);
  font-size: 13px;
}

.curacao-faq{
  margin-top: 14px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.curacao-faq__item{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  overflow: hidden;
}

.curacao-faq__q{
  list-style: none;
  padding: 14px 14px;
  font-weight: 900;
  color: rgba(15,23,42,.90);
  cursor: pointer;
  position: relative;
}

.curacao-faq__q::-webkit-details-marker{ display:none; }

.curacao-faq__q:after{
  content: '+';
  position:absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(15,23,42,.06);
  color: rgba(15,23,42,.86);
  font-weight: 900;
}

details[open] > .curacao-faq__q:after{ content: '–'; }

.curacao-faq__a{
  padding: 0 14px 14px;
  color: rgba(15,23,42,.72);
  font-size: 13px;
}

.curacao-licenses{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 37px;
  margin-top: 14px;
}

.curacao-license{
  background: rgba(255,255,255);
  border-radius: 14px;
  display:flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}

.curacao-license:hover{ text-decoration:none; transform: translateY(-4px); }

.curacao-license__img{
  width: 100%;
  height: 100%;
}

.curacao-license__name{
  font-weight: 900;
  color: #464646eb;
  font-size: 16px;
}

.curacao-license__btn{
 color: rgb(162 162 162 / 92%);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .06em;
}

@media (max-width: 980px){
  .curacao-hero__grid{ grid-template-columns: 1fr; }
  .curacao-split{ grid-template-columns: 1fr; }
  .curacao-casino-grid,
  .curacao-news-grid{ grid-template-columns: repeat(2, 1fr); }
  .curacao-licenses{ grid-template-columns: repeat(2, 1fr); }
  .curacao-steps{ grid-template-columns: 1fr; }
  .curacao-hero__h1{ font-size: 36px; }
}

@media (max-width: 900px){
  .curacao-about{ grid-template-columns: 1fr; }
  .curacao-about__right{ justify-content: flex-start; }
  .curacao-pc{ grid-template-columns: 1fr; }
  .curacao-licenses{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .curacao-licenses{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .curacao-hero{ padding: 26px 18px; }
  .curacao-h2{ font-size: 26px; }
  .curacao-casino-grid,
  .curacao-news-grid,
  .curacao-licenses{ grid-template-columns: 1fr; }
}

/* Mobile table -> stacked cards (no horizontal scroll) */
@media (max-width: 760px){
  .curacao-table thead{ display:none; }
  .curacao-table,
  .curacao-table tbody,
  .curacao-table tr,
  .curacao-table td{ display:block; width:100%; }
  .curacao-table tr{ padding: 10px 14px; border-bottom: 1px solid rgba(15,23,42,.08); }
  .curacao-table td{ border:0; padding: 8px 0; }

  /* First cell (Criteria) acts like a row title on mobile */
  .curacao-table td:first-child{
    background: rgba(15,23,42,.03);
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 6px;
  }

  .curacao-table td:first-child:before{ display:none; }
  .curacao-table td:before{
    content: attr(data-label);
    display:block;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(107,114,128,.95);
    margin-bottom: 4px;
  }
}


