.tag-block{
background:#090f1e;
padding:20px 0;
}

/* FLEX GRID */
.fast-links-block{
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;
}

/* CARD */
.fast-links-block__item{
display:flex;
align-items:center;
justify-content:space-between;
background:#0f1b2e;
border-radius:12px;
padding:12px 15px;
color:#fff;
text-decoration:none;
width:260px;
transition:.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* TEXT */
.fast-links-block__item strong{
font-size:14px;
display:block;
margin-bottom:3px;
}

.fast-links-block__item span{
font-size:11px;
opacity:.7;
}

/* IMAGE */
.fast-links-block__item img{
height:40px;
width:auto;
}

/* HOVER */
.fast-links-block__item:hover{
background:linear-gradient(90deg,#8d53e9,#5ad1ff);
transform:translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:768px){

.fast-links-block{
justify-content:space-between;
}

.fast-links-block__item{
width:48%;
}

}

@media(max-width:480px){

.fast-links-block__item{
width:100%;
}

}


 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
  }

  body {
    background: #09101e;
    color: #fff;
  }

  @media (max-width: 768px) {
    .container {
        padding: 20px 15px !important;
    }

    .header .container {
        padding: 10px 15px !important;
    }
  }

  .container {
    max-width: 1200px;
    margin: auto;
    padding: 20px 25px;
  }

  /* HEADER STICKY FIX */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #090f1e;
  /* padding: 25px 25px; */
}

/* अगर फिर भी issue आये तो ये use कर (force fix) */
/*
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
body {
  padding-top: 80px; 
}
*/

/* HEADER WRAP */
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header__logo img {
  height: 38px;
}

/* MENU */
.header__navbar ul {
  display: flex;
  gap: 10px;
  list-style: none;
}

.header__navbar a {
  color: #cfd8e3;
  text-decoration: none;
  background: #0f2a4a;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 16px;
}

/* BUTTONS */
.header__buttons {
  display: flex;
  gap: 8px;
}

