/* ===== Design System: topvin ===== */
:root{
  --color-primary:#6a1b9a;
  --color-primary-dark:#4a148c;
  --color-accent:#ff5722;
  --color-accent-2:#ffc107;
  --color-bg:#f4f4f4;
  --color-bg-alt:#ffffff;
  --color-dark:#1a1a1a;
  --color-text:#2c2c2c;
  --color-muted:#666;
  --color-border:#e0e0e0;
  --color-red:#e53935;
  --color-green:#43a047;
  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:14px;
  --shadow-sm:0 2px 6px rgba(0,0,0,.08);
  --shadow-md:0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:0 8px 28px rgba(0,0,0,.16);
  --container:1180px;
  --nav-height:64px;
  --font-base:'Helvetica Neue',Arial,'PingFang SC','Microsoft YaHei',sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-base);
  background:var(--color-bg);
  color:var(--color-text);
  line-height:1.65;
  font-size:15px;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto}
a{color:var(--color-primary);text-decoration:none;transition:color .2s ease}
a:hover{color:var(--color-accent)}
ul{list-style:none}

/* ===== Top Bar ===== */
.top-bar{
  background:var(--color-dark);
  color:#eee;
  font-size:12px;
  padding:6px 0;
}
.top-bar .container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.top-bar a{color:#ccc;margin-left:12px}
.top-bar a:hover{color:#fff}

/* ===== Header / Nav ===== */
.site-header{
  background:#fff;
  border-bottom:3px solid var(--color-primary);
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:var(--shadow-sm);
}
.container{max-width:var(--container);margin:0 auto;padding:0 16px}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:var(--nav-height);
}
.logo{
  font-size:26px;
  font-weight:900;
  color:var(--color-primary);
  letter-spacing:1px;
  text-transform:uppercase;
  background:linear-gradient(135deg,var(--color-primary),var(--color-accent));
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.nav-list{
  display:flex;
  gap:6px;
  align-items:center;
}
.nav-list a{
  color:#333;
  font-weight:600;
  padding:10px 14px;
  border-radius:var(--radius-sm);
  font-size:14px;
  transition:all .2s;
}
.nav-list a:hover{background:#f0e6f7;color:var(--color-primary)}
.nav-list a.active{background:var(--color-primary);color:#fff}
.nav-actions{display:flex;gap:8px;align-items:center}
.btn{
  display:inline-block;
  padding:9px 18px;
  border-radius:var(--radius-sm);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  border:none;
  text-align:center;
  transition:transform .15s ease, box-shadow .2s ease, background .2s;
}
.btn-login{background:#fff;color:var(--color-primary);border:2px solid var(--color-primary)}
.btn-login:hover{background:var(--color-primary);color:#fff}
.btn-register{
  background:linear-gradient(135deg,var(--color-accent),var(--color-accent-2));
  color:#fff;
}
.btn-register:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);color:#fff}
.btn-primary{background:var(--color-primary);color:#fff}
.btn-primary:hover{background:var(--color-primary-dark);color:#fff}
.btn-outline{background:transparent;color:var(--color-primary);border:2px solid var(--color-primary)}
.btn-outline:hover{background:var(--color-primary);color:#fff}
.btn-lg{padding:14px 28px;font-size:16px}

.menu-toggle{
  display:none;
  background:transparent;
  border:none;
  font-size:26px;
  color:var(--color-primary);
  cursor:pointer;
}

/* ===== Hero ===== */
.hero{
  background:linear-gradient(135deg,#2d0a4d 0%,#6a1b9a 50%,#9c27b0 100%);
  color:#fff;
  padding:50px 0 60px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 80% 20%, rgba(255,193,7,.18), transparent 50%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero-text h1{
  font-size:38px;
  line-height:1.2;
  margin-bottom:16px;
  font-weight:900;
}
.hero-text h1 span{color:var(--color-accent-2)}
.hero-text p.lead{
  font-size:17px;
  margin-bottom:22px;
  color:#f3e5f5;
  max-width:560px;
}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:24px}
.hero-stats{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.18);
  padding-top:18px;
  margin-top:6px;
}
.hero-stats .item{min-width:120px}
.hero-stats .num{font-size:24px;font-weight:800;color:var(--color-accent-2);display:block}
.hero-stats .lbl{font-size:13px;color:#e1bee7}
.hero-image{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:4px solid rgba(255,255,255,.12);
}
.hero-image img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:center;
}

/* ===== Section Base ===== */
section{padding:50px 0}
.section-head{text-align:center;margin-bottom:36px;max-width:760px;margin-left:auto;margin-right:auto}
.section-head h2{
  font-size:30px;
  color:var(--color-primary-dark);
  margin-bottom:10px;
  font-weight:800;
}
.section-head .sub{color:var(--color-muted);font-size:15px}

/* ===== Quick Links Bar ===== */
.quick-bar{
  background:var(--color-red);
  padding:10px 0;
  color:#fff;
  text-align:center;
  font-weight:700;
  font-size:14px;
  letter-spacing:.5px;
}
.quick-bar .container{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:18px}
.quick-bar .pill{
  background:rgba(255,255,255,.15);
  padding:4px 12px;
  border-radius:20px;
  font-size:13px;
}

/* ===== Game Grid ===== */
.game-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
.game-card{
  background:#fff;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .2s ease;
  cursor:pointer;
  display:flex;
  flex-direction:column;
}
.game-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.game-card .img-box{
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:#eee;
}
.game-card .img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.game-card .info{padding:10px 12px}
.game-card h3{font-size:14px;color:var(--color-dark);margin-bottom:4px;font-weight:700}
.game-card .tag{font-size:12px;color:var(--color-muted)}
.game-card .tag.hot{color:var(--color-red);font-weight:700}

/* Featured game grid (mixed) */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.feature-card{
  background:#fff;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.feature-card .img-box{
  width:100%;
  aspect-ratio:3/2;
  overflow:hidden;
}
.feature-card .img-box img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
}
.feature-card .body{padding:14px}
.feature-card h3{font-size:16px;color:var(--color-primary-dark);margin-bottom:6px}
.feature-card p{font-size:13.5px;color:#555}

/* ===== Categories ===== */
.cat-bar{
  background:#fff;
  border-bottom:1px solid var(--color-border);
  padding:0;
}
.cat-list{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:14px 0;
}
.cat-list a{
  flex:0 0 auto;
  padding:10px 18px;
  background:#f5f0fa;
  border-radius:30px;
  color:var(--color-primary);
  font-weight:600;
  font-size:14px;
  white-space:nowrap;
}
.cat-list a:hover,.cat-list a.active{background:var(--color-primary);color:#fff}

/* ===== Info Block / About ===== */
.about-block{background:#fff}
.about-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:36px;
  align-items:start;
}
.about-grid h2{font-size:28px;color:var(--color-primary-dark);margin-bottom:14px}
.about-grid h3{font-size:20px;color:var(--color-primary);margin:20px 0 10px}
.about-grid p{margin-bottom:14px;color:#444}
.about-grid ul.styled{margin:10px 0 16px 22px;list-style:disc}
.about-grid ul.styled li{margin-bottom:6px;color:#444}
.about-side .panel{
  background:linear-gradient(135deg,#f3e5f5,#fff);
  border:1px solid #e1bee7;
  border-radius:var(--radius-md);
  padding:18px;
  margin-bottom:16px;
}
.about-side h4{color:var(--color-primary-dark);font-size:16px;margin-bottom:10px}
.about-side ul li{padding:6px 0;border-bottom:1px dashed #e0c8eb;font-size:14px}
.about-side ul li:last-child{border-bottom:none}

/* ===== Comparison Table ===== */
.compare-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  font-size:14.5px;
}
.compare-table th,.compare-table td{
  padding:12px 14px;
  border-bottom:1px solid var(--color-border);
  text-align:left;
}
.compare-table th{
  background:var(--color-primary);
  color:#fff;
  font-weight:700;
}
.compare-table tr:nth-child(even) td{background:#fafafa}
.compare-table td:first-child{font-weight:600;color:var(--color-primary-dark)}

/* ===== Process / Steps ===== */
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.step{
  background:#fff;
  border-radius:var(--radius-md);
  padding:22px 18px;
  box-shadow:var(--shadow-sm);
  position:relative;
  border-top:4px solid var(--color-primary);
}
.step .n{
  font-size:34px;
  font-weight:900;
  color:var(--color-accent);
  line-height:1;
  margin-bottom:8px;
}
.step h4{color:var(--color-primary-dark);margin-bottom:6px;font-size:16px}
.step p{font-size:13.5px;color:#555}

/* ===== FAQ ===== */
.faq-list{max-width:880px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{
  background:#fff;
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  padding:18px 22px;
  box-shadow:var(--shadow-sm);
  transition:border-color .2s;
}
.faq-item:hover{border-color:var(--color-primary)}
.faq-item h4{
  color:var(--color-primary-dark);
  font-size:16px;
  margin-bottom:10px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.faq-item h4::before{
  content:"Q";
  flex:0 0 26px;
  height:26px;
  background:var(--color-primary);
  color:#fff;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
}
.faq-item p{color:#444;font-size:14.5px;padding-left:36px}
.faq-item ul{padding-left:54px;margin-top:6px;list-style:disc;color:#444;font-size:14px}
.faq-item ul li{margin-bottom:4px}

/* ===== Testimonial ===== */
.testimonial{
  background:linear-gradient(135deg,#fff8e1,#fff);
  border-left:5px solid var(--color-accent-2);
  padding:22px 26px;
  border-radius:var(--radius-md);
  margin:30px auto;
  max-width:820px;
  font-style:italic;
  color:#5d4037;
  box-shadow:var(--shadow-sm);
}
.testimonial .who{
  display:block;
  margin-top:10px;
  font-style:normal;
  color:var(--color-primary-dark);
  font-weight:700;
  font-size:14px;
}

/* ===== CTA ===== */
.cta-band{
  background:linear-gradient(135deg,var(--color-primary-dark),var(--color-accent));
  color:#fff;
  text-align:center;
  padding:50px 16px;
}
.cta-band h2{font-size:28px;margin-bottom:12px}
.cta-band p{font-size:16px;margin-bottom:22px;opacity:.95}

/* ===== Footer ===== */
.site-footer{
  background:#121212;
  color:#bdbdbd;
  padding:50px 0 18px;
  font-size:14px;
}
.foot-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:30px;
  margin-bottom:30px;
}
.foot-col h4{
  color:#fff;
  font-size:15px;
  margin-bottom:14px;
  letter-spacing:.5px;
  text-transform:uppercase;
}
.foot-col p{margin-bottom:10px;line-height:1.7}
.foot-col a{color:#bdbdbd;display:block;padding:5px 0}
.foot-col a:hover{color:var(--color-accent-2)}
.foot-logo{
  font-size:28px;
  font-weight:900;
  color:#fff;
  margin-bottom:12px;
  background:linear-gradient(135deg,#ce93d8,#ffc107);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.foot-bottom{
  border-top:1px solid #333;
  padding-top:16px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:#888;
}
.foot-bottom .badge18{
  background:var(--color-red);
  color:#fff;
  padding:3px 10px;
  border-radius:4px;
  font-weight:700;
}

/* ===== Responsive ===== */
@media(max-width:960px){
  .hero-grid{grid-template-columns:1fr;text-align:center}
  .hero-image{max-width:420px;margin:0 auto}
  .hero-cta{justify-content:center}
  .hero-stats{justify-content:center}
  .game-grid{grid-template-columns:repeat(3,1fr)}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr 1fr;gap:24px}
}
@media(max-width:680px){
  .menu-toggle{display:block}
  .nav-list{
    display:none;
    position:absolute;
    top:var(--nav-height);
    left:0;right:0;
    background:#fff;
    flex-direction:column;
    padding:10px 16px;
    border-bottom:2px solid var(--color-primary);
    box-shadow:var(--shadow-md);
  }
  .nav-list.open{display:flex}
  .nav-list a{width:100%;padding:12px}
  .nav-actions .btn{padding:7px 12px;font-size:13px}
  .hero-text h1{font-size:28px}
  .hero-text p.lead{font-size:15px}
  .section-head h2{font-size:24px}
  .game-grid{grid-template-columns:repeat(2,1fr)}
  .foot-grid{grid-template-columns:1fr}
  .top-bar{font-size:11px}
  .top-bar .container{justify-content:center;text-align:center}
}
@media(max-width:420px){
  .hero-text h1{font-size:24px}
  .hero-stats .num{font-size:20px}
  .cta-band h2{font-size:22px}
}

/* ===== Utility ===== */
.text-center{text-align:center}
.mt-20{margin-top:20px}
.mb-20{margin-bottom:20px}
.divider{height:1px;background:var(--color-border);margin:30px 0}

/* Focus accessibility */
a:focus-visible,button:focus-visible{
  outline:2px solid var(--color-accent-2);
  outline-offset:2px;
}
.faq-item h4::before img{width:100%;height:100%;object-fit:cover;object-position:center}

/* codex-design-system-v2: reusable full-site components */
:root{
  --ds-bg:var(--page-bg,#090014);
  --ds-surface:var(--card-bg,#1a1230);
  --ds-surface-2:var(--section-bg,#2a0730);
  --ds-text:var(--text,#ffffff);
  --ds-muted:var(--muted,#d8c8e6);
  --ds-accent:var(--accent,#e92a88);
  --ds-accent-2:var(--accent-2,#ffca2c);
  --ds-border:rgba(255,255,255,.18);
  --ds-radius:8px;
  --ds-shadow:0 18px 44px rgba(0,0,0,.28);
  --ds-container:1180px;
}
html{scroll-behavior:smooth}
body{background:var(--ds-bg);color:var(--ds-text)}
body a{color:inherit}
.main-nav,.nav-links{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap}
.main-nav ul,.nav-links ul{display:contents;list-style:none;margin:0;padding:0}
.main-nav li,.nav-links li{display:contents;margin:0;padding:0}
.main-nav a,.nav-links a{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;white-space:nowrap}
.main-nav a.active,.nav-links a.active{background:var(--ds-accent-2);color:#111;border-radius:var(--ds-radius)}
.container,.site-container,.inner,.wrap{width:min(var(--ds-container),calc(100% - 40px));margin-inline:auto}
.section,.section-pad,.content-section{padding:64px 0}
.section-tight{padding:42px 0}
.breadcrumb,.breadcrumbs{width:min(var(--ds-container),calc(100% - 40px));margin:0 auto;padding:22px 0;color:var(--ds-muted);font-size:14px}
.breadcrumb a,.breadcrumbs a{color:var(--ds-accent-2);text-decoration:none}
.story,.page-hero,.hero,.hero-section{position:relative;overflow:hidden;background:var(--ds-surface-2);color:var(--ds-text)}
.story>.container,.hero .container,.hero-section .container{width:min(var(--ds-container),calc(100% - 40px));margin-inline:auto}
.story-flex,.hero-split,.inner-hero{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(280px,.8fr);align-items:center;gap:56px;padding:70px 0}
.story-copy,.hero-copy,.inner-hero-copy{max-width:680px}
.story-copy h1,.hero-copy h1,.page-hero h1,.inner-hero h1{font-size:clamp(34px,5vw,64px);line-height:1.05;letter-spacing:0;margin:0 0 22px;color:#fff}
.story-copy p,.hero-copy p,.inner-hero p,.lead{font-size:clamp(16px,1.4vw,19px);line-height:1.75;color:var(--ds-muted);margin:0 0 18px}
.story-media,.hero-media,.inner-hero-media{border:1px solid var(--ds-border);border-radius:var(--ds-radius);overflow:hidden;box-shadow:var(--ds-shadow);background:#000}
.story-media img,.hero-media img,.inner-hero-media img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover}
.btn,.button,.cta-button,.primary-btn,.secondary-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:0 22px;border-radius:999px;font-weight:800;text-decoration:none;border:1px solid transparent;line-height:1}
.primary-btn,.btn-primary,.cta-button{background:var(--ds-accent);color:#fff;box-shadow:0 12px 28px color-mix(in srgb,var(--ds-accent) 35%,transparent)}
.secondary-btn,.btn-secondary{background:transparent;color:#fff;border-color:var(--ds-border)}
.btn:hover,.button:hover,.cta-button:hover{transform:translateY(-1px)}
.content-card,.info-card,.feature-card,.step-card,.related-card{background:var(--ds-surface);border:1px solid var(--ds-border);border-radius:var(--ds-radius);box-shadow:var(--ds-shadow);padding:28px;color:var(--ds-text)}
.content-card h2,.info-card h3,.feature-card h3,.step-card h3,.related-card h3{color:var(--ds-text);margin:0 0 12px;line-height:1.25}
.content-card p,.info-card p,.feature-card p,.step-card p,.related-card p{color:var(--ds-muted);line-height:1.72;margin:0}
.feature-grid,.cards-grid,.related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;width:min(var(--ds-container),calc(100% - 40px));margin-inline:auto}
.step-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;width:min(860px,calc(100% - 40px));margin-inline:auto}
.step-card .num,.step-number{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:999px;background:var(--ds-accent-2);color:#111;font-weight:900;margin-bottom:14px}
.faq,.faq-section{width:min(860px,calc(100% - 40px));margin-inline:auto}
.faq details,.faq-item{border:1px solid var(--ds-border);border-radius:var(--ds-radius);background:rgba(255,255,255,.04);margin-bottom:12px;overflow:hidden}
.faq summary,.faq-question{cursor:pointer;padding:18px 20px;color:var(--ds-text);font-weight:800}
.faq details p,.faq-answer{padding:0 20px 18px;color:var(--ds-muted);line-height:1.72}
.related-links{width:min(860px,calc(100% - 40px));margin-inline:auto}
.related-links a{color:var(--ds-accent-2);font-weight:800}
.cta-band,.final-cta{background:var(--ds-accent);color:#fff;text-align:center;padding:56px 20px}
.cta-band h2,.final-cta h2{color:#fff;margin:0 0 12px;font-size:clamp(26px,3vw,42px)}
.cta-band p,.final-cta p{width:min(720px,100%);margin:0 auto 22px;color:#fff;line-height:1.7}
footer,.footer{background:#090014;color:#fff}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.4fr;gap:34px;width:min(var(--ds-container),calc(100% - 40px));margin-inline:auto}
footer h3,footer h4,.footer h3,.footer h4{color:#fff;margin:0 0 14px}
footer p,footer li,footer a,.footer p,.footer li,.footer a{color:var(--ds-muted);line-height:1.65;text-decoration:none}
input,select,textarea{width:100%;border:1px solid var(--ds-border);border-radius:var(--ds-radius);padding:13px 14px;background:#fff;color:#111;font:inherit}
label{display:block;color:var(--ds-text);font-weight:700;margin-bottom:8px}
table{width:100%;border-collapse:collapse;background:var(--ds-surface);color:var(--ds-text);border-radius:var(--ds-radius);overflow:hidden}
th,td{padding:14px 16px;border-bottom:1px solid var(--ds-border);text-align:left}
th{color:var(--ds-text);background:rgba(255,255,255,.06)}
.text-safe,.content-section p,.content-section li{color:var(--ds-muted)}
.content-section h1,.content-section h2,.content-section h3{color:var(--ds-text)}
@media (max-width:900px){
  .story-flex,.hero-split,.inner-hero{grid-template-columns:1fr;gap:28px;padding:52px 0}
  .feature-grid,.cards-grid,.related-grid,.step-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  .container,.site-container,.inner,.wrap,.breadcrumb,.breadcrumbs{width:min(100% - 28px,var(--ds-container))}
  .section,.section-pad,.content-section{padding:44px 0}
  .story-copy h1,.hero-copy h1,.page-hero h1,.inner-hero h1{font-size:34px}
  .footer-grid{grid-template-columns:1fr}
}

/* Uniform media grids: keep side-by-side images aligned */
.games-grid,
.game-grid,
.cards-grid,
.cat-grid,
.category-grid,
.overview-grid,
.slot-grid,
.casino-grid,
.game-gallery,
.game-list,
.featured-games,
.popular-games,
.grid {
  align-items: stretch;
  justify-content: center;
}
.games-grid img,
.game-grid img,
.slot-grid img,
.casino-grid img,
.game-gallery img,
.game-list img,
.featured-games img,
.popular-games img,
.game-tile img,
.slot-card img,
.casino-card img,
.game-card img,
.cat-card img,
.category-card img,
.cards-grid img,
.overview-grid img {
  width: 100% !important;
  height: 180px !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}
.game-card,
.game-tile,
.slot-card,
.casino-card,
.cat-card,
.category-card {
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  align-content: start !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
}
.game-card > :not(img),
.game-tile > :not(img),
.slot-card > :not(img),
.casino-card > :not(img),
.cat-card > :not(img),
.category-card > :not(img) {
  margin-left: 18px !important;
  margin-right: 18px !important;
}
.game-card > img:first-child,
.game-tile > img:first-child,
.slot-card > img:first-child,
.casino-card > img:first-child,
.cat-card > img:first-child,
.category-card > img:first-child {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 180px !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 0 18px 0 !important;
  border-radius: 14px 14px 0 0 !important;
}
.game-card > img:first-child + *,
.game-tile > img:first-child + *,
.slot-card > img:first-child + *,
.casino-card > img:first-child + *,
.cat-card > img:first-child + *,
.category-card > img:first-child + * {
  margin-top: 0 !important;
}
.strip-inner img,
.partner-strip img,
.logo-strip img {
  width: 110px !important;
  height: 110px !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
}
@media (max-width: 640px) {
  .games-grid img,
  .game-grid img,
  .slot-grid img,
  .casino-grid img,
  .game-gallery img,
  .game-list img,
  .featured-games img,
  .popular-games img,
  .game-tile img,
  .slot-card img,
  .casino-card img,
  .game-card img,
  .cat-card img,
  .category-card img,
  .cards-grid img,
  .overview-grid img {
    height: 150px !important;
  }
}
.feat-card img,
.feature-card img,
.service-card img,
.news-card img {
  flex-shrink: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

