/* CasinosGb.com UI — single stylesheet */
:root{
  --cgb-bg:#070a14;
  --cgb-panel:#0c1226;
  --cgb-panel2:#0a1022;
  --cgb-text:#e9edf7;
  --cgb-muted:#aab2c7;
  --cgb-line:rgba(255,255,255,.10);
  --cgb-accent:#7c5cff;
  --cgb-accent2:#00ffd5;
  --cgb-warn:#ffc94d;
  --cgb-good:#2af598;
  --cgb-radius:18px;
  --cgb-shadow:0 14px 40px rgba(0,0,0,.55);
  --cgb-shadow2:0 10px 26px rgba(0,0,0,.40);
  --cgb-font:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,Helvetica,sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body.cgb-body{
  margin:0;
  font-family:var(--cgb-font);
  background:#282251;
  color:var(--cgb-text);
}

a{color:inherit}
a:hover{color:var(--cgb-accent2)}
.cgb-skip{
  position:absolute;left:-999px;top:auto;
  width:1px;height:1px;overflow:hidden;
}
.cgb-skip:focus{
  left:16px;top:16px;width:auto;height:auto;
  background:#fff;color:#111;padding:10px 12px;border-radius:10px;z-index:9999;
}

.cgb-header{
  position:sticky;top:0;z-index:200;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(7,10,20,.62);
  border-bottom:1px solid var(--cgb-line);
}
.cgb-header__inner{
  max-width:1160px;margin:0 auto;padding:10px 14px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.cgb-brand{
  display:flex;align-items:center;gap:10px;text-decoration:none;
}
.cgb-brand img{
  border-radius:14px;
  background:linear-gradient(135deg, rgba(124,92,255,.30), rgba(0,255,213,.18));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
}
.cgb-brand__text{
  font-weight:800;letter-spacing:.2px;font-size:16px;
  color:var(--cgb-text);
}
.cgb-nav{display:flex;align-items:center;gap:10px}
.cgb-burger{
  width:44px;height:44px;border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  display:none;align-items:center;justify-content:center;gap:5px;cursor:pointer;
  box-shadow:var(--cgb-shadow2);
}
.cgb-burger span{
  display:block;width:18px;height:2px;background:rgba(255,255,255,.82);border-radius:99px;
}
.cgb-nav__panel{display:flex;align-items:center;gap:8px}
.cgb-nav__link{
  text-decoration:none;
  padding:10px 10px;border-radius:12px;
  color:rgba(233,237,247,.92);
  border:1px solid transparent;
}
.cgb-nav__link:hover{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.10)}
.cgb-nav__link.is-active{background:rgba(124,92,255,.16);border-color:rgba(124,92,255,.25)}
.cgb-nav__cta{
  text-decoration:none;
  padding:10px 12px;border-radius:14px;font-weight:800;
  background:linear-gradient(135deg, var(--cgb-accent) 0%, #ff2bd6 45%, var(--cgb-accent2) 100%);
  color:#0b0f1e;
  box-shadow:0 14px 34px rgba(124,92,255,.28);
}

@media (max-width: 940px){
  .cgb-burger{display:flex}
  .cgb-nav__panel{
    position:fixed;left:12px;right:12px;top:70px;
    padding:14px;border-radius:18px;
    background:rgba(10,16,34,.96);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--cgb-shadow);
    display:none;flex-direction:column;align-items:stretch;gap:8px;
  }
  .cgb-nav__panel.is-open{display:flex}
  .cgb-nav__link{padding:12px 12px}
}

.cgb-wrap{max-width:1160px;margin:0 auto;padding:22px 14px}
.cgb-hero{
  position:relative;
  border-radius:24px;
  background:
    radial-gradient(820px 320px at 20% 10%, rgba(124,92,255,.45), transparent 60%),
    radial-gradient(820px 340px at 90% 0%, rgba(0,255,213,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--cgb-shadow);
  overflow:hidden;
}
.cgb-hero__inner{
  padding:26px 18px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:center;
}
.cgb-hero__kicker{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(233,237,247,.92);
  font-weight:700;font-size:13px;
}
.cgb-hero__title{
  margin:12px 0 10px;
  font-weight:900;
  letter-spacing:-.4px;
  font-size:clamp(28px, 3.6vw, 44px);
  line-height:1.05;
}
.cgb-hero__lead{
  margin:0 0 14px;
  color:rgba(233,237,247,.86);
  font-size:15.5px;
  line-height:1.7;
}
.cgb-hero__actions{display:flex;gap:10px;flex-wrap:wrap}
.cgb-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 14px;border-radius:16px;
  text-decoration:none;font-weight:900;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--cgb-text);
}
.cgb-btn:hover{border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.08)}
.cgb-btn--primary{
  background:linear-gradient(135deg, var(--cgb-accent) 0%, #ff2bd6 40%, var(--cgb-accent2) 100%);
  color:#0b0f1e;border-color:transparent;
}
.cgb-btn--soft{
  background:linear-gradient(180deg, rgba(124,92,255,.18), rgba(124,92,255,.10));
}
.cgb-btn--ghost{
  background:transparent;
}
.cgb-hero__card{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.24);
  padding:14px;
}
.cgb-hero__img{
  width:100%;
  border-radius:16px;
  aspect-ratio: 16/10;
  object-fit:cover;
  box-shadow:0 14px 30px rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.10);
}
.cgb-mini{
  margin-top:12px;
  display:grid;
  gap:8px;
}
.cgb-mini__row{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  font-size:13px;color:rgba(233,237,247,.82);
}
.cgb-pill{
  padding:6px 10px;border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(233,237,247,.88);
  font-weight:800;font-size:12px;
}

