/* PartnerCMS theme asset root: /assets/themes/casino-guide/ */
:root{
  --cg-bg:#f4f6f9;
  --cg-surface:#ffffff;
  --cg-surface-2:#f8fafc;
  --cg-text:#0b1730;
  --cg-muted:#6f7b8d;
  --cg-line:#e5e9f0;
  --cg-teal:#0a9c8b;
  --cg-teal-dark:#077f72;
  --cg-green:#18b67a;
  --cg-indigo:#5b57df;
  --cg-indigo-dark:#4340bf;
  --cg-amber:#ffb547;
  --cg-coral:#f36f61;
  --cg-blue:#2c7be5;
  --cg-navy:#07162c;
  --cg-soft:#eef3f8;
  --cg-shadow:0 12px 36px rgba(12,27,53,.07);
  --cg-shadow-sm:0 6px 18px rgba(12,27,53,.06);
  --cg-radius:18px;
  --cg-radius-sm:12px;
  --cg-container:1320px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  color:var(--cg-text);
  background:var(--cg-bg);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:15px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
body.cg-lock{overflow:hidden}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}
button{color:inherit}
svg{display:block}
[hidden]{display:none!important}
.cg-container{width:min(var(--cg-container),calc(100% - 40px));margin-inline:auto}
.cg-main{padding-bottom:28px}

