:root{
  --bg:#0b0d12;
  --card:#ffffff;
  --text:#0e1320;
  --muted:#6b7280;
  --brand:#2563eb;
  --brand-2:#1d4ed8;
  --border:#e5e7eb;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,Arial,sans-serif;background:var(--bg);color:var(--text)}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}

.container{width:100%;max-width:1100px;margin:0 auto;padding:0 16px}
.site-header{position:sticky;top:0;z-index:50;background:rgba(11,13,18,.85);backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid rgba(255,255,255,.08)}
.header-inner{display:flex;align-items:center;gap:16px;min-height:64px}
.logo{color:#fff;font-weight:800;font-size:1.25rem;letter-spacing:.5px}
.main-nav ul{list-style:none;padding:0;margin:0;display:flex;gap:18px}
.main-nav a{color:#e5e7eb;font-weight:600}
.main-nav a:hover{color:#fff}

.btn-primary{display:inline-block;padding:10px 16px;background:var(--brand);color:#fff;border-radius:999px;border:1px solid rgba(255,255,255,.12)}
.btn-primary:hover{background:var(--brand-2)}

.play-now{margin-left:auto}

.burger{display:none;background:transparent;border:0;width:40px;height:40px;align-items:center;justify-content:center}
.burger span{display:block;width:22px;height:2px;background:#fff;margin:3px 0;transition:.2s}

.site-main .container{background:var(--card);border-radius:18px;box-shadow:0 10px 30px rgba(0,0,0,.25);padding:24px;margin:22px auto}
h1,h2{margin:0 0 12px}
p{line-height:1.6;color:#111827}
.muted{color:var(--muted)}

.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.card{border:1px solid var(--border);border-radius:14px;padding:16px}

.site-footer{color:#e5e7eb;padding:20px 0;border-top:1px solid rgba(255,255,255,.08)}
.footer-inner{display:flex;justify-content:space-between;align-items:center}
.footer-links a{color:#cbd5e1;margin-left:12px}
.footer-links a:hover{color:#fff}

/* Mobile */
@media (max-width: 900px){
  .play-now{display:none}
  .burger{display:flex;margin-left:auto}
  .main-nav{position:absolute;left:0;right:0;top:64px;background:#0b0d12;border-bottom:1px solid rgba(255,255,255,.08);display:none}
  .main-nav.open{display:block}
  .main-nav ul{flex-direction:column;padding:12px}
  .site-main .container{padding:18px}
  .grid-2{grid-template-columns:1fr}
}


.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:16px;
}
.lang-switch a{
  color:#cbd5e1;
  font-size:0.85rem;
  text-transform:uppercase;
  font-weight:600;
  padding:2px 6px;
  border-radius:4px;
  transition:all .2s;
}
.lang-switch a:hover{
  color:#fff;
  background:rgba(255,255,255,0.1);
}
.lang-switch a.active{
  color:#fff;
  background:#2563eb;
}
@media (max-width:900px){
  .lang-switch{
    display:none; /* optional, keeps header tidy on mobile */
  }
}



.lang-dropdown {
  position: relative;
  margin-left: 16px;
  font-family: inherit;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #e5e7eb;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: #0b0d12;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  min-width: 100px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  z-index: 200;
}
.lang-menu a {
  display: block;
  padding: 8px 12px;
  color: #cbd5e1;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.lang-menu a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.lang-menu a.active {
  color: #fff;
  background: #2563eb;
}
.lang-dropdown.open .lang-menu {
  display: block;
}

/* optional hide on mobile */
@media (max-width: 900px){
  .lang-dropdown {display: none;}
}



.review-hero{
  position:relative;
  background:url('/assets/images/review.jpg') center/cover no-repeat;
  border-radius:18px;
  color:#fff;
  padding:80px 30px;
  text-align:center;
  margin-bottom:40px;
  overflow:hidden;
}
.review-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}
.review-hero *{position:relative;z-index:2}
.review-hero h1{font-size:2.3rem;margin-bottom:10px}
.review-hero p{color:#e5e7eb;max-width:720px;margin:0 auto 10px}

.review-section{margin-bottom:40px}
.review-section h2{color:#0e1320;font-size:1.6rem;margin-bottom:14px}
.review-section p{color:#374151;margin-bottom:14px;line-height:1.65}

.quick-facts{
  width:100%;
  border-collapse:collapse;
  margin:15px 0 25px;
}
.quick-facts td{
  border:1px solid #e5e7eb;
  padding:10px 14px;
}
.quick-facts td:first-child{
  font-weight:600;
  width:220px;
  background:#f9fafb;
}

.bonus-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
  margin-top:18px;
}
.bonus-card{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:16px;
}
.bonus-card h3{
  margin-top:0;
  color:#111827;
}
.love-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.love-box{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:16px;
}
.love-box h3{
  margin-top:0;
  color:#111827;
}
.cons{
  background:#fff8f8;
  border:1px solid #fca5a5;
}
.review-highlight{
  border-left:4px solid #2563eb;
  background:#f3f4f6;
  padding:20px;
  border-radius:8px;
  margin-top:20px;
}
.final-box{
  background:#f9fafb;
  border-radius:12px;
  border:1px solid #e5e7eb;
  padding:20px;
}


.bonus-hero{
  position:relative;
  background:url('/assets/images/bonus.jpg') center/cover no-repeat;
  border-radius:18px;
  color:#fff;
  padding:80px 30px;
  text-align:center;
  margin-bottom:40px;
  overflow:hidden;
}
.bonus-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}
.bonus-hero *{position:relative;z-index:2}
.bonus-hero h1{font-size:2.4rem;margin-bottom:10px}
.bonus-hero p{color:#e5e7eb;max-width:720px;margin:0 auto 12px}

.bonus-section{margin-bottom:40px}
.bonus-section h2{color:#0e1320;font-size:1.6rem;margin-bottom:14px}
.bonus-section p{color:#374151;margin-bottom:14px;line-height:1.65}

.bonus-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
  margin-top:18px;
}
.bonus-card{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:18px;
}
.bonus-card h3{
  margin-top:0;
  color:#111827;
}
.bonus-card p{margin:0;color:#374151}
.requirements{
  background:#f3f4f6;
  border-left:4px solid #2563eb;
  border-radius:8px;
  padding:20px;
  margin-top:20px;
}
.requirements ul{margin:0;padding-left:18px;color:#374151}
.requirements li{margin-bottom:6px}
.extra-offers{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
  margin-top:20px;
}
.extra-box{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:18px;
}
.final-box{
  background:#f9fafb;
  border-radius:12px;
  border:1px solid #e5e7eb;
  padding:20px;
  margin-top:10px;
}


.games-hero{
  position:relative;
  background:url('/assets/images/games.jpg') center/cover no-repeat;
  border-radius:18px;
  color:#fff;
  padding:80px 30px;
  text-align:center;
  margin-bottom:40px;
  overflow:hidden;
}
.games-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}
.games-hero *{position:relative;z-index:2}
.games-hero h1{font-size:2.3rem;margin-bottom:10px}
.games-hero p{color:#e5e7eb;max-width:720px;margin:0 auto;font-size:1.1rem}

.games-section{margin-bottom:40px}
.games-section h2{color:#0e1320;font-size:1.6rem;margin-bottom:14px}
.games-section p{color:#374151;margin-bottom:14px;line-height:1.65}

.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:20px;
}
.category-card{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:20px;
  text-align:center;
  transition:transform .3s ease;
}
.category-card:hover{transform:translateY(-3px)}
.category-card h3{margin-top:0;color:#111827}
.category-card p{margin:6px 0;color:#374151;font-size:.95rem}

.provider-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:14px;
  margin-top:20px;
}
.provider-card{
  background:#f3f4f6;
  border-radius:10px;
  border:1px solid #e5e7eb;
  padding:12px;
  text-align:center;
  font-weight:600;
  color:#1f2937;
  transition:background .3s ease;
}
.provider-card:hover{background:#e0e7ff;color:#1e3a8a}

.feature-box{
  background:#f9fafb;
  border-left:4px solid #2563eb;
  border-radius:8px;
  padding:18px 22px;
  margin-top:20px;
}
.feature-box ul{margin:0;padding-left:20px;color:#374151}
.feature-box li{margin-bottom:6px}
.table-games{
  width:100%;
  border-collapse:collapse;
  margin-top:16px;
}
.table-games td{
  border:1px solid #e5e7eb;
  padding:10px 12px;
}
.table-games td:first-child{
  font-weight:600;
  background:#f9fafb;
  width:180px;
}



.deposit-hero{
  position:relative;
  background:url('/assets/images/deposit.jpg') center/cover no-repeat;
  border-radius:18px;
  color:#fff;
  padding:80px 30px;
  text-align:center;
  margin-bottom:40px;
  overflow:hidden;
}
.deposit-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}
.deposit-hero *{position:relative;z-index:2}
.deposit-hero h1{font-size:2.3rem;margin-bottom:10px}
.deposit-hero p{color:#e5e7eb;max-width:720px;margin:0 auto;font-size:1.1rem}

.deposit-section{margin-bottom:40px}
.deposit-section h2{color:#0e1320;font-size:1.6rem;margin-bottom:14px}
.deposit-section p{color:#374151;margin-bottom:14px;line-height:1.65}

.payment-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:20px;
}
.payment-card{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:20px;
  text-align:center;
  transition:transform .3s ease;
}
.payment-card:hover{transform:translateY(-3px)}
.payment-card h3{margin-top:0;color:#111827;margin-bottom:8px}
.payment-card p{margin:0;color:#374151}

.table-deposit{
  width:100%;
  border-collapse:collapse;
  margin-top:18px;
}
.table-deposit td{
  border:1px solid #e5e7eb;
  padding:10px 14px;
  vertical-align:top;
}
.table-deposit td:first-child{
  font-weight:600;
  background:#f9fafb;
  width:200px;
}
.info-box{
  background:#f3f4f6;
  border-left:4px solid #2563eb;
  border-radius:8px;
  padding:20px;
  margin-top:20px;
}
.info-box ul{margin:0;padding-left:18px;color:#374151}
.info-box li{margin-bottom:6px}
.crypto-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin-top:15px;
}
.crypto-item{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:10px;
  text-align:center;
  font-weight:600;
}
.warning-box{
  background:#fff8f8;
  border:1px solid #fca5a5;
  border-radius:8px;
  padding:18px;
  margin-top:20px;
}

.home-hero{
  position:relative;
  background:url('/assets/images/home.jpg') center/cover no-repeat;
  border-radius:18px;
  color:#fff;
  padding:80px 30px;
  text-align:center;
  margin-bottom:40px;
  overflow:hidden;
}
.home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}
.home-hero *{position:relative;z-index:2}
.home-hero h1{font-size:2.4rem;margin-bottom:10px}
.home-hero p{color:#e5e7eb;max-width:720px;margin:0 auto;font-size:1.1rem}
.home-hero .btn-primary{margin-top:25px}

.home-section{margin-bottom:40px}
.home-section h2{font-size:1.6rem;color:#0e1320;margin-bottom:14px}
.home-section p{color:#374151;line-height:1.65;margin-bottom:14px}

.pros-cons{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:18px;
  margin-top:20px;
}
.pros,.cons{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:18px;
}
.pros h3,.cons h3{margin-top:0;margin-bottom:8px;font-size:1.2rem}
.pros ul,.cons ul{margin:0;padding-left:18px;color:#374151}
.pros li,.cons li{margin-bottom:6px}
.cons{background:#fff8f8;border-color:#fca5a5}

.deposit-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:20px;
}
.step{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:18px;
  text-align:center;
}
.step span{
  display:inline-block;
  width:50px;height:50px;
  background:#2563eb;color:#fff;
  border-radius:50%;
  line-height:50px;
  font-weight:700;
  margin-bottom:10px;
  font-size:1.1rem;
}
.short-review{
  background:#f3f4f6;
  border-left:4px solid #2563eb;
  border-radius:8px;
  padding:20px;
}
.short-review p{margin-bottom:10px}
.readmore{
  display:inline-block;
  margin-top:10px;
  background:#2563eb;
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  text-decoration:none;
  transition:all .2s;
}
.readmore:hover{background:#1d4ed8}




.all_ads .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.08);
      padding: 20px;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .all_ads .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    }
    .all_ads .logo {
      width: 100px;
      height: 100px;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: #eee;
      font-weight: bold;
      font-size: 16px;
      color: #333;
      overflow: hidden;
    }
    .all_ads .logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    .all_ads .card h3 {
      font-size: 20px;
      margin: 10px 0 5px;
      color: #333;
    }
    .all_ads .card p {
      font-size: 15px;
      color: #555;
      margin: 5px 0 20px;
    }
    .all_ads .btn {
      display: inline-block;
      padding: 12px 20px;
      border-radius: 30px;
      background: linear-gradient(135deg, #ff6a00, #ff9900);
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .all_ads .btn:hover {
      background: linear-gradient(135deg, #ff9900, #ff6a00);
      box-shadow: 0 0 10px rgba(255,106,0,0.5);
    }
    
    
    
    
    
    
    /* Promo Block */
.promo-block {
  background: linear-gradient(90deg, #1e90ff, #ff69b4);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.promo-block h2 {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.promo-text {
  color: #ffff66;
  font-weight: 600;
  font-size: 2.2em;
  margin-bottom: 15px;
}

.btn-yellow {
  background: #fff700;
  color: #333;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  background: #ffe000;
  color: #111;
}

.promo-block .btn-yellow {
  margin-top: 10px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


/* Recommended Casinos */
.recommended {
  margin-top: 40px;
}

.recommended h2 {
  color: #1e90ff;
  margin-bottom: 15px;
}

.small-bonus {
  min-height: 40px;
  font-size: 0.9em;
  margin: 5px 0;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .casino-single .casino-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .pros-cons {
    flex-direction: column;
  }
}




/* === Popular Casinos Table (Inline Rows) === */
.popular-casinos-table {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  margin: 30px 0;
}

.popular-casinos-table h2 {
  color: #1e90ff;
  margin-bottom: 15px;
}

.casino-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Row Style */
.casino-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafafa;
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.casino-row:hover {
  background: #f1f6ff;
  transform: translateY(-2px);
}

/* Columns */
.casino-col.logo {
  flex: 0 0 100px;
}

.casino-col.logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.casino-fallback-inline {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.casino-col.info {
  flex: 1;
  padding-left: 15px;
}

.casino-col.info h4 {
  margin: 0;
  font-size: 1.05em;
}

.casino-col.info a {
  text-decoration: none;
  color: #1e90ff;
  font-weight: 600;
}

.casino-col.info .bonus-text {
  color: #555;
  font-size: 0.9em;
  margin-top: 5px;
}

.casino-col.action {
  flex: 0 0 120px;
  text-align: right;
}

/* Button */
.btn-small {
  display: inline-block;
  background: linear-gradient(45deg, #ff69b4, #1e90ff);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: linear-gradient(45deg, #1e90ff, #ff69b4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .casino-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .casino-col.action {
    text-align: center;
  }
}