@media (max-width: 900px){
  .cgb-hero__inner{grid-template-columns:1fr}
}

.cgb-section{margin-top:22px}
.cgb-h2{
  margin:0 0 10px;
  font-weight:900;
  font-size:clamp(20px, 2.2vw, 26px);
  letter-spacing:-.2px;
}
.cgb-muted{color:var(--cgb-muted)}
.cgb-small{font-size:12.8px;line-height:1.6}

.cgb-grid{
  display:grid;gap:12px;
}
.cgb-grid--cards{grid-template-columns:repeat(12,1fr)}
.cgb-card{
  grid-column:span 12;
  display:flex;gap:12px;align-items:stretch;
  padding:14px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:var(--cgb-shadow2);
}
.cgb-card__img{
  width:88px;height:88px;border-radius:18px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  flex:0 0 auto;
}
.cgb-card__body{flex:1 1 auto}
.cgb-card__title{
  margin:0 0 6px;
  font-weight:900;font-size:16px;
}
.cgb-card__meta{
  display:flex;gap:8px;flex-wrap:wrap;margin:0 0 8px;
}
.cgb-badge{
  font-weight:900;font-size:12px;
  padding:6px 10px;border-radius:999px;
  background:rgba(0,255,213,.08);
  border:1px solid rgba(0,255,213,.18);
  color:rgba(233,237,247,.92);
}
.cgb-badge--alt{
  background:rgba(124,92,255,.10);
  border-color:rgba(124,92,255,.22);
}
.cgb-card__text{margin:0;color:rgba(233,237,247,.86);line-height:1.65;font-size:14.5px}
.cgb-card__cta{display:flex;flex-direction:column;gap:8px;justify-content:center;min-width:150px}
.cgb-card__cta a{width:100%}
@media (min-width: 760px){
  .cgb-card{grid-column:span 12}
  .cgb-card__cta{min-width:190px}
}
@media (max-width: 520px){
  .cgb-card{flex-direction:column}
  .cgb-card__img{width:100%;height:160px}
  .cgb-card__cta{min-width:unset}
}

.cgb-search{
  display:flex;gap:10px;flex-wrap:wrap;align-items:center;
  padding:12px;border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
}
.cgb-search input{
  flex:1 1 240px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  padding:12px 12px;
  color:var(--cgb-text);
  outline:none;
}
.cgb-search input::placeholder{color:rgba(233,237,247,.55)}
.cgb-search .cgb-pill{cursor:default}

.cgb-tablewrap{
  overflow:auto;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}
table.cgb-table{
  width:100%;
  min-width:720px;
  border-collapse:separate;
  border-spacing:0;
  color:rgba(233,237,247,.92);
}
.cgb-table th,.cgb-table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  vertical-align:top;
  font-size:14px;
}
.cgb-table th{
  position:sticky;top:0;
  background:rgba(12,18,38,.92);
  font-weight:900;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.cgb-table tr:last-child td{border-bottom:none}

.cgb-check{
  display:grid;gap:10px;
}
.cgb-check li{
  list-style:none;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  line-height:1.6;
}
.cgb-check li strong{color:#fff}

.cgb-quotegrid{
  display:grid;gap:12px;
  grid-template-columns:repeat(12,1fr);
}
.cgb-quote{
  grid-column:span 12;
  padding:14px;border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
}
.cgb-quote__top{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:8px}
.cgb-stars{letter-spacing:.8px;font-weight:900;color:var(--cgb-warn)}
.cgb-quote p{margin:0;color:rgba(233,237,247,.86);line-height:1.65}
@media (min-width: 880px){
  .cgb-quote{grid-column:span 6}
}

.cgb-author{
  display:flex;gap:14px;align-items:flex-start;
  padding:16px;border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(124,92,255,.12), rgba(0,0,0,.22));
}
.cgb-author img{
  width:84px;height:84px;border-radius:22px;object-fit:cover;
  border:1px solid rgba(255,255,255,.10);
}
.cgb-author__name{font-weight:900;margin:0 0 4px}
.cgb-author__meta{margin:0;color:rgba(233,237,247,.78);line-height:1.6}

.cgb-footer{
  margin-top:26px;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(7,10,20,.82);
}
.cgb-footer__inner{max-width:1160px;margin:0 auto;padding:22px 14px}
.cgb-footer__cols{
  display:grid;gap:18px;
  grid-template-columns:1.4fr .8fr .8fr;
}
.cgb-footer__title{font-weight:900;margin-bottom:8px}
.cgb-footer__links{padding:0;margin:0;list-style:none;display:grid;gap:8px}
.cgb-footer__links a{text-decoration:none;color:rgba(233,237,247,.88)}
.cgb-footer__links a:hover{color:var(--cgb-accent2)}
@media (max-width: 900px){
  .cgb-footer__cols{grid-template-columns:1fr}
}

.cgb-top{
  position:fixed;right:14px;bottom:14px;
  width:46px;height:46px;border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  color:#fff;font-weight:900;
  display:none;align-items:center;justify-content:center;
  box-shadow:var(--cgb-shadow2);
}
.cgb-top.is-on{display:flex}