/* Header */
.cg-header{
  position:sticky;top:0;z-index:80;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(223,228,236,.92);
  backdrop-filter:saturate(160%) blur(14px);
}
.cg-header__inner{height:72px;display:flex;align-items:center;gap:34px}
.cg-brand{display:inline-flex;align-items:center;gap:10px;flex:0 0 auto}
.cg-brand__mark{
  width:36px;height:36px;border-radius:50%;display:grid;place-items:center;
  color:#fff;font-size:11px;font-weight:900;letter-spacing:-.3px;
  background:linear-gradient(145deg,#16b89e,#087b70);
  box-shadow:inset 0 0 0 4px rgba(255,255,255,.14),0 5px 12px rgba(10,156,139,.2);
}
.cg-brand__name{display:flex;gap:4px;align-items:baseline;line-height:1;white-space:nowrap}
.cg-brand__name b{font-size:20px;font-style:italic;letter-spacing:-.7px}
.cg-brand__name em{font-size:17px;font-style:italic;font-weight:900;color:var(--cg-teal)}
.cg-nav{display:flex;align-items:center;gap:28px;margin-left:auto}
.cg-nav a{font-size:13px;font-weight:750;color:#17243a;position:relative;padding:27px 0}
.cg-nav a:after{content:"";position:absolute;left:0;right:100%;bottom:18px;height:2px;border-radius:3px;background:var(--cg-teal);transition:right .18s ease}
.cg-nav a:hover:after{right:0}
.cg-header__actions{display:flex;align-items:center;gap:8px}
.cg-icon-btn{
  width:42px;height:42px;border:0;background:transparent;border-radius:12px;
  display:grid;place-items:center;cursor:pointer;transition:.18s ease;
}
.cg-icon-btn:hover{background:#f0f4f7}
.cg-icon-btn svg{width:21px;height:21px;fill:none;stroke:#10203a;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.cg-burger{display:none;width:42px;height:42px;border:0;border-radius:12px;background:#f1f5f8;padding:10px;cursor:pointer}
.cg-burger span{display:block;height:2px;border-radius:3px;background:#10203a;margin:4px 0}

/* Search modal */
.cg-search-modal{position:fixed;inset:0;z-index:120;display:flex;align-items:flex-start;justify-content:center;padding:9vh 20px 30px;opacity:0;transition:opacity .18s ease}
.cg-search-modal.is-open{opacity:1}
.cg-search-modal__backdrop{position:absolute;inset:0;background:rgba(3,13,28,.66);backdrop-filter:blur(6px)}
.cg-search-dialog{
  position:relative;z-index:2;width:min(860px,100%);background:#fff;border-radius:24px;
  box-shadow:0 30px 80px rgba(0,0,0,.24);padding:26px;transform:translateY(-14px) scale(.985);
  transition:transform .18s ease;
}
.cg-search-modal.is-open .cg-search-dialog{transform:translateY(0) scale(1)}
.cg-search-dialog__head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin-bottom:18px}
.cg-search-dialog__head h2{font-size:28px;line-height:1.08;margin:4px 0 0}
.cg-search-close{width:42px;height:42px;border:1px solid var(--cg-line);border-radius:12px;background:#f8fafc;font-size:28px;line-height:1;cursor:pointer}
.cg-search-shell{position:relative}
.cg-search-form{display:grid;grid-template-columns:26px 1fr auto;align-items:center;gap:10px;border:2px solid #d9e2eb;background:#fff;border-radius:16px;padding:8px 8px 8px 14px;transition:.18s ease}
.cg-search-form:focus-within{border-color:var(--cg-teal);box-shadow:0 0 0 4px rgba(10,156,139,.1)}
.cg-search-form svg{width:21px;height:21px;fill:none;stroke:#708096;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.cg-search-form input{height:46px;border:0;outline:0;background:transparent;color:var(--cg-text);font-size:16px;min-width:0}
.cg-search-form input::placeholder{color:#9aa5b3}
.cg-search-form button{height:46px;padding:0 22px;border:0;border-radius:11px;background:var(--cg-teal);color:#fff;font-weight:850;cursor:pointer}
.cg-search-form button:hover{background:var(--cg-teal-dark)}
.cg-search-suggest{position:absolute;left:0;right:0;top:calc(100% + 8px);z-index:20;max-height:min(50vh,430px);overflow:auto;background:#fff;border:1px solid var(--cg-line);border-radius:16px;box-shadow:0 18px 45px rgba(11,23,48,.16);padding:8px}
.cg-suggest-group+.cg-suggest-group{border-top:1px solid var(--cg-line);margin-top:7px;padding-top:7px}
.cg-suggest-label{padding:7px 9px 5px;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;color:#8b96a5}
.cg-suggest-item{display:grid;grid-template-columns:44px 1fr;gap:10px;align-items:center;border-radius:11px;padding:8px}
.cg-suggest-item:hover{background:#f4f8f8}
.cg-suggest-item img,.cg-suggest-fallback{width:44px;height:40px;border-radius:9px;object-fit:cover}
.cg-suggest-fallback{display:grid;place-items:center;background:#e8f5f2;color:var(--cg-teal);font-weight:900}
.cg-suggest-item strong{display:block;font-size:13px}
.cg-suggest-item small{display:block;color:var(--cg-muted);font-size:11px;margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cg-search-popular{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-top:16px}
.cg-search-popular>span{font-size:12px;color:var(--cg-muted);font-weight:700}
.cg-search-popular a{font-size:12px;font-weight:750;padding:7px 10px;border-radius:10px;background:#f1f5f7;color:#26354a}
.cg-search-popular a:hover{background:#e8f4f2;color:var(--cg-teal-dark)}

/* Mobile menu */
.cg-mobile-backdrop{position:fixed;inset:0;z-index:98;background:rgba(3,13,28,.56);opacity:0;transition:opacity .22s ease}
.cg-mobile-backdrop.is-open{opacity:1}
.cg-mobile-menu{
  position:fixed;z-index:99;top:0;right:0;bottom:0;width:min(390px,92vw);background:#fff;
  transform:translateX(104%);transition:transform .24s cubic-bezier(.2,.8,.2,1);
  box-shadow:-20px 0 55px rgba(2,15,30,.2);padding:16px;overflow-y:auto;
}
.cg-mobile-menu.is-open{transform:translateX(0)}
.cg-mobile-menu__head{display:flex;align-items:center;justify-content:space-between;gap:14px;padding-bottom:16px;border-bottom:1px solid var(--cg-line)}
.cg-mobile-menu__head .cg-icon-btn{font-size:28px;background:#f3f6f9}
.cg-mobile-search{width:100%;border:0;border-radius:14px;background:#eef8f6;color:#12372f;display:grid;grid-template-columns:34px 1fr auto;align-items:center;gap:8px;padding:13px 14px;margin:14px 0;cursor:pointer;text-align:left}
.cg-mobile-search>span{font-size:24px}.cg-mobile-search b{font-size:13px}.cg-mobile-search i{font-size:11px;font-style:normal;color:var(--cg-teal);font-weight:800}
.cg-mobile-quick{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:14px}
.cg-mobile-quick a{min-width:0;border:1px solid var(--cg-line);border-radius:13px;padding:12px 8px;text-align:center;background:#fff}
.cg-mobile-quick span{display:grid;place-items:center;width:32px;height:32px;margin:0 auto 7px;border-radius:9px;background:#eef8f6;color:var(--cg-teal);font-weight:900}
.cg-mobile-quick b{font-size:10px;line-height:1.15;display:block}
.cg-mobile-nav{border-top:1px solid var(--cg-line)}
.cg-mobile-nav a{display:flex;align-items:center;justify-content:space-between;min-height:52px;border-bottom:1px solid var(--cg-line);font-weight:800;font-size:14px;padding:0 4px}
.cg-mobile-nav i{font-style:normal;font-size:24px;color:#99a3b0}
.cg-mobile-menu__foot{display:flex;flex-direction:column;gap:8px;padding-top:18px}
.cg-mobile-menu__foot a{font-size:12px;color:var(--cg-muted)}

/* Generic components */
.cg-card{background:var(--cg-surface);border:1px solid var(--cg-line);border-radius:var(--cg-radius);box-shadow:var(--cg-shadow)}
.cg-kicker{display:inline-flex;align-items:center;gap:6px;font-size:10px;line-height:1;font-weight:900;text-transform:uppercase;letter-spacing:.085em;color:var(--cg-teal)}
.cg-section-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:14px}
.cg-section-head h1,.cg-section-head h2{margin:4px 0 0;line-height:1.12;letter-spacing:-.025em}
.cg-section-head h1{font-size:25px}.cg-section-head h2{font-size:23px}
.cg-section-head p{margin:7px 0 0;color:var(--cg-muted);font-size:12px}
.cg-section-lead{font-size:12px;color:var(--cg-muted);margin:-5px 0 14px;max-width:760px}
.cg-more{font-size:12px;color:var(--cg-teal-dark);font-weight:850;white-space:nowrap;padding-top:5px}
.cg-more:hover{color:#064f49}
.cg-btn{min-height:34px;display:inline-flex;align-items:center;justify-content:center;border-radius:9px;padding:0 14px;font-size:12px;font-weight:850;border:1px solid transparent;cursor:pointer;transition:.16s ease}
.cg-btn--primary{background:var(--cg-green);color:#fff}
.cg-btn--primary:hover{background:#0da96b;transform:translateY(-1px)}
.cg-btn--outline{background:#fff;color:#196bb8;border-color:#8ab7e3}
.cg-btn--outline:hover{background:#f1f7fd}
.cg-btn--soft{background:#eef3f8;color:#21334c;border-color:#e0e7ee}
.cg-btn--soft:hover{background:#e4edf4}
.cg-btn--wide{width:100%}
.cg-btn--large{min-height:44px;padding:0 20px;border-radius:11px;font-size:13px}
.cg-empty{padding:25px;border:1px dashed #ced7e1;border-radius:14px;background:#f8fafc;color:var(--cg-muted);font-size:13px;text-align:center}

/* Homepage */
.cg-home-hero{padding:18px 0 14px}
.cg-trust-strip{
  min-height:94px;border-radius:18px;padding:12px 28px;color:#fff;display:grid;grid-template-columns:repeat(3,1fr);align-items:center;
  background:
    radial-gradient(circle at 8% 10%,rgba(255,255,255,.13),transparent 26%),
    radial-gradient(circle at 88% 110%,rgba(14,207,181,.19),transparent 28%),
    linear-gradient(110deg,#4d48cc 0%,#6358e0 52%,#3268c7 100%);
  box-shadow:0 12px 30px rgba(74,71,199,.18);
}
.cg-trust-item{min-height:60px;display:flex;align-items:center;justify-content:center;gap:14px;padding:0 20px;border-right:1px solid rgba(255,255,255,.25)}
.cg-trust-item:last-child{border-right:0}
.cg-trust-icon{width:44px;height:44px;border:1px solid rgba(255,255,255,.34);border-radius:13px;display:grid;place-items:center;font-size:20px;background:rgba(255,255,255,.08)}
.cg-trust-item strong{display:block;font-size:17px;line-height:1.1}
.cg-trust-item small{display:block;color:#dfe7ff;font-size:11px;margin-top:4px}
.cg-home-top{display:grid;grid-template-columns:minmax(0,1.62fr) minmax(340px,.92fr);gap:18px;align-items:stretch}
.cg-ranking-card,.cg-home-bonuses{padding:17px}
.cg-ranking-head{display:grid;grid-template-columns:42px minmax(190px,1.15fr) 82px minmax(150px,.85fr) 142px;align-items:center;min-height:32px;padding:0 8px;color:#8a94a3;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.cg-casino-list{counter-reset:cg-rank}
.cg-casino-row{counter-increment:cg-rank;display:grid;grid-template-columns:42px minmax(190px,1.15fr) 82px minmax(150px,.85fr) 142px;align-items:center;min-height:54px;border:1px solid var(--cg-line);border-bottom:0;background:#fff;transition:.16s ease}
.cg-casino-row:first-child{border-radius:11px 11px 0 0}.cg-casino-row:last-child{border-bottom:1px solid var(--cg-line);border-radius:0 0 11px 11px}
.cg-casino-row:hover{position:relative;z-index:2;border-color:#d3dde7;box-shadow:0 7px 18px rgba(19,40,67,.06)}
.cg-casino-rank{display:grid;place-items:center;color:#8993a2;font-weight:850;font-size:11px}
.cg-casino-rank span:before{content:counter(cg-rank)}
.cg-casino-main{display:flex;align-items:center;gap:10px;min-width:0;padding:7px 6px}
.cg-casino-logo{width:46px;height:30px;flex:0 0 auto;border-radius:7px;overflow:hidden;background:linear-gradient(145deg,#0d243f,#0d8a81);display:grid;place-items:center;color:#fff;font-size:10px;font-weight:900}
.cg-casino-logo img{width:100%;height:100%;object-fit:contain;background:#fff;padding:2px}
.cg-casino-name{display:block;font-size:12px;font-weight:900;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cg-casino-main small{display:block;font-size:9px;color:var(--cg-muted);margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cg-casino-rating{display:flex;align-items:center;gap:4px;font-size:12px}.cg-casino-rating span{color:var(--cg-amber);font-size:16px}.cg-casino-rating b{font-size:12px}
.cg-casino-bonus{padding:7px 6px}.cg-casino-bonus span{display:inline-flex;max-width:100%;align-items:center;min-height:29px;background:#fff2cb;border-radius:7px;padding:5px 9px;font-size:10px;font-weight:850;line-height:1.1}
.cg-casino-actions{display:flex;gap:7px;padding:7px 8px;justify-content:flex-end}
.cg-casino-actions .cg-btn{min-width:58px;padding-inline:10px}
.cg-home-bonus-list{display:flex;flex-direction:column;gap:10px}
.cg-home-bonuses .cg-bonus-card{min-height:102px;display:grid;grid-template-columns:112px 1fr;border-radius:12px;overflow:hidden;background:linear-gradient(135deg,#091d37,#08152c);color:#fff;border:0;box-shadow:none}
.cg-home-bonuses .cg-bonus-card__media{height:100%}.cg-home-bonuses .cg-bonus-card__media img{width:100%;height:100%;object-fit:cover}
.cg-home-bonuses .cg-bonus-card__body{padding:12px}.cg-home-bonuses .cg-bonus-card__top{margin-bottom:5px}.cg-home-bonuses .cg-bonus-card__top a{color:#b7cadc}
.cg-home-bonuses .cg-bonus-card h3{font-size:12px;margin:0 0 3px}.cg-home-bonuses .cg-bonus-card h3 a{color:#fff}
.cg-home-bonuses .cg-bonus-value{font-size:20px;color:#fff;margin-bottom:5px}.cg-home-bonuses .cg-bonus-card p{display:none}
.cg-home-bonuses .cg-bonus-card__actions{margin-top:7px}.cg-home-bonuses .cg-code-btn,.cg-home-bonuses .cg-btn{min-height:29px;font-size:10px;border-radius:7px}

.cg-home-panels{display:grid;grid-template-columns:1fr 1.08fr;gap:18px;margin-top:18px}
.cg-link-panel{background:linear-gradient(120deg,#174f9f,#305ac1 55%,#4f51cc);color:#fff;border-radius:18px;padding:18px;box-shadow:0 10px 28px rgba(29,73,161,.14)}
.cg-link-panel--alt{background:linear-gradient(120deg,#087f78,#126b8c 50%,#3555b7)}
.cg-panel-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:8px}.cg-panel-head>span{font-size:19px;font-weight:900}.cg-panel-head a{font-size:10px;font-weight:800;color:#dbe9ff}
.cg-panel-grid{display:grid;grid-template-columns:repeat(3,1fr)}
.cg-panel-grid a{display:grid;grid-template-columns:34px 1fr 14px;align-items:center;gap:8px;min-height:52px;padding:7px;border-bottom:1px solid rgba(255,255,255,.13)}
.cg-panel-grid a:nth-last-child(-n+3){border-bottom:0}
.cg-panel-grid i{width:31px;height:31px;border-radius:8px;background:#fff;color:#3657b9;display:grid;place-items:center;font-style:normal;font-size:10px;font-weight:950}
.cg-panel-grid b{font-size:11px}.cg-panel-grid span{font-size:20px;text-align:right;color:#d8e7ff}
.cg-school-grid{display:grid;grid-template-columns:repeat(3,1fr)}
.cg-school-grid a{display:flex;align-items:center;gap:9px;min-height:56px;padding:7px;border-right:1px solid rgba(255,255,255,.13);border-bottom:1px solid rgba(255,255,255,.13)}
.cg-school-grid a:nth-child(3n){border-right:0}.cg-school-grid a:nth-last-child(-n+3){border-bottom:0}
.cg-school-grid i{width:32px;height:32px;flex:0 0 auto;border-radius:8px;display:grid;place-items:center;font-style:normal;font-size:10px;font-weight:950;color:#fff}.cg-school-grid i.green{background:#15bd80}.cg-school-grid i.coral{background:#f36f61}.cg-school-grid i.violet{background:#7a5fe5}.cg-school-grid i.blue{background:#4a7fe0}.cg-school-grid i.amber{background:#efa827}.cg-school-grid i.mint{background:#46c5b2}.cg-school-grid i.pink{background:#dd58a9}.cg-school-grid i.sky{background:#45a4e8}.cg-school-grid i.purple{background:#a25bd8}
.cg-school-grid b{display:block;font-size:10px}.cg-school-grid small{display:block;margin-top:2px;color:#cce4ed;font-size:9px;line-height:1.15}
.cg-home-section{margin-top:24px}
.cg-article-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.cg-news-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.cg-editorial-card{margin-top:24px;background:#fff;border:1px solid var(--cg-line);border-radius:18px;box-shadow:var(--cg-shadow);padding:20px 22px;display:grid;grid-template-columns:60px 1fr auto;align-items:center;gap:18px}
.cg-editorial-icon{width:54px;height:54px;border-radius:16px;background:#e9f7f4;color:var(--cg-teal);display:grid;place-items:center;font-size:24px;font-weight:900}.cg-editorial-card h2{font-size:19px;margin:4px 0}.cg-editorial-card p{font-size:12px;color:var(--cg-muted);margin:0;max-width:840px}

/* Cards */
.cg-bonus-card{background:#fff;border:1px solid var(--cg-line);border-radius:15px;overflow:hidden;box-shadow:var(--cg-shadow-sm)}
.cg-bonus-card__media{display:block;height:128px;background:#10253d}.cg-bonus-card__media img{width:100%;height:100%;object-fit:cover}
.cg-bonus-card__body{padding:15px}.cg-bonus-card__top{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:8px}.cg-bonus-card__top a{font-size:10px;color:var(--cg-teal);font-weight:800}.cg-bonus-type{font-size:9px;text-transform:uppercase;letter-spacing:.06em;font-weight:900;color:var(--cg-indigo)}
.cg-bonus-card h3{font-size:15px;line-height:1.2;margin:0 0 8px}.cg-bonus-card h3 a:hover{color:var(--cg-teal-dark)}
.cg-bonus-value{font-size:25px;line-height:1.05;font-weight:950;letter-spacing:-.03em;color:#13233d;margin:2px 0 8px}.cg-bonus-card p{font-size:11px;color:var(--cg-muted);margin:0 0 12px}
.cg-bonus-card__actions{margin-top:auto}.cg-code-btn{width:100%;min-height:38px;border:1px solid #b9d5d0;background:#f1fbf9;color:#087f72;border-radius:9px;font-weight:900;cursor:pointer}.cg-code-btn:hover{background:#e6f7f3}.cg-code-btn.revealed{letter-spacing:.06em;background:#e7f7f3;color:#075f57}
.cg-article-card,.cg-news-card,.cg-generic-card{background:#fff;border:1px solid var(--cg-line);border-radius:15px;overflow:hidden;box-shadow:var(--cg-shadow-sm);transition:.18s ease}.cg-article-card:hover,.cg-news-card:hover,.cg-generic-card:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(15,35,62,.1)}
.cg-article-card__media{height:176px;display:grid;place-items:center;background:linear-gradient(135deg,#17263b,#5e4dcc);overflow:hidden;color:#fff;font-size:22px;font-weight:950}.cg-article-card__media img{width:100%;height:100%;object-fit:cover}
.cg-article-card__body{padding:14px 15px 16px}.cg-article-meta,.cg-news-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;font-size:9px;margin-bottom:7px}.cg-article-meta a,.cg-news-meta a{color:var(--cg-teal);font-weight:900;text-transform:uppercase}.cg-article-meta time,.cg-news-meta time{color:#98a2b0}
.cg-article-card h3,.cg-news-card h3{font-size:14px;line-height:1.28;margin:0 0 8px}.cg-article-card p,.cg-news-card p{margin:0;color:var(--cg-muted);font-size:11px}.cg-read-more{display:inline-block;margin-top:10px;color:var(--cg-teal-dark);font-size:11px;font-weight:850}
.cg-news-card{display:grid;grid-template-columns:105px 1fr;min-height:116px}.cg-news-card__media{height:100%;min-height:116px;display:grid;place-items:center;background:linear-gradient(145deg,#0b3048,#126a76);color:#fff;font-size:12px;font-weight:950;overflow:hidden}.cg-news-card__media img{width:100%;height:100%;object-fit:cover}.cg-news-card__body{padding:11px 12px}.cg-news-card h3{font-size:11px;margin-bottom:0}.cg-news-card p{display:none}
.cg-generic-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.cg-generic-card__media{display:block;height:170px;background:#dfe7ef}.cg-generic-card__media img{width:100%;height:100%;object-fit:cover}.cg-generic-card__body{padding:16px}.cg-generic-card h3{margin:5px 0 7px;font-size:16px}.cg-generic-card p{font-size:12px;color:var(--cg-muted)}

/* Breadcrumbs */
.cg-breadcrumbs{padding-top:14px;padding-bottom:6px;font-size:11px;color:#7c8797}.cg-breadcrumbs .pcms-breadcrumbs{display:flex;align-items:center;gap:6px;flex-wrap:wrap}.cg-breadcrumbs a{color:#567087}.cg-breadcrumbs a:hover{color:var(--cg-teal)}

/* Category pages */
.cg-category-page{padding:8px 0 34px}.cg-category-hero,.cg-rating-hero,.cg-simple-hero{background:#fff;border:1px solid var(--cg-line);border-radius:18px;box-shadow:var(--cg-shadow);padding:22px 24px;margin-bottom:16px;display:flex;align-items:center;justify-content:space-between;gap:28px}.cg-category-hero h1,.cg-rating-hero h1,.cg-simple-hero h1{font-size:31px;line-height:1.07;letter-spacing:-.03em;margin:6px 0 8px}.cg-category-hero p,.cg-rating-hero p,.cg-simple-hero p{max-width:820px;color:var(--cg-muted);font-size:13px;margin:0}.cg-category-count{width:112px;height:86px;border-radius:15px;background:#eef8f6;display:flex;flex-direction:column;align-items:center;justify-content:center;flex:0 0 auto}.cg-category-count strong{font-size:27px;line-height:1;color:var(--cg-teal-dark)}.cg-category-count span{font-size:9px;color:#65827d;margin-top:5px;text-align:center}.cg-rating-hero__note{max-width:300px;background:#f2f2ff;border:1px solid #dfdffd;border-radius:14px;padding:14px 15px}.cg-rating-hero__note b{display:block;font-size:12px;color:#4240ad}.cg-rating-hero__note span{display:block;font-size:10px;color:#6e6c96;margin-top:4px}
.cg-subcategory-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-bottom:16px}.cg-category-card{background:#fff;border:1px solid var(--cg-line);border-radius:13px;padding:11px;display:grid;grid-template-columns:38px 1fr 16px;gap:10px;align-items:center;box-shadow:var(--cg-shadow-sm)}.cg-category-card__icon{width:36px;height:36px;border-radius:10px;background:#edf7f5;color:var(--cg-teal);display:grid;place-items:center;font-weight:900;overflow:hidden}.cg-category-card__icon img{width:100%;height:100%;object-fit:cover}.cg-category-card b{font-size:12px;display:block}.cg-category-card small{display:block;color:var(--cg-muted);font-size:9px;margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cg-category-card i{font-style:normal;font-size:22px;color:#9aa5b3}
.cg-ranking-head--category{background:#eef2f6;border:1px solid var(--cg-line);border-bottom:0;border-radius:13px 13px 0 0;padding-inline:10px}.cg-casino-list--category .cg-casino-row:first-child{border-radius:0}.cg-casino-list--category .cg-casino-row:last-child{border-radius:0 0 13px 13px}
.cg-bonus-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.cg-news-grid--archive{grid-template-columns:repeat(3,1fr)}.cg-news-grid--archive .cg-news-card{grid-template-columns:130px 1fr;min-height:140px}.cg-news-grid--archive .cg-news-card__media{min-height:140px}.cg-news-grid--archive .cg-news-card h3{font-size:13px}.cg-news-grid--archive .cg-news-card p{display:block;margin-top:8px;font-size:10px}.cg-article-grid--archive{grid-template-columns:repeat(3,1fr)}
.cg-seo-card{background:#fff;border:1px solid var(--cg-line);border-radius:17px;padding:22px;box-shadow:var(--cg-shadow-sm)}.cg-seo-card--category{margin-top:20px}

/* PartnerCMS native filters / pagination */
.pcms-category-filters{display:flex;align-items:flex-end;gap:10px;flex-wrap:wrap;background:#fff;border:1px solid var(--cg-line);border-radius:14px;padding:12px;margin:0 0 14px;box-shadow:var(--cg-shadow-sm)}
.pcms-category-filters label{display:flex;flex-direction:column;gap:5px;font-size:10px;font-weight:800;color:#677487}.pcms-category-filters input,.pcms-category-filters select{min-height:37px;border:1px solid #dce3ea;border-radius:9px;background:#fff;padding:0 10px;color:var(--cg-text);outline:0}.pcms-category-filters input:focus,.pcms-category-filters select:focus{border-color:var(--cg-teal);box-shadow:0 0 0 3px rgba(10,156,139,.08)}.pcms-category-filters button,.pcms-category-filters>a{min-height:37px;border-radius:9px;border:0;background:var(--cg-teal);color:#fff;font-weight:850;padding:0 14px;display:inline-flex;align-items:center;justify-content:center}.pcms-category-filters>a{background:#edf2f6;color:#33445b}.pcms-category-filters--compact{padding:8px 10px}.pcms-filter-check{display:flex!important;flex-direction:row!important;align-items:center;gap:6px!important}.pcms-filter-check input{min-height:0;width:16px;height:16px}
.pcms-pagination{display:flex;justify-content:center;gap:6px;flex-wrap:wrap;margin:18px 0 0}.pcms-pagination a,.pcms-pagination span{min-width:36px;height:36px;border-radius:9px;border:1px solid var(--cg-line);display:grid;place-items:center;background:#fff;font-size:11px;font-weight:800}.pcms-pagination .active,.pcms-pagination [aria-current="page"]{background:var(--cg-teal);color:#fff;border-color:var(--cg-teal)}
.pcms-load-more{display:flex;justify-content:center;margin-top:16px}.pcms-load-more a,.pcms-load-more button{min-height:42px;padding:0 20px;border:0;border-radius:10px;background:#e9f5f3;color:#08796d;font-weight:850;cursor:pointer}

/* Review */
.cg-review-page{padding-bottom:36px}.cg-review-hero{background:#fff;border:1px solid var(--cg-line);border-radius:20px;box-shadow:var(--cg-shadow);padding:22px;display:grid;grid-template-columns:1fr 320px;gap:22px;align-items:stretch}.cg-review-brand{display:flex;align-items:center;gap:20px;min-width:0}.cg-review-logo{width:118px;height:118px;border-radius:18px;background:linear-gradient(145deg,#0d263d,#0b8d82);display:grid;place-items:center;overflow:hidden;flex:0 0 auto;color:#fff;font-size:26px;font-weight:950}.cg-review-logo img{width:100%;height:100%;object-fit:contain;background:#fff;padding:8px}.cg-review-copy h1{font-size:36px;line-height:1.02;letter-spacing:-.035em;margin:8px 0 8px}.cg-review-copy p{font-size:13px;color:var(--cg-muted);max-width:670px;margin:0}.cg-review-badges{display:flex;gap:7px;flex-wrap:wrap}.cg-badge{display:inline-flex;align-items:center;min-height:25px;padding:0 9px;border-radius:8px;background:#eef2f6;color:#4b5c70;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.035em}.cg-badge--editor{background:#ecebff;color:#4b47ba}.cg-badge--bonus{background:#e9f8f3;color:#087c70}.cg-review-score{display:flex;align-items:center;gap:5px;margin-top:14px}.cg-review-score>span{color:var(--cg-amber);font-size:23px}.cg-review-score strong{font-size:24px;line-height:1}.cg-review-score small{font-size:10px;color:var(--cg-muted);margin-left:5px}.cg-review-offer{border-radius:16px;padding:17px;background:linear-gradient(145deg,#0a2038,#0b1730);color:#fff;display:flex;flex-direction:column;justify-content:center}.cg-review-offer>span{font-size:10px;color:#9bb0c7;text-transform:uppercase;font-weight:850}.cg-review-offer>strong{font-size:24px;line-height:1.08;margin:6px 0 12px}.cg-review-code{display:flex;align-items:center;justify-content:space-between;gap:10px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);border-radius:10px;padding:7px 8px;margin-bottom:10px}.cg-review-code small{font-size:9px;color:#a8bacb}.cg-review-code button{border:0;background:transparent;color:#fff;font-weight:900;letter-spacing:.05em;cursor:pointer}.cg-review-link{text-align:center;font-size:10px;color:#b7c8da;font-weight:700;margin-top:8px}.cg-review-facts{display:grid;grid-template-columns:repeat(6,1fr);gap:1px;margin:12px 0 0;background:var(--cg-line);border:1px solid var(--cg-line);border-radius:14px;overflow:hidden}.cg-review-facts>div{background:#fff;min-height:72px;padding:12px;display:flex;flex-direction:column;justify-content:center}.cg-review-facts span{font-size:9px;color:var(--cg-muted);text-transform:uppercase;font-weight:800}.cg-review-facts b{font-size:12px;margin-top:4px}
.cg-anchor-nav{position:sticky;top:72px;z-index:45;background:rgba(244,246,249,.95);border-bottom:1px solid #e1e7ed;border-top:1px solid #edf0f4;margin-top:14px;backdrop-filter:blur(12px)}.cg-anchor-nav__inner{display:flex;align-items:center;gap:6px;overflow-x:auto;padding-top:8px;padding-bottom:8px;scrollbar-width:none}.cg-anchor-nav__inner::-webkit-scrollbar{display:none}.cg-anchor-nav a{white-space:nowrap;padding:8px 11px;border-radius:9px;font-size:11px;font-weight:800;color:#536276}.cg-anchor-nav a:hover{background:#e8f3f1;color:var(--cg-teal-dark)}
.cg-review-layout,.cg-article-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:18px;align-items:start;margin-top:18px}.cg-review-main,.cg-article-main{display:flex;flex-direction:column;gap:16px;min-width:0}.cg-content-card{background:#fff;border:1px solid var(--cg-line);border-radius:18px;box-shadow:var(--cg-shadow-sm);padding:22px;scroll-margin-top:132px}.cg-content-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:16px}.cg-content-head h2{font-size:22px;margin:5px 0 0}.cg-score-big{display:flex;align-items:baseline;gap:4px}.cg-score-big span{color:var(--cg-amber);font-size:22px}.cg-score-big b{font-size:28px;line-height:1}.cg-score-big small{font-size:10px;color:var(--cg-muted)}.cg-rating-breakdown{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}.cg-rating-breakdown>div{min-height:76px;border:1px solid var(--cg-line);border-radius:12px;padding:11px;background:#fbfcfd;display:flex;flex-direction:column;justify-content:space-between}.cg-rating-breakdown span{font-size:10px;color:var(--cg-muted)}.cg-rating-breakdown b{font-size:18px;color:#273b58}.cg-bonus-grid--inside{grid-template-columns:repeat(2,1fr)}.cg-pros-cons{display:grid;grid-template-columns:1fr 1fr;gap:16px}.cg-pros,.cg-cons{border-radius:14px;padding:16px}.cg-pros{background:#eef9f5}.cg-cons{background:#fff3f1}.cg-pros h2,.cg-cons h2{font-size:17px;margin:0 0 10px}.cg-pros ul,.cg-cons ul{list-style:none;padding:0;margin:0}.cg-pros li,.cg-cons li{position:relative;padding-left:22px;margin:7px 0;font-size:12px}.cg-pros li:before,.cg-cons li:before{position:absolute;left:0;top:0;font-weight:900}.cg-pros li:before{content:"✓";color:#0c9f70}.cg-cons li:before{content:"–";color:#d55b50}.cg-cons p{font-size:12px;color:var(--cg-muted);margin:0}.cg-verdict{background:linear-gradient(145deg,#fff,#f7fbfa)}.cg-verdict>p{color:#5e6b7c;font-size:13px}.cg-verdict__bottom{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:14px}.cg-review-sidebar,.cg-article-sidebar{display:flex;flex-direction:column;gap:14px;position:sticky;top:130px}.cg-side-card{background:#fff;border:1px solid var(--cg-line);border-radius:15px;box-shadow:var(--cg-shadow-sm);padding:16px}.cg-side-card h3{font-size:15px;margin:0 0 8px}.cg-side-card p{font-size:11px;color:var(--cg-muted);margin:0 0 12px}.cg-side-toc nav{display:flex;flex-direction:column}.cg-side-toc nav a{font-size:11px;color:#526175;padding:7px 0;border-bottom:1px solid #eef1f4}.cg-side-toc nav a:last-child{border-bottom:0}.cg-side-toc nav a:hover{color:var(--cg-teal)}.cg-side-cta{background:linear-gradient(145deg,#0a2038,#0b1730);color:#fff;border:0}.cg-side-cta p{color:#aabbd0}.cg-facts-list{margin:0}.cg-facts-list>div{display:grid;grid-template-columns:1fr 1.2fr;gap:8px;padding:8px 0;border-bottom:1px solid var(--cg-line)}.cg-facts-list>div:last-child{border-bottom:0}.cg-facts-list dt{font-size:10px;color:var(--cg-muted)}.cg-facts-list dd{margin:0;font-size:10px;font-weight:800;text-align:right}.cg-mobile-toc{display:none;background:#f2f7f7;border-radius:12px;padding:12px;margin-bottom:18px}.cg-mobile-toc strong{font-size:12px}.cg-mobile-toc nav{display:flex;flex-direction:column;margin-top:7px}.cg-mobile-toc a{font-size:11px;padding:6px 0;color:#4f6171}

/* Bonus full page */
.cg-bonus-page{padding-bottom:36px}.cg-bonus-hero{background:linear-gradient(145deg,#0b1930,#102848);border-radius:20px;box-shadow:var(--cg-shadow);padding:24px;color:#fff;display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:24px}.cg-bonus-hero__meta{display:flex;align-items:center;gap:10px}.cg-bonus-hero__meta>a{color:#a8bfd5;font-size:11px;font-weight:800}.cg-bonus-hero h1{font-size:34px;line-height:1.05;letter-spacing:-.03em;margin:10px 0}.cg-bonus-hero__copy>p{max-width:720px;color:#bfcedd;font-size:13px}.cg-bonus-hero__value{font-size:36px;font-weight:950;line-height:1;letter-spacing:-.035em;margin:18px 0}.cg-bonus-hero__actions{display:flex;align-items:center;gap:9px;flex-wrap:wrap}.cg-code-btn--hero{width:auto;min-width:210px;min-height:44px;background:#fff;color:#0a776d;border-color:#fff}.cg-bonus-summary{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);border-radius:15px;padding:16px}.cg-bonus-summary h2{font-size:15px;margin:0 0 10px}.cg-bonus-summary dl{margin:0}.cg-bonus-summary dl>div{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding:9px 0;border-bottom:1px solid rgba(255,255,255,.1)}.cg-bonus-summary dl>div:last-child{border-bottom:0}.cg-bonus-summary dt{font-size:10px;color:#9db2c9}.cg-bonus-summary dd{font-size:10px;font-weight:800;text-align:right;margin:0}.cg-terms-list{margin:0;padding-left:20px}.cg-terms-list li{margin:7px 0;font-size:13px}

/* Article / news */
.cg-article-page,.cg-page{padding-bottom:36px}.cg-article-hero{background:#fff;border:1px solid var(--cg-line);border-radius:20px;box-shadow:var(--cg-shadow);display:grid;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);overflow:hidden;min-height:330px}.cg-article-hero__copy{padding:28px;display:flex;flex-direction:column;justify-content:center}.cg-article-hero h1{font-size:37px;line-height:1.06;letter-spacing:-.035em;margin:8px 0 10px}.cg-article-hero__copy>p{color:var(--cg-muted);font-size:14px;margin:0;max-width:720px}.cg-byline{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:17px;color:#8994a3;font-size:10px}.cg-byline b{color:#46566d}.cg-article-hero__image{margin:0;min-height:330px}.cg-article-hero__image img{width:100%;height:100%;object-fit:cover}.cg-article-hero__placeholder{min-height:330px;background:linear-gradient(145deg,#1a2e49,#5d53d5);display:grid;place-items:center;color:#fff;font-size:34px;font-weight:950}.cg-article-hero--guide .cg-article-hero__placeholder{background:linear-gradient(145deg,#0a4e56,#16867f 55%,#384fb0)}.cg-page-content{max-width:980px;margin:0 auto}.cg-simple-hero{display:block}.cg-simple-hero h1{max-width:920px}

/* Prose */
.cg-prose{font-size:15px;line-height:1.72;color:#26364b}.cg-prose>*:first-child{margin-top:0}.cg-prose>*:last-child{margin-bottom:0}.cg-prose h2{font-size:25px;line-height:1.18;letter-spacing:-.025em;color:var(--cg-text);margin:30px 0 12px;scroll-margin-top:132px}.cg-prose h3{font-size:19px;line-height:1.25;color:var(--cg-text);margin:24px 0 10px}.cg-prose p{margin:0 0 14px}.cg-prose a{color:#087f72;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px}.cg-prose ul,.cg-prose ol{padding-left:22px;margin:0 0 16px}.cg-prose li{margin:6px 0}.cg-prose blockquote{margin:18px 0;padding:14px 16px;border-left:4px solid var(--cg-teal);background:#eef7f5;border-radius:0 12px 12px 0}.cg-prose table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid var(--cg-line);border-radius:12px;overflow:hidden;margin:18px 0;font-size:12px}.cg-prose th,.cg-prose td{padding:10px 11px;border-right:1px solid var(--cg-line);border-bottom:1px solid var(--cg-line);text-align:left;vertical-align:top}.cg-prose th:last-child,.cg-prose td:last-child{border-right:0}.cg-prose tr:last-child td{border-bottom:0}.cg-prose th{background:#f1f5f7;color:#34465d}.cg-prose img{border-radius:14px;margin:18px auto}.cg-custom-fields{margin-top:22px;padding-top:18px;border-top:1px solid var(--cg-line)}

/* Search page */
.cg-search-page{padding:26px 0 40px}.cg-search-page__hero{max-width:900px;margin:0 auto 22px;text-align:center}.cg-search-page__hero h1{font-size:34px;margin:7px 0 15px}.cg-search-form--page{text-align:left;background:#fff;box-shadow:var(--cg-shadow)}.cg-search-groups{display:flex;flex-direction:column;gap:18px}.cg-search-group{background:#fff;border:1px solid var(--cg-line);border-radius:18px;box-shadow:var(--cg-shadow-sm);padding:18px}.cg-search-group__items{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.cg-search-group__count{min-width:38px;height:38px;border-radius:10px;background:#eef5f7;display:grid;place-items:center;color:#507079;font-weight:900}.cg-search-group__more{display:inline-block;margin-top:13px}

/* Error */
.cg-error-page{padding:70px 0}.cg-error-card{max-width:650px;margin:0 auto;background:#fff;border:1px solid var(--cg-line);border-radius:24px;box-shadow:var(--cg-shadow);padding:44px;text-align:center}.cg-error-card>span{font-size:74px;line-height:1;font-weight:950;color:var(--cg-indigo)}.cg-error-card h1{font-size:30px;margin:12px 0 7px}.cg-error-card p{color:var(--cg-muted);font-size:13px}.cg-error-card>div{display:flex;justify-content:center;gap:10px;margin-top:20px;flex-wrap:wrap}

/* Footer */
.cg-footer{background:linear-gradient(120deg,#071a31,#061326 70%,#071b2f);color:#fff;padding:32px 0 38px;margin-top:24px}.cg-footer__grid{display:grid;grid-template-columns:1.3fr .8fr 1.05fr 1fr;gap:42px}.cg-brand--footer .cg-brand__name b{color:#fff}.cg-footer__about p{max-width:260px;color:#aab9ca;font-size:11px;margin:13px 0}.cg-footer__about small{color:#7f91a6;font-size:10px}.cg-footer h4{font-size:12px;margin:4px 0 12px}.cg-footer__grid>div:not(:first-child){display:flex;flex-direction:column;align-items:flex-start}.cg-footer__grid>div:not(:first-child)>a{font-size:10px;color:#aab9ca;margin:4px 0}.cg-footer__grid>div:not(:first-child)>a:hover{color:#fff}
.cg-toast{position:fixed;left:50%;bottom:24px;z-index:200;transform:translate(-50%,20px);opacity:0;background:#0b1730;color:#fff;border-radius:10px;padding:10px 14px;font-size:11px;font-weight:800;box-shadow:0 12px 30px rgba(0,0,0,.24);pointer-events:none;transition:.2s ease}.cg-toast.show{opacity:1;transform:translate(-50%,0)}

/* Responsive */
@media (max-width:1180px){
  .cg-nav{gap:18px}.cg-nav a{font-size:12px}
  .cg-home-top{grid-template-columns:minmax(0,1.45fr) minmax(320px,.85fr)}
  .cg-ranking-head,.cg-casino-row{grid-template-columns:36px minmax(165px,1.05fr) 70px minmax(130px,.8fr) 130px}
  .cg-review-facts{grid-template-columns:repeat(3,1fr)}
  .cg-news-grid{grid-template-columns:repeat(2,1fr)}
  .cg-subcategory-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:980px){
  .cg-nav{display:none}.cg-burger{display:block}.cg-header__actions{margin-left:auto}
  .cg-home-top,.cg-home-panels{grid-template-columns:1fr}
  .cg-review-hero{grid-template-columns:1fr 280px}
  .cg-review-layout,.cg-article-layout{grid-template-columns:minmax(0,1fr) 260px}
  .cg-rating-breakdown{grid-template-columns:repeat(2,1fr)}
  .cg-article-hero{grid-template-columns:1fr;min-height:0}.cg-article-hero__image,.cg-article-hero__placeholder{min-height:260px;max-height:360px}.cg-article-hero__image{order:-1}
  .cg-bonus-hero{grid-template-columns:1fr 300px}
  .cg-bonus-grid{grid-template-columns:repeat(2,1fr)}
  .cg-search-group__items{grid-template-columns:repeat(2,1fr)}
  .cg-footer__grid{grid-template-columns:1.2fr 1fr 1fr;gap:28px}.cg-footer__grid>div:last-child{grid-column:2/4}
}
@media (max-width:760px){
  .cg-container{width:min(var(--cg-container),calc(100% - 24px))}
  .cg-header__inner{height:62px}.cg-brand__mark{width:32px;height:32px}.cg-brand__name b{font-size:17px}.cg-brand__name em{font-size:15px}
  .cg-search-modal{padding:12px;align-items:flex-start}.cg-search-dialog{margin-top:8vh;border-radius:19px;padding:17px}.cg-search-dialog__head h2{font-size:23px}.cg-search-form{grid-template-columns:22px 1fr}.cg-search-form button{grid-column:1/-1;width:100%;height:42px}.cg-search-popular{align-items:flex-start}
  .cg-home-hero{padding-top:12px}.cg-trust-strip{grid-template-columns:1fr;padding:8px 14px}.cg-trust-item{justify-content:flex-start;border-right:0;border-bottom:1px solid rgba(255,255,255,.18);padding:10px}.cg-trust-item:last-child{border-bottom:0}.cg-trust-item strong{font-size:14px}.cg-trust-item small{font-size:10px}.cg-trust-icon{width:38px;height:38px;border-radius:11px}
  .cg-ranking-card,.cg-home-bonuses{padding:13px}.cg-section-head{align-items:flex-start}.cg-section-head h1{font-size:21px}.cg-section-head h2{font-size:20px}.cg-section-lead{font-size:11px}
  .cg-ranking-head{display:none}.cg-casino-list{display:grid;gap:10px}.cg-casino-row{grid-template-columns:38px 1fr auto;grid-template-areas:"rank main rating" "bonus bonus bonus" "actions actions actions";min-height:0;border:1px solid var(--cg-line)!important;border-radius:13px!important;padding:10px}.cg-casino-rank{grid-area:rank}.cg-casino-main{grid-area:main;padding:0}.cg-casino-rating{grid-area:rating;justify-self:end}.cg-casino-bonus{grid-area:bonus;padding:9px 0 0}.cg-casino-bonus span{width:100%;justify-content:center;min-height:34px}.cg-casino-actions{grid-area:actions;padding:8px 0 0;display:grid;grid-template-columns:1fr 1fr}.cg-casino-actions .cg-btn{min-height:38px}.cg-casino-main small{display:none}
  .cg-home-bonuses .cg-bonus-card{grid-template-columns:96px 1fr}.cg-home-bonuses .cg-bonus-value{font-size:18px}.cg-home-bonuses .cg-bonus-card h3{font-size:11px}
  .cg-panel-grid,.cg-school-grid{grid-template-columns:1fr 1fr}.cg-panel-grid a:nth-last-child(-n+3),.cg-school-grid a:nth-last-child(-n+3){border-bottom:1px solid rgba(255,255,255,.13)}.cg-panel-grid a:nth-last-child(-n+2),.cg-school-grid a:nth-last-child(-n+2){border-bottom:0}.cg-school-grid a:nth-child(3n){border-right:1px solid rgba(255,255,255,.13)}.cg-school-grid a:nth-child(2n){border-right:0}
  .cg-article-grid{grid-template-columns:1fr}.cg-news-grid,.cg-news-grid--archive{grid-template-columns:1fr}.cg-news-card,.cg-news-grid--archive .cg-news-card{grid-template-columns:108px 1fr;min-height:120px}.cg-news-card__media,.cg-news-grid--archive .cg-news-card__media{min-height:120px}
  .cg-editorial-card{grid-template-columns:48px 1fr}.cg-editorial-card .cg-btn{grid-column:1/-1}.cg-editorial-icon{width:44px;height:44px}.cg-editorial-card h2{font-size:17px}
  .cg-category-hero,.cg-rating-hero,.cg-simple-hero{padding:18px;align-items:flex-start;flex-direction:column;gap:14px}.cg-category-hero h1,.cg-rating-hero h1,.cg-simple-hero h1{font-size:27px}.cg-category-count{width:100%;height:60px;flex-direction:row;gap:8px}.cg-category-count strong{font-size:22px}.cg-category-count span{margin:0}.cg-rating-hero__note{max-width:none;width:100%}.cg-subcategory-grid{grid-template-columns:repeat(2,1fr)}
  .cg-bonus-grid{grid-template-columns:1fr}
  .cg-review-hero{grid-template-columns:1fr;padding:16px}.cg-review-brand{align-items:flex-start}.cg-review-logo{width:82px;height:82px;border-radius:14px}.cg-review-copy h1{font-size:28px}.cg-review-copy p{font-size:12px}.cg-review-offer{min-height:0}.cg-review-facts{grid-template-columns:repeat(2,1fr)}.cg-anchor-nav{top:62px}.cg-review-layout,.cg-article-layout{grid-template-columns:1fr}.cg-review-sidebar,.cg-article-sidebar{position:static}.cg-side-toc{display:none}.cg-mobile-toc{display:block}.cg-content-card{padding:17px;scroll-margin-top:118px}.cg-rating-breakdown{grid-template-columns:1fr 1fr}.cg-bonus-grid--inside{grid-template-columns:1fr}.cg-pros-cons{grid-template-columns:1fr}.cg-review-sidebar .cg-side-card:not(.cg-side-cta){display:none}
  .cg-bonus-hero{grid-template-columns:1fr;padding:18px}.cg-bonus-hero h1{font-size:29px}.cg-bonus-hero__value{font-size:30px}.cg-bonus-summary{padding:13px}
  .cg-article-hero h1{font-size:29px}.cg-article-hero__copy{padding:19px}.cg-article-hero__image,.cg-article-hero__placeholder{min-height:210px}.cg-prose{font-size:14px}.cg-prose h2{font-size:22px}.cg-prose table{display:block;overflow-x:auto;white-space:nowrap}
  .cg-search-group__items{grid-template-columns:1fr}.cg-search-page__hero h1{font-size:28px}
  .cg-footer__grid{grid-template-columns:1fr 1fr}.cg-footer__about{grid-column:1/-1}.cg-footer__grid>div:last-child{grid-column:auto}.cg-footer{padding-top:28px}
  .pcms-category-filters{align-items:stretch}.pcms-category-filters label{width:100%}.pcms-category-filters button,.pcms-category-filters>a{flex:1}
}
@media (max-width:480px){
  .cg-container{width:calc(100% - 18px)}
  .cg-header__inner{height:58px}.cg-brand__mark{width:30px;height:30px}.cg-brand__name b{font-size:16px}.cg-brand__name em{font-size:14px}.cg-icon-btn,.cg-burger{width:38px;height:38px}.cg-header__actions{gap:4px}
  .cg-mobile-menu{width:94vw}.cg-mobile-quick{gap:6px}.cg-mobile-quick a{padding-inline:5px}
  .cg-home-top{gap:12px}.cg-trust-strip,.cg-card,.cg-link-panel,.cg-editorial-card,.cg-category-hero,.cg-rating-hero,.cg-simple-hero,.cg-review-hero,.cg-bonus-hero,.cg-article-hero,.cg-content-card{border-radius:14px}
  .cg-section-head{gap:8px}.cg-more{font-size:10px}.cg-kicker{font-size:9px}
  .cg-casino-row{grid-template-columns:32px 1fr auto;padding:9px}.cg-casino-logo{width:42px;height:28px}.cg-casino-name{font-size:11px}.cg-casino-rating span{font-size:14px}.cg-casino-rating b{font-size:11px}
  .cg-home-bonuses .cg-bonus-card{grid-template-columns:1fr}.cg-home-bonuses .cg-bonus-card__media{height:90px}.cg-home-bonuses .cg-bonus-card__body{padding:11px}
  .cg-panel-grid,.cg-school-grid{grid-template-columns:1fr}.cg-panel-grid a,.cg-school-grid a{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.13)!important}.cg-panel-grid a:last-child,.cg-school-grid a:last-child{border-bottom:0!important}.cg-link-panel{padding:14px}.cg-panel-head>span{font-size:17px}.cg-panel-head a{display:none}
  .cg-subcategory-grid{grid-template-columns:1fr}.cg-category-hero h1,.cg-rating-hero h1,.cg-simple-hero h1{font-size:24px}
  .cg-review-brand{gap:12px}.cg-review-logo{width:70px;height:70px}.cg-review-copy h1{font-size:24px}.cg-review-badges{gap:5px}.cg-badge{font-size:8px;min-height:22px}.cg-review-facts{grid-template-columns:1fr 1fr}.cg-review-facts>div{min-height:62px;padding:9px}.cg-review-facts b{font-size:11px}.cg-anchor-nav a{font-size:10px;padding:7px 9px}.cg-content-head{flex-direction:column}.cg-rating-breakdown{grid-template-columns:1fr}.cg-verdict__bottom{align-items:stretch;flex-direction:column}.cg-verdict__bottom .cg-btn{width:100%}
  .cg-bonus-hero__actions{display:grid;grid-template-columns:1fr}.cg-code-btn--hero{width:100%;min-width:0}.cg-bonus-hero__actions .cg-btn{width:100%}
  .cg-article-hero h1{font-size:25px}.cg-byline{gap:8px;flex-direction:column;align-items:flex-start}.cg-content-card{padding:15px}.cg-prose h2{font-size:20px}.cg-prose h3{font-size:17px}
  .cg-news-card,.cg-news-grid--archive .cg-news-card{grid-template-columns:92px 1fr}.cg-news-card h3,.cg-news-grid--archive .cg-news-card h3{font-size:11px}.cg-news-grid--archive .cg-news-card p{display:none}
  .cg-footer__grid{grid-template-columns:1fr;gap:22px}.cg-footer__about{grid-column:auto}
  .cg-error-page{padding:40px 0}.cg-error-card{padding:30px 18px}.cg-error-card>span{font-size:58px}.cg-error-card h1{font-size:24px}
}
