:root{
  --cg-home-bg: #0b0c13;
  --cg-home-sidebar-bg: rgba(15,18,30,.78);
  --cg-home-sidebar-border: rgba(255,255,255,.08);
  --cg-home-text: #ffffff;
  --cg-home-text-soft: rgba(255,255,255,.78);
  --cg-home-accent: #8d90ff;
  --cg-home-accent-hover: #6842ff;
  --cg-home-toggle-bg: rgba(11,12,19,.96);
  --cg-home-toggle-border: rgba(255,255,255,.14);
  --cg-home-shadow: 0 18px 38px rgba(0,0,0,.28);
  --cg-home-sidebar-width: 390px;
  --cg-home-sidebar-width-tablet: 350px;
  --cg-home-sidebar-width-mobile: min(86vw, 320px);
  --cg-home-sidebar-collapsed-peek: 34px;
  --cg-home-toggle-size: 48px;
  --cg-home-card-radius: 16px;
  --cg-home-sidebar-footer-height: 148px;
}

html,
body{
  margin: 0;
  padding: 0;
  background: var(--cg-home-bg);
}

body{
  overflow-x: hidden;
}

.cg-home-game{
  width: 100%;
  background: var(--cg-home-bg);
}

.cg-home-game__layout{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

.cg-home-game__stage{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

.cg-home-game__stage::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,.14), rgba(0,0,0,0) 16%),
    linear-gradient(to top, rgba(0,0,0,.10), rgba(0,0,0,0) 24%);
  z-index: 1;
}

.cg-home-game__iframe{
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  border: 0;
  background: #000;
}

.cg-home-game__empty{
  min-height: 100vh;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--cg-home-bg);
}

.cg-home-game__empty-title{
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.cg-home-game__empty-text{
  margin: 0;
  max-width: 580px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  color: rgba(255,255,255,.74);
}

/* Sidebar */
.cg-home-game__sidebar{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 20;
  width: var(--cg-home-sidebar-width);
  max-width: min(92vw, var(--cg-home-sidebar-width));
  overflow: visible;
}

.cg-home-game__sidebar-inner{
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--cg-home-sidebar-bg);
  border-right: 1px solid var(--cg-home-sidebar-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--cg-home-shadow);
  overflow: visible;
  transform: translateX(0);
  transition: transform .26s ease;
  will-change: transform;
}

.cg-home-game__sidebar:not(.is-open) .cg-home-game__sidebar-inner{
  transform: translateX(calc(-100% + var(--cg-home-sidebar-collapsed-peek)));
}

.cg-home-game__sidebar:not(.is-open){
  pointer-events: none;
}

.cg-home-game__sidebar:not(.is-open) .cg-home-game__toggle{
  pointer-events: auto;
}

.cg-home-game__toggle{
  position: absolute;
  top: 50%;
  right: calc(var(--cg-home-toggle-size) / -2);
  transform: translateY(-50%);
  width: var(--cg-home-toggle-size);
  height: var(--cg-home-toggle-size);
  padding: 0;
  border: 1px solid var(--cg-home-toggle-border);
  border-radius: 999px;
  background: var(--cg-home-toggle-bg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
  z-index: 100;
  overflow: visible;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.cg-home-game__toggle:hover,
.cg-home-game__toggle:focus{
  outline: none;
  border-color: rgba(255,255,255,.22);
  background: rgba(15,18,30,.99);
  box-shadow: 0 12px 28px rgba(0,0,0,.30);
}

.cg-home-game__toggle:active{
  transform: translateY(-50%) scale(.98);
}

.cg-home-game__toggle-arrow{
  position: relative;
  width: 12px;
  height: 12px;
  display: block;
}

.cg-home-game__toggle-arrow::before{
  content: "";
  position: absolute;
  inset: 0;
  border-right: 3px solid var(--cg-home-accent);
  border-bottom: 3px solid var(--cg-home-accent);
  transform: rotate(135deg);
  transition: border-color .18s ease, transform .28s ease;
}

.cg-home-game__toggle:hover .cg-home-game__toggle-arrow::before,
.cg-home-game__toggle:focus .cg-home-game__toggle-arrow::before{
  border-color: var(--cg-home-accent-hover);
}

.cg-home-game__sidebar:not(.is-open) .cg-home-game__toggle-arrow::before{
  transform: rotate(-45deg);
}

.cg-home-game__sidebar-scroll{
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 28px 22px calc(var(--cg-home-sidebar-footer-height) + 24px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.14) transparent;
}

.cg-home-game__sidebar-scroll::-webkit-scrollbar{
  width: 6px;
}

.cg-home-game__sidebar-scroll::-webkit-scrollbar-track{
  background: transparent;
}

.cg-home-game__sidebar-scroll::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.14);
  border-radius: 999px;
}

