   :root{
      --bg: #0f141a;
      --panel: #151c24;
      --panel-2: #111821;
      --line: rgba(255,255,255,.12);
      --text: rgba(255,255,255,.92);
      --muted: rgba(255,255,255,.65);
      --gold: #f0b12f;
      --good: #35d07f;
      --bad: rgba(255,255,255,.4);
      --radius: 14px;
      --shadow: 0 10px 30px rgba(0,0,0,.35);
    }

/* @font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Medium.ttf') format('ttf');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('ttf');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-ExtraBold.ttf') format('ttf');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
 */
/* 
@font-face {
    font-family: 'gilroy', sans-serif;
    src: url('../fonts/gilroy-black-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-black-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;

}




@font-face {
    font-family: 'gilroy', sans-serif;
    src: url('../fonts/gilroy-bold-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-bold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;

}




@font-face {
    font-family: 'gilroy', sans-serif;
    src: url('../fonts/gilroy-light-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-light-webfont.woff') format('woff');
    font-weight: 200;
    font-style: normal;

}




@font-face {
    font-family: 'gilroy', sans-serif;
    src: url('../fonts/gilroy-regular-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-regular-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;

}




@font-face {
    font-family: 'gilroy', sans-serif;
    src: url('../fonts/gilroy-semibold-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-semibold-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;

}




@font-face {
        font-family: 'gilroy', sans-serif;
    src: url('../fonts/gilroy-thin-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-thin-webfont.woff') format('woff');
    font-weight: 100;
    font-style: normal;

} */