/* MOBILE FIX */
.header__buttonss {
  position: sticky;
  bottom: 0;
  background: #090f1e;
  /* z-index: 9999; */
}

  .btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  .register {
    background: linear-gradient(45deg, #7a5cff, #c95cff);
  }

  .download {
    background: #28c76f;
  }

  .btn span {
    font-size: 11px;
    opacity: .8;
  }

  /* BURGER */
  .header__mobile-navbar {
    display: none;
  }

  #burger {
    display: none;
  }

  .header__mobile-navbar label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .header__mobile-navbar span {
    width: 25px;
    height: 3px;
    background: #fff;
  }

  /* 🔥 MOBILE SLIDE MENU FIX */
  .header__mobile-navbar nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    padding: 80px 20px 20px;
    background: rgba(4, 25, 48, 0.95);
    backdrop-filter: blur(20px);

    transition: right .3s ease;
    z-index: 999;
  }

  /* OPEN MENU */
  #burger:checked~nav {
    right: 0;
  }

  /* MENU LINKS */
  .header__mobile-navbar nav a {
    color: #fff;
    text-decoration: none;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* ===== MOBILE TOP BUTTONS ===== */
  .header__buttonss {
    display: none;
    gap: 10px;
    padding: 10px 15px;
  }

  .btn-with-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 14px;
    flex: 1;
    color: #fff;
    border: none;
    cursor: pointer;
  }

  .link-button1 {
    background: linear-gradient(90deg, #7155ed, #6d50af);
  }

  .link-button2 {
    background: linear-gradient(70deg, #31bc69, #089e4e);
  }
a {
  text-decoration: none;
}
  .btn-with-caption__title {
    font-weight: 700;
    font-size: 16px;
  }

  .btn-with-caption__caption {
    font-size: 11px;
    opacity: .8;
  }

  /* HERO */
  .about-page {
    padding: 40px 0;
  }

  .about-page__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .about-page__title {
    font-size: 51px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
  }

  .about-page__description {
    color: #cfd8e3;
    line-height: 1.6;
    font-size: 14px;
    text-align: left;
  }

  /* PROMO */
  .deposite-block {


    border-radius: 25px;
    width: 320px;
  }

  .deposite-block__header {
    text-align: center;
    color: #ffd700;
    font-size: 13px;
  }

  .deposite-block__amount {
    font-size: 38px;
    color: #00ff88;
    text-align: center;
    margin: 10px 0;
  }

  /* INPUT */
  .promo-inner {
    display: flex;
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
  }

  .promo-inner input {
    flex: 1;
    padding: 12px;
    border: none;
    text-align: center;
  }

  .promocode-block-copy {
    padding: 12px;
    border: none;
    background: linear-gradient(45deg, #7a5cff, #4facfe);
    color: #fff;
  }

  /* BUTTON */
  .deposite-block__additional-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #7a5cff, #00c6ff);
    color: #fff;
    font-weight: bold;
  }

  /* MOBILE */
  @media(max-width:768px) {

    .header__navbar {
      display: none;
    }

    .header__buttons {
      display: none;
    }

    .header__mobile-navbar {
      display: block;
    }

    .header__buttonss {
      display: flex;
    }

    .about-page__wrap {
      flex-direction: column;
      text-align: center;
    }

    .deposite-block {
      width: 100%;
    }

    .about-page__title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      text-align: left;
    }

  
  }

  .deposite-block {
    position: relative;
    margin-top: 5px;
    display: flex;
    justify-content: center;
  }

  /* WRAP (MAIN CARD) */
  .deposite-block__wrap {
    position: relative;
    padding: 20px;
    z-index: 2;
    border: 2px solid #1b1912;
    border-radius: 25px;
    background: #090f1e;
    min-width: 300px;
    box-shadow:
      1px 0 1px #473e12,
      0 1px 1px #39ffa4,
      -1px 0 1px #473e12,
      0 -1px 1px #ffdf39;
  }

  /* HEADER */
  .deposite-block__header {
    color: #ffe352;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
  }

  /* AMOUNT */
  .deposite-block__amount {
    font-size: 50px;
    color: #24cc5f;
    font-weight: 700;
    text-align: center;
    text-shadow:
      1px 0 1px #ffdf39,
      0 1px 1px #ffdf39,
      -1px 0 1px #ffdf39,
      0 -1px 1px #ffdf39;
  }

  /* ARROW */
  .deposite-block__arrow {
    position: relative;
    height: 50px;
  }

  .deposite-block__arrow img:nth-child(1) {
    width: 88px;
    position: absolute;
    top: 0;
    right: calc(50% - 44px);
    animation: stopsignal 2s infinite;
  }

  .deposite-block__arrow img:nth-child(2) {
    width: 40px;
    position: absolute;
    top: 0;
    right: calc(50% - 20px);
    animation: stopsignal 2s infinite;
    animation-delay: 1s;
  }

  /* INPUT */
  .promo-inner {
    display: flex;
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
  }

  .promo-inner input {
    flex: 1;
    padding: 12px;
    border: none;
    text-align: center;
    font-weight: bold;
    background: #eaeaea;
  }

  .promocode-block-copy {
    padding: 12px;
    border: none;
    background: linear-gradient(45deg, #7a5cff, #4facfe);
    color: #fff;
    cursor: pointer;
  }

  /* BUTTON */
  .deposite-block__additional-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(263.7deg, #00b7ff 0, #8d53e9 100%);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
  }

  /* TIMER */
  .countdown {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #ffd700;
  }

  /* ANIMATION */
  @keyframes stopsignal {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

  /* MOBILE */
  @media(max-width:768px) {
    .deposite-block__wrap {
      width: 100%;
    }
  }


  /* ===== SECTION WRAPPER ===== */
.x9k2-popular-games {
    /* padding: 50px 20px; */
    background: linear-gradient(180deg, #050023, #020014);
    color: #fff;
    font-family: Arial, sans-serif;
}

/* ===== HEADING ===== */
.x9k2-popular-games h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.x9k2-popular-games h2 span {
    width: 12px;
    height: 12px;
    background: #00ff6a;
    border-radius: 4px;
}

/* ===== GRID ===== */
.x9k2-games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.sec2 .x9k2-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== CARD ===== */
.x9k2-game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0f1f3a;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.x9k2-game-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* IMAGE */
.x9k2-game-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

/* TITLE */
.x9k2-game-title {
    text-align: center;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
}

/* ===== OVERLAY ===== */
.x9k2-game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.x9k2-game-card:hover .x9k2-game-overlay {
    opacity: 1;
}

/* BUTTON */
.x9k2-play-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #1e90ff, #00c6ff);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.x9k2-play-btn:hover {
    transform: scale(1.05);
    color: #fff !important;
}

/* ===== SHOW MORE ===== */
.x9k2-show-more {
    margin-top: 35px;
    text-align: center;
}

.x9k2-show-more a {
    padding: 14px 40px;
    background: linear-gradient(135deg, #1e90ff, #00c6ff);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.x9k2-show-more a:hover {
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */

/* Laptop */
@media (max-width: 1200px) {
    .x9k2-games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sec2 .x9k2-games-grid{
      grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .x9k2-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .x9k2-game-card img {
        height: 160px;
    }
     .sec2 .x9k2-games-grid{
      grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .x9k2-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .x9k2-game-card img {
        height: 140px;
    }

    .x9k2-popular-games h2 {
        font-size: 22px;
    }
}



/* ONLY MOBILE SHOW */
.mobile-version{
position:fixed;
bottom:0;
left:0;
right:0;
z-index:9999;
max-width:420px;
margin:auto;
padding:10px;
display:none;
}

/* SHOW ONLY MOBILE */
@media(max-width:768px){
.mobile-version{
display:block;
}
}

/* BOX */
.app-download{
background:#1d2730;
border-radius:12px;
}

/* GRID FIX */
.app-download__wrapper{
display:grid;
grid-template-columns:50px 1fr 100px;
gap:10px;
padding:10px;
align-items:center;
}

/* LOGO */
.app-download__logo{
background:#fff;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
height:50px;
}
.app-download__logo img{
width:80%;
}

/* TEXT */
.app-download__title{
color:#fff;
font-size:14px;
font-weight:600;
}

.app-download__bonus{
color:#aaa;
font-size:11px;
}

/* BUTTON */
.btn-download{
width:100%;
padding:10px;
border:none;
border-radius:8px;
background:linear-gradient(90deg,#7a5cff,#00c6ff);
color:#fff;
font-weight:bold;
cursor:pointer;
}







/* ===== TABLE RESPONSIVE FIX ===== */

.wp-block-table{
    width:100%;
    overflow-x:auto;
}

.wp-block-table table{
    width:100%;
    min-width:700px; /* scroll enable */
    border-collapse:collapse;
}

/* MOBILE */
@media(max-width:768px){

    /* hide extra columns */
    .hide-column{
        display:none;
    }

    /* table scroll */
    .wp-block-table{
        overflow-x:auto;
    }

    .wp-block-table table{
        min-width:600px;
    }

    /* text adjust */
    .wp-block-table td{
        font-size:12px;
        padding:8px;
    }

    /* game button fix */
    .button-game{
        font-size:12px !important;
        width:auto !important;
    }

    /* profit badge small */
    .bet-table__profit{
        font-size:12px;
        padding:4px 8px;
    }
}







/* ===== WRAPPER ===== */
.bet-table {
    width: 100%;
    overflow-x: auto;
    padding: 10px;
}

/* ===== TABLE ===== */
.bet-table .wp-block-table table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ===== HEADER ===== */
.bet-table .wp-block-table thead td {
    background: linear-gradient(90deg,#0ea5e9,#2563eb);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px;
    letter-spacing: 0.5px;
}

/* ===== ROW ===== */
.bet-table .wp-block-table tbody tr {
    transition: 0.3s ease;
}

.bet-table .wp-block-table tbody tr:nth-child(odd) {
    background: #111827;
}
.bet-table .wp-block-table tbody tr:nth-child(even) {
    background: #1f2937;
}

/* ===== HOVER EFFECT ===== */
.bet-table .wp-block-table tbody tr:hover {
    background: #0ea5e9;
    transform: scale(1.01);
}

/* ===== CELLS ===== */
.bet-table .wp-block-table tbody td {
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
}

/* ===== GAME BUTTON ===== */
.button-game {
    background: none;
    border: none;
    color: #38bdf8;
    font-weight: 700;
    cursor: pointer;
}

/* ===== PROFIT TAG ===== */
.bet-table__profit {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 13px;
    background: rgba(255,255,255,0.08);
}

.bet-table__profit.green {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
}

/* ===== SMALL TEXT ===== */
.bet-table .current {
    font-size: 11px;
    opacity: 0.6;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hide-column {
        display: none;
    }

    .bet-table .wp-block-table table {
        min-width: 600px;
    }

    .bet-table .wp-block-table tbody td {
        font-size: 12px;
        padding: 10px;
    }
}

/* ===== SCROLLBAR ===== */
.bet-table::-webkit-scrollbar {
    height: 5px;
}
.bet-table::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 10px;
}



/* SECTION */
.tag-block {
  /* padding: 60px 0; */
  background: #0f172a;
  color: #fff;
}

.tag-block .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* HEADING */
.tag-block h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
}

/* COLUMNS */
.wp-block-columns {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT TEXT */
.wp-block-column p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

/* BUTTON */
.content-button__control {
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.content-button__control:hover {
  transform: scale(1.05);
}

/* IMAGE */
.wp-block-image img {
  width: 100%;
  border-radius: 15px;
}

/* TABLE */
.wp-block-table {
  margin-top: 40px;
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

/* TABLE ROWS */
.wp-block-table tr:nth-child(odd) {
  background: #17233a;
}

.wp-block-table tr:nth-child(even) {
  background: #1e293b;
}

.wp-block-table td {
  padding: 14px;
  font-size: 14px;
}

/* FIRST COLUMN */
.wp-block-table td:first-child {
  font-weight: 700;
  width: 35%;
}

/* MOBILE */
@media (max-width: 768px) {
  .wp-block-columns {
    flex-direction: column;
  }

  .tag-block h2 {
    font-size: 24px;
  }

  .wp-block-table td {
    font-size: 13px;
    padding: 10px;
  }

  body {

    padding-bottom: 60px !important;
}
}



/* FORCE 2 COLUMN LAYOUT */
.wp-block-columns {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: nowrap; /* important */
}

/* BOTH COLUMN 50% */
.wp-block-column {
  width: 50%;
}

/* IMAGE FIX */
.wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* MOBILE ME STACK HOGA */
@media (max-width: 768px) {
  .wp-block-columns {
    flex-wrap: wrap;
  }

  .wp-block-column {
    width: 100%;
  }
}




/* FOOTER BASE */
.footer {
  background: #0f172a;
  color: #fff;
  padding: 50px 0 20px;
  font-size: 14px;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* GRID */
.footer__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* LOGO */
.footer__logo img {
  max-width: 160px;
}

/* COLUMNS */
.footer__col {
  flex: 1;
  min-width: 220px;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #22c55e;
}

/* TEXT */
.footer p {
  color: #94a3b8;
  line-height: 1.6;
}

/* LANGUAGE SELECT */
.pll-switcher-select {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: #1e293b;
  color: #fff;
}

/* SOCIAL */
.footer__social-link {
  margin-top: 30px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
}

.social-links li {
  list-style: none;
}

/* ICON STYLE */
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-links a:hover {
  background: #22c55e;
  transform: scale(1.1);
}

/* SVG COLOR */
.social-links svg {
  fill: #fff;
}

/* FOOTER BOTTOM */
.footer::after {
  content: "© 2025 All Rights Reserved";
  display: block;
  text-align: center;
  margin-top: 30px;
  color: #64748b;
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer__wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer__logo {
    margin-bottom: 20px;
  }
}


.custom-footer {
  background: #0c0c0c;
  color: #fff;
  padding: 60px 0 20px;
  font-family: sans-serif;
}

.custom-footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #facc15;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-logo {
  max-width: 150px;
}

.footer-col p {
  font-size: 14px;
  color: #cbd5e1;
}

.lang-switch {
  margin-top: 10px;
  padding: 8px;
  width: 100%;
  border-radius: 6px;
  border: none;
}

/* SOCIAL */
.footer-social {
  text-align: center;
  margin-top: 40px;
}

.footer-social a {
  margin: 0 10px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.footer-social a:hover {
  color: #facc15;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #94a3b8;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}






.wp-block-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

/* FAQ BOX */
.faq {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* EACH ITEM */
.faq details {
  background: #17233a;
  border-radius: 12px;
  padding: 15px 20px;
  transition: 0.3s;
  border: 1px solid #2c3a55;
  overflow: hidden;
}

/* OPEN STATE */
.faq details[open] {
  background: #1f2a44;
  border-color: #facc15;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.15);
}

/* QUESTION */
.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq summary h3 {
  font-size: 16px;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

/* REMOVE DEFAULT ARROW */
.faq summary::-webkit-details-marker {
  display: none;
}

/* CUSTOM ICON */
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: #facc15;
  transition: 0.3s;
}

.faq details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

/* ANSWER */
.faq p {
  margin-top: 10px;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* HOVER EFFECT */
.faq details:hover {
  transform: translateY(-2px);
  border-color: #facc15;
}

/* 🔥 RESPONSIVE */
@media (max-width: 768px) {
  .wp-block-heading {
    font-size: 24px;
  }

  .faq summary h3 {
    font-size: 14px;
  }

  .faq p {
    font-size: 13px;
  }
}




/* BUTTON FLEX */
.btn-with-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* TEXT BLOCK */
.btn-with-caption > div {
  display: flex;
  flex-direction: column;
}

/* ICON RIGHT */
.btn-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

/* OPTIONAL ANIMATION */
.btn-with-caption:hover .btn-icon {
  transform: scale(1.1) rotate(5deg);
  transition: 0.3s;
}




/* =========================
   GLOBAL SECTION WRAPPER
========================= */

.wp-block-hc-alternate-group-section {
    padding: var(--theme-block-padding);
    margin-bottom: var(--theme-margin-section);
    border-top: 3px solid var(--theme-section-border-color);
    background-color: var(--theme-section-bg);
    border-radius: var(--theme-rounded-section);
    transition: all 0.3s ease;
}

/* =========================
   TYPOGRAPHY CLEAN
========================= */

.wp-block-hc-alternate-group-section h1,
.wp-block-hc-alternate-group-section h2,
.wp-block-hc-alternate-group-section h3 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--theme-text-color, #111);
}

.wp-block-hc-alternate-group-section p {
    line-height: 1.75;
    margin-bottom: 15px;
    color: var(--theme-text-muted, #444);
}

/* =========================
   LIST STYLE CUSTOM
========================= */

.wp-block-hc-alternate-group-section ul,
.wp-block-hc-alternate-group-section ol {
    padding: 0;
    margin: 0 0 var(--theme-block-margin-bottom);
    list-style: none;
}

.wp-block-hc-alternate-group-section ul li,
.wp-block-hc-alternate-group-section ol li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* CHECK ICON */
.wp-block-hc-alternate-group-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #00c853;
    border-radius: 50%;
}

/* NUMBER LIST */
.wp-block-hc-alternate-group-section ol {
    counter-reset: item;
}

.wp-block-hc-alternate-group-section ol li {
    counter-increment: item;
}

.wp-block-hc-alternate-group-section ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #ff6d00;
    border-radius: 50%;
}

/* =========================
   MEDIA BLOCK LAYOUT
========================= */

.media_block_v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE STYLE */
.media_block_v2 .media img {
    width: 100%;
    height: auto;
    border-radius: var(--theme-rounded-images, 12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: block;
}

/* TEXT AREA */
.media_block_v2 .content {
    font-size: 16px;
}

.media_block_v2 .title {
    font-size: 28px;
    margin-bottom: 15px;
}

/* =========================
   IMAGE RIGHT / LEFT CONTROL
========================= */

.media_block_v2.right .media {
    order: 2;
}

.media_block_v2.right .content {
    order: 1;
}

.media_block_v2.left .media {
    order: 1;
}

.media_block_v2.left .content {
    order: 2;
}

/* =========================
   HOVER EFFECT (OPTIONAL)
========================= */

.media_block_v2 .media img:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 991px) {
    .wp-block-hc-alternate-group-section {
        padding: var(--theme-block-padding-mob);
        margin-bottom: var(--theme-margin-section-mob);
    }

    .media_block_v2 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .media_block_v2 .media,
    .media_block_v2 .content {
        order: unset !important;
    }

    .media_block_v2 .title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .media_block_v2 {
        gap: 18px;
    }

    .wp-block-hc-alternate-group-section p {
        font-size: 14px;
    }
}

/* =========================
   TABLE RESPONSIVE
========================= */

.wp-block-table {
    margin-bottom: var(--theme-block-margin-bottom);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}



/* =========================
   SECTION STYLE
========================= */
.casino-section {
  padding: 60px 0;

      padding: 30px;
    margin-bottom: 20px;
    border-top: 3px solid #0958c6;
    background-color: #141b2e;
    border-radius: 20px;
    margin-top: 20px !important;
    
}



/* =========================
   FLEX LAYOUT (MAIN FIX)
========================= */
.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXT */
.text-content {
  flex: 1;
}

.text-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #ffffff;
}

.text-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 15px;
}

/* LIST */
.text-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.text-content ul li {
  margin-bottom: 8px;
}

/* =========================
   IMAGE
========================= */
.image-content {
  flex: 1;
  text-align: right;
}

.image-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  display: block;
  margin-left: auto;
}

/* =========================
   RESPONSIVE FIX
========================= */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .image-content {
    text-align: center;
  }

  .image-content img {
    margin: auto;
  }

  .text-content h2 {
    font-size: 24px;
  }

  .casino-section {

        margin-left: 10px;
    margin-right: 10px;
}
}