.cg-home-game__sidebar-content{
  width: 100%;
  max-width: 100%;
  transition: opacity .14s ease;
}

.cg-home-game__sidebar:not(.is-open) .cg-home-game__sidebar-content,
.cg-home-game__sidebar:not(.is-open) .cg-home-game__sidebar-bottom{
  opacity: 0;
  pointer-events: none;
}

.cg-home-game__sidebar.is-open .cg-home-game__sidebar-content,
.cg-home-game__sidebar.is-open .cg-home-game__sidebar-bottom{
  opacity: 1;
  pointer-events: auto;
}

/* Intro */
.cg-home-game__intro{
  margin-bottom: 26px;
}

.cg-home-game__title{
  margin: 0 0 12px;
  color: var(--cg-home-text);
  font-size: 36px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.cg-home-game__excerpt{
  margin: 0;
  color: var(--cg-home-text-soft);
  font-size: 15px;
  line-height: 1.74;
  font-weight: 700;
}

/* Shared section */
.cg-home-game__section-head{
  margin-bottom: 12px;
}

.cg-home-game__section-title{
  margin: 0;
  color: var(--cg-home-text);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* Similar games */
.cg-home-game__similar{
  margin-bottom: 28px;
}

.cg-home-game__similar-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cg-home-game__similar-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--cg-home-card-radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.cg-home-game__similar-card:hover{
  transform: translateY(-2px);
  border-color: rgba(141,144,255,.42);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.cg-home-game__similar-grid.is-collapsed .cg-home-game__similar-card.is-extra{
  display: none;
}

.cg-home-game__similar-link{
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.cg-home-game__similar-media{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #11182e;
}

.cg-home-game__similar-media img,
.cg-home-game__similar-placeholder{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cg-home-game__similar-placeholder{
  background: linear-gradient(135deg, #1c2747 0%, #11182e 100%);
}

.cg-home-game__similar-body{
  padding: 10px 10px 12px;
}

.cg-home-game__similar-title{
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cg-home-game__similar-toggle{
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--cg-home-accent);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
  transition: color .18s ease, opacity .18s ease;
}

.cg-home-game__similar-toggle:hover,
.cg-home-game__similar-toggle:focus{
  color: #ffffff;
  outline: none;
}

.cg-home-game__similar-toggle-label-less{
  display: none;
}

.cg-home-game__similar-toggle[aria-expanded="true"] .cg-home-game__similar-toggle-label-more{
  display: none;
}

.cg-home-game__similar-toggle[aria-expanded="true"] .cg-home-game__similar-toggle-label-less{
  display: inline;
}

/* SEO */
.cg-home-game__seo{
  margin-bottom: 12px;
}

.cg-home-game__seo-box{
  position: relative;
}

.cg-home-game__seo-content{
  color: var(--cg-home-text-soft);
  font-size: 15px;
  line-height: 1.84;
  font-weight: 700;
  transition: max-height .28s ease;
  overflow: hidden;
}

.cg-home-game__seo-content.is-collapsed{
  max-height: 180px;
  position: relative;
}

.cg-home-game__seo-content.is-collapsed::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: linear-gradient(to bottom, rgba(15,18,30,0), rgba(15,18,30,.96));
  pointer-events: none;
}


.cg-home-game__seo-inner {
  max-height: 460px;
  overflow: hidden;
}

.cg-home-game__seo-content.is-expanded .cg-home-game__seo-inner {
  max-height: none;
  overflow: visible;
}



.cg-home-game__seo-content > *:first-child{
  margin-top: 0;
}

.cg-home-game__seo-content > *:last-child{
  margin-bottom: 0;
}

.cg-home-game__seo-content h2,
.cg-home-game__seo-content h3,
.cg-home-game__seo-content h4,
.cg-home-game__seo-content h5,
.cg-home-game__seo-content h6{
  margin: 28px 0 12px;
  color: var(--cg-home-text);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.cg-home-game__seo-content h2{ font-size: 28px; }
.cg-home-game__seo-content h3{ font-size: 22px; }
.cg-home-game__seo-content h4{ font-size: 18px; }

.cg-home-game__seo-content p{
  margin: 0 0 16px;
  color: var(--cg-home-text-soft);
}

.cg-home-game__seo-content ul,
.cg-home-game__seo-content ol{
  margin: 0 0 16px 20px;
  padding: 0;
}

.cg-home-game__seo-content li{
  margin-bottom: 8px;
}

.cg-home-game__seo-content strong{
  color: #fff;
  font-weight: 900;
}

.cg-home-game__seo-content a{
  color: var(--cg-home-accent);
  text-decoration: none;
  transition: color .18s ease;
}

.cg-home-game__seo-content a:hover{
  color: #ffffff;
}

.cg-home-game__seo-content blockquote{
  margin: 22px 0;
  padding: 16px 16px 16px 18px;
  border-left: 3px solid var(--cg-home-accent);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.84);
}

.cg-home-game__seo-content img{
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 20px 0;
}

.cg-home-game__seo-toggle{
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--cg-home-accent);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
  transition: color .18s ease, opacity .18s ease;
}

.cg-home-game__seo-toggle:hover,
.cg-home-game__seo-toggle:focus{
  color: #ffffff;
  outline: none;
}

.cg-home-game__seo-toggle-label-less{
  display: none;
}

.cg-home-game__seo-toggle[aria-expanded="true"] .cg-home-game__seo-toggle-label-more{
  display: none;
}

.cg-home-game__seo-toggle[aria-expanded="true"] .cg-home-game__seo-toggle-label-less{
  display: inline;
}

/* Fixed bottom links */
.cg-home-game__sidebar-bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 14px 18px 16px;
  background: linear-gradient(to top, rgba(11,12,19,.98), rgba(11,12,19,.92), rgba(11,12,19,0));
  transition: opacity .14s ease;
}

.cg-home-game__sidebar-bottom::before{
  content: "";
  position: absolute;
  top: 14px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: rgba(255,255,255,.06);
}

.cg-home-game__sidebar-bottom > *{
  position: relative;
  z-index: 1;
}






.cg-home-game__all-games{
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(52,199,255,.92), rgba(78,133,255,.92));
  border: 1px solid rgba(255,255,255,.10);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  box-sizing: border-box;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    filter .18s ease,
    background .18s ease,
    color .18s ease;
}

.cg-home-game__all-games:hover,
.cg-home-game__all-games:focus{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 10px 22px rgba(52,199,255,.28);
  filter: brightness(1.06) saturate(1.08);
  color: #ffffff;
  outline: none;
}

.cg-home-game__all-games:active{
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(52,199,255,.18);
  filter: brightness(.96) saturate(1);
}

.cg-home-game__all-games:focus-visible{
  outline: 2px solid rgba(255,255,255,.55);
  outline-offset: 2px;
}





.cg-home-game__mini-links{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  margin-top: 14px;
}

.cg-home-game__mini-links a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 4px 4px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  transition: color .18s ease, opacity .18s ease;
}


.cg-home-game__mini-links a:hover,
.cg-home-game__mini-links a:focus{
  color: #ffffff;
  outline: none;
}

.cg-home-game__mini-socials{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.cg-home-game__mini-social{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.cg-home-game__mini-social:hover,
.cg-home-game__mini-social:focus{
  transform: translateY(-1px);
  border-color: rgba(141,144,255,.34);
  background: rgba(255,255,255,.06);
  outline: none;
}

.cg-home-game__mini-social img{
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%);
  opacity: .92;
}

@media (max-width: 1180px){
  .cg-home-game__sidebar{
    width: var(--cg-home-sidebar-width-tablet);
    max-width: min(88vw, var(--cg-home-sidebar-width-tablet));
  }

  .cg-home-game__title{
    font-size: 32px;
  }
}

@media (max-width: 767px){
  :root{
    --cg-home-toggle-size: 42px;
    --cg-home-sidebar-collapsed-peek: 30px;
    --cg-home-sidebar-footer-height: 156px;
  }

  .cg-home-game__sidebar{
    width: var(--cg-home-sidebar-width-mobile);
    max-width: var(--cg-home-sidebar-width-mobile);
  }

  .cg-home-game__sidebar-scroll{
    padding: 20px 16px calc(var(--cg-home-sidebar-footer-height) + 20px);
  }

  .cg-home-game__title{
    font-size: 26px;
  }

  .cg-home-game__excerpt,
  .cg-home-game__seo-content{
    font-size: 14px;
  }

  .cg-home-game__section-title{
    font-size: 20px;
  }

  .cg-home-game__similar-grid{
    gap: 10px;
  }

  .cg-home-game__similar-title{
    font-size: 12px;
  }

  .cg-home-game__seo-content h2{ font-size: 24px; }
  .cg-home-game__seo-content h3{ font-size: 20px; }
  .cg-home-game__seo-content h4{ font-size: 17px; }

  .cg-home-game__sidebar-bottom{
    padding: 12px 14px 14px;
  }

  .cg-home-game__sidebar-bottom::before{
    top: 12px;
    left: 14px;
    right: 14px;
  }

  .cg-home-game__all-games{
    min-height: 40px;
    font-size: 12px;
    border-radius: 11px;
  }

  .cg-home-game__mini-links{
    gap: 7px 9px;
    margin-top: 12px;
  }

  .cg-home-game__mini-links a{
    font-size: 10px;
  }

  .cg-home-game__mini-socials{
    gap: 8px;
    margin-top: 12px;
  }

  .cg-home-game__mini-social{
    width: 26px;
    height: 26px;
  }

  .cg-home-game__mini-social img{
    width: 14px;
    height: 14px;
  }
}





/* =========================================================
   HOME SIDEBAR BRAND - FORCE FIX
   add at the very end of home-hero-game.css
   ======================================================= */
/* manual logo fix */
.cg-home-game__brand{
  margin: 0 0 14px !important;
}

.cg-home-game__brand-link{
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  color: #fff !important;
  max-width: 100% !important;
}

.cg-home-game__brand-logo{
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  flex: 0 0 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
}

.cg-home-game__brand-manual-logo{
  display: block !important;
  width: 78% !important;
  height: 78% !important;
  max-width: 78% !important;
  max-height: 78% !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.cg-home-game__brand-text{
  display: inline-block !important;
  color: rgba(255,255,255,.88) !important;
  font-size: 14px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  max-width: 120px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  opacity: .82;
}

@media (max-width: 767px){
  .cg-home-game__brand-logo{
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    flex: 0 0 36px !important;
  }

  .cg-home-game__brand-text{
    font-size: 10px !important;
    max-width: 100px !important;
  }
}











.cg-home-game__stage {
  position: relative;
  width: 100%;
  min-width: 0;
}

.cg-game-launcher {
  position: relative;
  width: 100%;
  min-height: 100%;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

.cg-game-launcher__poster,
.cg-game-launcher__frame-wrap {
  width: 100%;
}

.cg-game-launcher__poster {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cg-game-launcher__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,10,18,.30) 0%, rgba(7,10,18,.82) 100%),
    linear-gradient(135deg, rgba(19,27,46,.72) 0%, rgba(11,15,25,.88) 100%);
  backdrop-filter: blur(3px);
}

.cg-game-launcher__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.cg-game-launcher__thumb {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.cg-game-launcher__title {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

.cg-game-launcher__button {
  min-width: 170px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(52,199,255,.96), rgba(78,133,255,.96));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(52,199,255,.24);
}

.cg-game-launcher__frame-wrap[hidden] {
  display: none !important;
}

.cg-game-launcher__frame-wrap {
  position: relative;
  min-height: 100vh;
  background: #000;
}

.cg-game-launcher__iframe {
  display: block;
  width: 100%;
  height: 100vh;
  border: 0;
  background: #000;
}

@media (max-width: 767px) {
  .cg-game-launcher__thumb {
    width: 132px;
    max-width: 52vw;
  }

  .cg-game-launcher__title {
    font-size: 20px;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .cg-game-launcher__button {
    min-width: 138px;
    min-height: 40px;
    padding: 0 16px;
    font-size: 12px;
    border-radius: 12px;
  }
}


@media (max-width: 480px) {
  .cg-game-launcher__thumb {
    width: 118px;
    max-width: 50vw;
  }

  .cg-game-launcher__title {
    font-size: 18px;
  }

  .cg-game-launcher__button {
    min-width: 128px;
    min-height: 38px;
    font-size: 11.5px;
  }
}



@media (max-width: 932px) and (orientation: landscape) {
  .cg-game-launcher__poster {
    min-height: 100vh;
    padding: 16px 12px;
  }

  .cg-game-launcher__content {
    max-width: 360px;
  }

  .cg-game-launcher__thumb {
    width: 92px;
    max-width: 22vw;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .cg-game-launcher__title {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.05;
  }

  .cg-game-launcher__button {
    min-width: 118px;
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
    border-radius: 10px;
  }
}


/* =========================================================
   REFINED POST RATINGS - GAMING LAYOUT
   ======================================================= */

.post-ratings {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important; /* كيخلي النجوم والنص في خط واحد */
    gap: 3px !important; /* مسافة بين النجوم والنص */
    margin: 12px 0 20px 0 !important; /* تباعد احترافي بين العنوان والنجوم */
    padding: 0 !important;
    line-height: 1 !important;
}

/* تنسيق النجوم */
.post-ratings img {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    filter: drop-shadow(0 0 4px rgba(141, 144, 255, 0.4));
}

/* تنسيق النص الجانبي (Votes, average...) */
.post-ratings-text, 
.post-ratings {
    font-size: 12px !important;
    color: var(--cg-home-text-soft) !important;
    font-weight: 600 !important;
    font-style: italic; /* كيعطي طابع أسرع للألعاب */
}

/* تلوين الأرقام فقط داخل النص */
.post-ratings strong, 
.post-ratings span {
    color: var(--cg-home-accent) !important;
    font-weight: 800 !important;
    margin: 0 1px;
}

/* إخفاء أي حاجة كتخسر الترتيب */
.post-ratings br {
    display: none !important;
}

/* لمسة إضافية لـ "No Ratings Yet" */
.post-ratings:empty::before,
[id^="post-ratings"] span:contains("No Ratings") {
    opacity: 0.6;
    font-style: normal;
}


/* Responsive: تصغير إضافي للموبايل الصغير */
@media (max-width: 480px) {
    .post-ratings {
        gap: 1px !important;
    }
    .post-ratings img {
        width: 12px !important;
        height: 12px !important;
    }
    .post-ratings-text,
    .post-ratings span {
        font-size: 10px !important;
    }
}
