@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
:root {
  --bg: #171d2e;
  --card-radius: 12px;
  --transition: .3s;
  --text-light: #f0f4fa;
  --muted: #999;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif; background: var(--bg); color: #fff; overflow-x: clip; }
.container { max-width: 160vh; margin: 0 auto; padding: 1rem; }
.site-header {
  padding: 0.5rem 0;
  background: #171d2e;
  box-shadow: 0 6px 24px -8px rgba(0,0,0,0.45);
}
.site-header .container { display: flex; align-items: center; position: relative; gap: 1rem; flex-wrap: nowrap; }
.logo { font-weight: bold; font-size: 1.2rem; flex: 0 0 auto; }
.logo img { display: block; width: auto; height: 46px; max-width: min(220px, 42vw); }
.main-nav { flex: 1; display: flex; justify-content: center; position: relative; }
.nav-list { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; align-items: center; }
.nav-item { position: relative; font-size: .9rem; font-weight: 500; }
.nav-item > a { position: relative; text-decoration: none; color: #fff; padding: 6px 4px; display: inline-flex; align-items: center; gap: 4px; cursor: pointer; transition: background .25s ease; border-radius: 6px; }
.nav-icon { width: 16px; height: 16px; object-fit: contain; flex: 0 0 auto; }
.nav-item > a .label::after { content: ""; position: absolute; left: 0; bottom: -8px; height: 1px; width: 100%; background: linear-gradient(90deg, #ffa756 0%, #ffd784 50%, #ffa756 100%); background-size: 200% 100%; border-radius: 8px; transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.nav-item > a .label { position: relative; display: inline-block; }
.nav-item > a:hover .label::after, .nav-item > a.active .label::after, .nav-item.open > a .label::after { transform: scaleX(1); animation: gradientSlide 1.5s linear infinite; }
@keyframes gradientSlide { 0%{background-position:0% 0;} 100%{background-position:-200% 0;} }
.chevron { display: inline-flex; transition: transform .25s ease; color: #ffd784; font-size: 1em; line-height: 1; margin-left: 4px; }
.nav-item.open .chevron { transform: rotate(180deg); }
.nav-item.dropdown .dropdown-menu-wrapper {
  position: fixed;
  left: 0;
  top: 110px;
  width: 100vw;
  min-height: 220px;
  background: #171d2e;
  padding: 20px 0 12px 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 1px solid #2f3648;
}

.nav-item.open .dropdown-menu-wrapper {
  visibility: visible;
  opacity: 1;
}
.nav-item.dropdown .dropdown-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; }
.hover-bridge { position: absolute; top: 100%; left: 0; width: 100%; height: 50px; pointer-events: auto; background: transparent; z-index: 190; }
.dropdown-menu { display: flex; gap: 30px; padding: 0; margin: 0; list-style: none; }
.dropdown-column { display: flex; flex-direction: column; min-width: 160px; flex: 0 0 auto; gap: 6px; }
.column-title { font-size: .75rem; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; color: #ffd784; }
.column-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.submenu-item { flex: 1; }
.submenu-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: #f0f4fa;
  border-radius: 8px;
  transition: background .2s;
  background: none;
  position: relative;
}
.submenu-icon { width: 22px; height: 22px; object-fit: contain; flex: 0 0 auto; }

.submenu-item a:hover {
  background: none;
}

.submenu-item a .text {
  position: relative;
  display: inline-block;
}

.submenu-item a .text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #ffa756 0%, #ffd784 50%, #ffa756 100%);
  border-radius: 8px;
  opacity: 0;
  transition: opacity .2s;
}

.submenu-item a:hover .text::after {
  opacity: 1;
}
.actions { flex: 0 0 auto; display: flex; gap: 12px; align-items: center; min-width: 0; margin-left: auto; }
.login { background: transparent; border: none; padding: 6px 4px; border-radius: 6px; cursor: pointer; color: #fff; display: inline-flex; align-items: center; gap: 8px; font-family: "Open Sans", system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif; font-weight: 400; }
.login .login-icon { width: 16px; height: 16px; display: inline-block; }
.login .login-label { position: relative; display: inline-block; }
.login .login-label::after { content: ""; position: absolute; left: 0; bottom: -8px; height: 1px; width: 100%; background: linear-gradient(90deg, #ffa756 0%, #ffd784 50%, #ffa756 100%); background-size: 200% 100%; border-radius: 8px; transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.login:hover .login-label::after, .login:focus-visible .login-label::after { transform: scaleX(1); animation: gradientSlide 1.5s linear infinite; }
.login:focus-visible { outline: 2px solid rgba(255,215,132,0.6); outline-offset: 3px; }
.age-header { padding: 6px 10px; border-radius: 50%; font-size: .8rem; display: flex; align-items: center; }
.18-img { display: block; width: 32px; height: 32px; object-fit: contain; }
.user-menu { position: relative; }
.user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 4px 0;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: #f0f4fa;
  cursor: pointer;
  font-size: .85rem;
  max-width: 220px;
}
.user-trigger:hover { color: #fff; }
.user-trigger:focus-visible {
  outline: 2px solid rgba(255,215,132,0.6);
  outline-offset: 2px;
}
.user-chevron {
  display: inline-flex;
  color: #ffd784;
  transition: transform .25s ease;
}
.user-menu.open .user-chevron { transform: rotate(180deg); }
.user-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.user-avatar.fallback {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2b3250;
  color: #ffd784;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex: 0 0 auto;
}
.user-name {
  font-weight: 600;
  position: relative;
  display: inline-block;
  max-width: 140px;
}
.user-name-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #ffa756 0%, #ffd784 50%, #ffa756 100%);
  background-size: 200% 100%;
  border-radius: 8px;
  opacity: 0;
  transition: opacity .2s ease;
}
.user-trigger:hover .user-name::after,
.user-menu.open .user-name::after {
  opacity: 1;
  animation: gradientSlide 1.5s linear infinite;
}
.user-dropdown {
  position: fixed;
  right: 16px;
  top: 0;
  width: 230px;
  background: linear-gradient(160deg, #1f2742 0%, #151b2f 100%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 300;
}
.user-menu.open .user-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.user-dropdown-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.user-avatar-lg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}
.user-avatar-lg.fallback {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #2b3250;
  color: #ffd784;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}
.user-dropdown-name {
  font-size: .95rem;
  font-weight: 600;
  color: #f3f5f9;
  text-align: center;
}
.user-dropdown-links { display: flex; flex-direction: column; gap: 4px; }
.user-dropdown-links a {
  text-decoration: none;
  color: #dfe4f1;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: .85rem;
  transition: background .2s ease, color .2s ease;
}
.user-dropdown-links a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.footer { background: #111726; color: #f5f7fa; font-family: system-ui,-apple-system,BlinkMacSystemFont,sans-serif; padding: 60px 30px 20px; }
.footer a { color: #f5f7fa; text-decoration: none; }
.footer .top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; max-width: 1200px; margin: 0 auto 40px; }
.footer .left { flex: 2 1 600px; min-width: 300px; position: relative; }
.footer .center { min-width: 230px; position: relative; margin-left: 40px; }
.footer .right { flex: 1 1 250px; min-width: 220px; position: relative; }
.responsible-box {
  margin-top: 28px;
  background: linear-gradient(-25deg, #171d2e 0%, #292e43 100%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 24px 28px;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.45;
  font-family: "Open Sans", system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  color: #e6ebf4;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.responsible-box h3 {
  margin: 0 0 8px;
  color: #ffd884;
  font-size: 20px;
  font-weight: 600;
}
.responsible-box a { color: #ffffff; font-weight: 600; }
.responsible-box .responsible-text { margin: 6px 0 8px; color: #dfe4f1; }
.responsible-box .responsible-note {
  margin: 0;
  font-style: italic;
  font-size: 12px;
  color: #a7b1c4;
}
.footer .links { display: flex; flex-direction: column; gap: 8px; }
.footer .links h4 { margin: 0 0 10px; font-size: 18px; }
.social { display: flex; gap: 10px; margin-bottom: 15px; }
.social button { background: rgba(255,255,255,0.08); border: none; padding: 8px; border-radius: 8px; display: flex; align-items: center; cursor: pointer; position: relative; }
.social button img { width: 20px; height: 20px; }
.toggle { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-size: 13px; color: #e6ecf5; }
.switch { position: relative; display: inline-block; width: 44px; height: 22px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: #1b2338; transition: .25s; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25); }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 2px; bottom: 1px; background-color: #f3f6fb; transition: .25s; border-radius: 50%; box-shadow: 0 0 0 1px rgba(0,0,0,0.15); }
input:checked + .slider { background: #1b2338; border-color: rgba(255,255,255,0.22); }
input:checked + .slider:before { transform: translateX(22px); background: #ffd27a; box-shadow: 0 0 8px rgba(255,210,122,0.6); }
.switch input:focus-visible + .slider { outline: 2px solid rgba(255,215,132,0.6); outline-offset: 2px; }
.footer .bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; text-align: center; font-size: 13px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between; 
}
.footer-logo-block .title {
  font-family: "Open Sans", system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  font-weight: 700;
}
.footer-logo-block.kva {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.kva-img {
  height: 50px;
  display: block;
}
/* ── Mobile hamburger button ─────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  flex: 0 0 auto;
  position: relative;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav overlay ──────────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-nav-overlay.show { opacity: 1; pointer-events: auto; }

/* ── Mobile nav drawer ───────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: #171d2e;
  border-right: 1px solid rgba(255,255,255,.1);
  z-index: 1000;
  overflow-y: auto;
  padding: 72px 0 40px;
  transform: translateX(-100%);
  transition: transform .3s ease, visibility .3s;
  visibility: hidden;
  box-shadow: 4px 0 24px rgba(0,0,0,.45);
}
.mobile-nav.show { transform: translateX(0); visibility: visible; }
.mobile-nav > ul { list-style: none; margin: 0; padding: 0; }
.mob-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.mob-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #f0f4fa;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
}
.mob-item > a:hover { color: #ffd784; }
.mob-chevron { display: inline-flex; color: #ffd784; transition: transform .25s ease; }
.mob-item.mob-open > a > .mob-chevron { transform: rotate(180deg); }
.mob-submenu { display: none; list-style: none; margin: 0; padding: 0; background: rgba(0,0,0,.2); }
.mob-item.mob-open .mob-submenu { display: block; }
.mob-submenu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  color: #c9d3e8;
  text-decoration: none;
  font-size: .88rem;
}
.mob-submenu li a:hover { color: #fff; }
.mob-sub-icon { width: 18px; height: 18px; object-fit: contain; flex: 0 0 auto; }

/* ── Responsive header / main ─────────────────────────────────────── */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-burger {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(10,15,28,0.5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .nav-burger span {
    width: 20px;
    height: 2.5px;
    background: #ffd784;
  }
  .site-header .container {
    gap: .5rem;
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }
  .logo img {
    height: 38px;
    max-width: min(160px, 40vw);
  }
  .actions {
    gap: .4rem;
    flex-shrink: 0;
  }
  .login .login-label { display: none; }
  .login {
    min-width: 36px;
    min-height: 36px;
    justify-content: center;
    padding: 6px;
  }
  .user-trigger {
    gap: 6px;
    padding-right: 0;
    max-width: none;
  }
  .user-name,
  .user-chevron { display: none; }
  .age-header {
    padding: 0;
    width: 32px;
    height: 32px;
    justify-content: center;
    flex: 0 0 32px;
  }
  .18-img {
    width: 28px;
    height: 28px;
  }
  .main-centered { margin-top: 12px; margin-bottom: 16px; }
}

.main-centered {
  max-width: 160vh;
  margin: 0 auto;
  display: block;
  margin-top: 20px;
  margin-bottom: 25px;
}
@media (max-width: 900px) {
  .footer .top { flex-direction: column; gap: 25px; }
  .footer .center, .footer .right { margin-left: 0; }
  .footer-logo { flex-direction: column; align-items: center; text-align: center; gap: 10px; justify-content: center; }
  .footer-logo-block.kva {
    margin-left: 0;
    justify-content: center;
  }
  .footer-logo-block { width: 100%; justify-content: center; min-height: auto; }
  .age-badge { margin: 0; }
  .responsible-box { max-width: none; width: 100%; padding: 20px; }
  .footer .center, .footer .right { margin-top: 20px; }
  .title { font-size: 16px; }
}
.footer-logo img { height: 50px; }
@media (max-width: 900px) {
  .footer .top { flex-direction: column; gap: 25px; }
  .footer .center, .footer .right { margin-left: 0; }
  .footer-logo { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer-logo-block { width: 100%; justify-content: center; min-height: auto; }
  .age-badge { margin: 0; }
  .responsible-box { max-width: none; width: 100%; padding: 20px; }
  .footer .center, .footer .right { margin-top: 20px; }
  .title { font-size: 16px; }
}

.gjs-games-grid .gg-main,
.gjs-games-grid .gg-sidebar,
.gjs-games-grid .gg-banner-slot {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}
.gjs-games-grid .casino-banner-wrap,
.gjs-games-grid .casino-banner,
.gjs-games-grid .casino-banner[data-orientation="vertical"] {
  width: 100% !important;
  max-width: 100% !important;
}
.gjs-games-grid .casino-banner {
  overflow: hidden;
}
.gjs-games-grid .casino-banner .cb-left,
.gjs-games-grid .casino-banner .cb-center,
.gjs-games-grid .casino-banner .cb-right {
  min-width: 0 !important;
  width: 100% !important;
}
.gjs-games-grid .casino-banner[data-orientation="vertical"] {
  min-height: auto !important;
  padding: 22px 16px !important;
}
.gjs-games-grid .casino-banner[data-orientation="vertical"] .cb-right {
  min-height: 0 !important;
}
.gjs-games-grid .casino-banner[data-orientation="vertical"] .cb-promos,
.gjs-games-grid .casino-banner[data-orientation="vertical"] .cb-buttons {
  width: 100% !important;
}
.gjs-games-grid .casino-banner[data-orientation="vertical"] .cb-btn-visit {
  width: 100% !important;
  max-width: none !important;
}

.account-page {
  background: linear-gradient(160deg, #1f2742 0%, #151b2f 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.45);
}
.account-page h1 {
  margin: 0 0 6px;
  font-size: 1.6rem;
}
.account-hint {
  margin: 0 0 18px;
  color: #c9d2e3;
  font-size: 0.95rem;
}
.account-msg {
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.account-msg.ok {
  background: rgba(54, 176, 94, 0.15);
  border: 1px solid rgba(54, 176, 94, 0.4);
  color: #b6f3c3;
}
.account-msg.err {
  background: rgba(232, 89, 89, 0.15);
  border: 1px solid rgba(232, 89, 89, 0.4);
  color: #ffd1d1;
}
.account-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 16px;
}
.avatar-option {
  position: relative;
  cursor: pointer;
}
.avatar-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.avatar-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 2px solid transparent;
  background: rgba(255,255,255,0.04);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.avatar-option input:checked + .avatar-frame {
  border-color: #ffd784;
  box-shadow: 0 0 0 2px rgba(255, 215, 132, 0.2);
  transform: translateY(-2px);
}
.account-save {
  align-self: flex-start;
  background: linear-gradient(90deg, #ffb347 0%, #ffcc80 100%);
  color: #1d1d1d;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.account-save:hover {
  background: linear-gradient(90deg, #ffcc80 0%, #ffb347 100%);
  color: #23243a;
}

.account-reviews {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.account-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.account-reviews-header h2 {
  margin: 0;
  font-size: 1.25rem;
}
.account-reviews-meta {
  color: #c9d2e3;
  font-size: 0.9rem;
}
.account-reviews-controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.account-reviews-controls label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #c9d2e3;
}
.account-reviews-controls select {
  background: rgba(15,23,42,0.7);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 10px;
}
.account-reviews-status {
  margin-top: 12px;
  color: #c9d2e3;
  font-size: 0.9rem;
}
.account-reviews-list {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}
.account-review-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px;
}
.account-review-thumb {
  width: 78px;
  height: 104px;
  background: #0f1720 center/cover no-repeat;
  border-radius: 12px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.08);
}
.account-review-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.account-review-title {
  font-weight: 700;
  color: #f0f4ff;
}
.account-review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #c9d2e3;
}
.account-review-stars span {
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
}
.account-review-stars span.is-on {
  color: #ffcc80;
}
.account-review-link {
  color: #ffd784;
  font-size: 0.85rem;
  text-decoration: none;
}
.account-review-link:hover {
  text-decoration: underline;
}
.account-reviews-more {
  margin-top: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f5f7ff;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
}
.account-reviews-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