@font-face {
    font-family: 'ciutadellabold';
    src: url('../fonts/ciutadella_bold-webfont.woff2') format('woff2'),
         url('../fonts/ciutadella_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'ciutadellalight';
    src: url('../fonts/ciutadella_light-webfont.woff2') format('woff2'),
         url('../fonts/ciutadella_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'ciutadellamedium';
    src: url('../fonts/ciutadella_medium-webfont.woff2') format('woff2'),
         url('../fonts/ciutadella_medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'ciutadellaregular';
    src: url('../fonts/ciutadella_regular-webfont.woff2') format('woff2'),
         url('../fonts/ciutadella_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'ciutadellasemibold';
    src: url('../fonts/ciutadella_semibold-webfont.woff2') format('woff2'),
         url('../fonts/ciutadella_semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

    *{box-sizing:border-box;font-family: 'ciutadellaregular';}
    body{
      margin:0;
      color: var(--text);
      padding: 28px 14px;
      background-image: url(../../assets/img/mainBg.png);
      background-size: contain;
      background-repeat: repeat;
      background-position: center center;
      overflow-x: hidden;
      position: relative;
    }

    .container{
      max-width: 1100px;
      margin: 0 auto;
    }

    .header{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 16px;
      margin-bottom: 14px;
    }

    .title{
      margin:0;
      font-size: clamp(18px, 2vw, 24px);
      letter-spacing:.2px;
    }
    .subtitle{
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
    }

    /* ---------- Desktop Table ---------- */
    .vip-table-wrap{
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    table.vip{
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
      background: rgba(10,15,20,.35);
    }

    table.vip th, table.vip td{
      border-bottom: 1px solid var(--line);
      border-right: 1px solid var(--line);
      padding: 14px 12px;
      vertical-align: middle;
      text-align: center;
    }
    table.vip tr:last-child td{ border-bottom: 0; }
    table.vip th:last-child, table.vip td:last-child{ border-right: 0; }

    table.vip thead th{
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: .6px;
      color: rgba(255,255,255,.9);
      background: rgba(21,28,36,.75);
    }

    table.vip thead th:first-child{
      text-transform: none;
      letter-spacing: 0;
      font-size: 14px;
      color: rgba(255,255,255,.8);
    }

    .row-title{
      font-weight: 700;
      color: rgba(255,255,255,.9);
      background: rgba(240,177,47,.12);
      text-align: left!important;
    }

    .tier{
      display:flex;
      align-items:center;
      gap: 10px;
      justify-content:center;
    }

    .badge{
      width: 26px;
      height: 26px;
      border-radius: 8px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size: 14px;
      position: relative;
    }

    .tier-name{
      font-weight: 800;
      font-size: 20px;
      letter-spacing: .5px;
    }

    .value{
      font-weight: 800;
      font-size: 22px;
      text-align: center;
    }

    .value small{
      font-size: 14px;
      color: var(--muted);
      font-weight: 600;
    }

    .gold{ color: var(--gold); }
    .muted{ color: var(--muted); }

    .mark{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width: 30px;
      height: 30px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.06);
      font-weight: 900;
      font-size: 16px;
      line-height: 1;
    }
    .mark.ok{ color: var(--good); }
    .mark.no{ color: var(--bad); }

    /* ---------- Mobile Cards (Tabs) ---------- */
    .vip-mobile{
      display: none;
      margin-top: 14px;
    }

    .tabs{
      display:flex;
      gap: 6px;
      overflow:auto;
      padding: 6px 2px 10px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .tabs::-webkit-scrollbar{ height: 10px; }
    .tabs::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.15); border-radius:999px; }

    .tab-btn{
      scroll-snap-align: start;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.9);
      padding: 6px 6px;
      border-radius: 999px;
      font-weight: 600;
      letter-spacing: .2px;
      white-space: nowrap;
      cursor: pointer;
      display:flex;
      align-items:center;
      gap: 8px;
      user-select:none;
      font-size: 14px;
      position: relative;
    }
    .tab-btn[aria-selected="true"]{
      border-color: rgba(240,177,47,.65);
      box-shadow: 0 0 0 3px rgba(240,177,47,.15);
      background: rgba(240,177,47,.10);
    }

    .panel{
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(21,28,36,.75);
      box-shadow: var(--shadow);
      overflow:hidden;
      margin-top: 10px;
    }

    .panel-head{
      padding: 14px 14px 10px;
      border-bottom: 1px solid var(--line);
      background: rgba(0,0,0,.18);
    }
    .panel-head .tier-name{
      font-size: 18px;
      text-transform: uppercase;
    }
    .panel-head .hint{
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 13px;
    }

    .list{
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .list li{
      display:flex;
      justify-content: space-between;
      align-items:center;
      gap: 12px;
      padding: 12px 14px;
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,.02);
    }
    .list li:last-child{ border-bottom: 0; }
    .k{
      color: rgba(255,255,255,.85);
      font-weight: 700;
      font-size: 13px;
    }
    .v{
      font-weight: 900;
      color: rgba(255,255,255,.95);
      text-align:right;
      white-space: nowrap;
    }
    .v .gold{ font-weight: 900; }
    .v .mark{ width: 28px; height: 28px; border-radius: 10px; }

    /* ---------- Responsive Switch ---------- */
    @media (max-width: 860px){
      .vip-table-wrap{ display:none; }
      .vip-mobile{ display:block; }
      .header{ align-items:flex-start; flex-direction: column; }
    }

    /* small helper */
    .sr-only{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
      clip:rect(0,0,0,0); white-space:nowrap; border:0;
    }

/* -----------------------------
   Page extras (VIP landing)
   ----------------------------- */

.cta-banner{
  display:block;
  width:100%;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 14px;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cta-banner:hover{}
.cta-banner img{ width:100%; height:auto; display:block; }

.cta-caption{
  text-align:center;
  margin: -6px auto 6px;
  max-width: 860px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
  font-family: 'ciutadellalight';
}

.section-title{
  margin: 70px 0 12px;
  font-weight: 900;
  letter-spacing: .2px;
  text-align: center;
}
.section-lead{
  max-width: 860px;
  margin: 0 auto 14px;
  text-align:center;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  font-size: 15px;
  font-family: 'ciutadellalight';
}

/* Hero */
.hero{
  margin: 50px auto 50px;
  max-width: 980px;
  text-align: center;
}
.hero-inner{
  padding: 6px 0 6px;
}
.hero-eyebrow{
  margin: 0 0 10px;
  letter-spacing: .22em;
  font-weight: 800;
  font-size: 22px;
  color: rgba(240,177,47,.95);
  font-family: 'ciutadellamedium';
}
.hero-title{
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
  margin-bottom: 10px;
}
.hero-subtitle{
  max-width: 880px;
  font-size: 15px;
  line-height: 1.6;
  font-family: 'ciutadellalight';
}
.hero-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  justify-content: center;
}
.btn-cta{
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.btn-cta-secondary{
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
}

/* Benefits */
.benefit-grid{
  max-width: 980px;
  margin: 14px auto 70px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.benefit-item{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 12px 12px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.benefit-icon{
  width: 25px;
  height: 25px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(240,177,47,.12);
  border: 1px solid rgba(240,177,47,.25);
}
.benefit-title{
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 2px;
}
.benefit-text{
  font-size: 13px;
  color: rgba(255,255,255,.70);
  line-height: 1.5;
}
@media (max-width: 860px){
  .benefit-grid{ grid-template-columns: 1fr; }
}

/* Table row emphasis */
.vip-row--money td{ background: rgba(240,177,47,.04); }
.vip-row--rate td{ background: rgba(240,177,47,.03); }
.vip-row--perk td{ background: rgba(240,177,47,.03); }
table.vip tbody tr:hover td{ background: rgba(255,255,255,.04); }

/* Feature cards */
.vip-feature-card{
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(21, 28, 36, .75);
  box-shadow: var(--shadow);
  overflow:hidden;
  height: 100%;
}
.vip-feature-media{
  position: relative;
  overflow:hidden;
}
.vip-feature-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.40));
  pointer-events:none;
}
.vip-feature-card img{ width:100%; height:auto; display:block; }
.vip-feature-card .card-body{ padding: 14px 14px 16px; }
.vip-feature-card .card-title{ font-weight: 900; margin-bottom: 8px; letter-spacing: .2px; }
.vip-feature-card .card-text{color: rgba(255,255,255,.75);line-height: 1.55;margin-bottom: 0;font-size: 14px;font-family: 'ciutadellalight';}

.vip-feature-card.is-featured{
  border-color: rgba(240,177,47,.35);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
}
.feature-badge{
  position:absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(15,20,26,.95);
  background: rgba(240,177,47,.95);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.vip-note{
  color: rgba(255,255,255,.60);
  font-size: 11px;
  line-height: 1.55;
  text-align:center;
  margin-top: 14px;
}

.cta-final{
  text-align:center;
  margin: 70px auto 32px;
  max-width: 860px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

.vip-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 40px;
  margin: 40px 40px 30px;
}

/* Kartların genel stili (mevcut card stillerin kalabilir) */
.vip-card {
  border-radius: 16px;
  overflow: hidden;
}

/* Sol sütun */
.card-1 {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 80px;
}

.card-3 {
  grid-column: 1;
  grid-row: 2;
  margin-top: -80px;
  margin-bottom: 80px;
}

/* Sağ sütun */
.card-2 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 80px;
}

.card-4 {
  grid-column: 2;
  grid-row: 2;
}
.bodyBgOverlay {position: fixed;width: 100%;height: 100%;left: 0;top: 0;background: #0f141a;opacity: 0.97;z-index: -1;}
@media (max-width: 768px) {
  .vip-cards-grid {
    grid-template-columns: 1fr;
    margin: 20px;
    overflow: hidden;
  }

  .vip-card {
    grid-column: auto !important;
    grid-row: auto !important;
    margin: 0;
  }
  .hero-eyebrow {
    margin: 0 0 30px;
    font-size: 20px;
}
.benefit-icon {height: 24px;}
}

.statuIcon {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.statuIcon.silver {background-image: url(../img/silver.png);}
.statuIcon.gold {background-image: url(../img/gold.png);}
.statuIcon.platinum {background-image: url(../img/platinum.png);}
.statuIcon.prestige {background-image: url(../img/prestige.png);}
.tab-btn .statuIcon {
    position: relative;
    width: 20px;
}

/* -----------------------------
   VIP Perks (9 pill cards like the banner)
   ----------------------------- */

.vip-perks-grid{
  max-width: 930px;
  margin: 22px auto 70px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.vip-perk{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 0;
  border-radius: 18px;
  background: rgba(245,247,250,.96);
  /* border: 1px solid rgba(0,0,0,.10); */
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  min-height: 62px;
}

.perk-ico{
  width: 62px;
  height: 62px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  color: rgba(15,20,26,.95);
  background: linear-gradient(180deg, rgba(240,177,47,.98), rgba(196,137,24,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
  flex: 0 0 auto;
}
.perk-ico img {
    width: 40px;
}
.perk-txt{
  display: inline;
  flex-direction:column;
  line-height: 1.05;
  color: rgba(15,20,26,.92);
}

.perk-value{
  font-weight: normal;
  font-size: 25px;
  letter-spacing: -2px;
  margin-bottom: 2px;
  font-family: 'ciutadellabold';
}
.perk-value.big {
    float: left;
    font-size: 53px;
    margin-right: 12px;
    line-height: 48px;
}
.perk-label{
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  opacity: .92;
  font-family: 'ciutadellasemibold';
  /* margin-right: 50px; */
}

@media (max-width: 991px){
  .vip-perks-grid{grid-template-columns: repeat(2, minmax(0,1fr));max-width:560px;}
}

@media (max-width: 620px){
  .vip-perks-grid{grid-template-columns: 1fr;max-width: 280px;}
  .vip-perk{ min-height: 58px; }
  .perk-value{font-size: 36px;}
}
