html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  --body-bg: #191c1f;
  --body-color: #fafafc;
  --dialog-bg: #232323;
  --dialog-color: #f0d480;
  --form-background: #23262a;
  --form-border-color: #383b40;
  --form-color: #fafafc;
}

body {
  font-family: "Arimo", sans-serif;
  background-color: #181207;
  font-size: 16px;
  line-height: 1.4;
  color: var(--form-color);
}
/* =========================
   LIGHT THEME
========================= */
body.light-theme {
  --body-bg: #f4f6f9;
  --body-color: #1b1e23;

  --dialog-bg: #ffffff;
  --dialog-color: #b57a00;

  --form-background: #f7f9fc;
  --form-border-color: #d8dde6;
  --form-color: #1b1e23;
}
header>.container{
  display: flex;
  justify-content: space-between;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}
header {
    background: linear-gradient(
        180deg,
        #0b0b0f 0%,
        #111118 100%
    );
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 0, 102, 0.25);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(255, 0, 102, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
  position: relative;
  display: inline-block;
  width: max-content;

  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 34px;
  font-weight: 800;
  font-style: italic;

  letter-spacing: 0.14em; 
  text-decoration: none;

  color: #ffb347;

  background: linear-gradient(
    120deg,
    #f3cc95 0%,
    #ffdc80 40%,
    #ff7a18 70%,
    #ffb347 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 8px rgba(255, 180, 80, 0.6),
    0 0 22px rgba(255, 120, 24, 0.45),
    0 0 40px rgba(255, 60, 120, 0.25);

  transition:
    transform 0.35s ease,
    text-shadow 0.35s ease,
    letter-spacing 0.35s ease;
}


.breadcrumbs_items {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.breadcrumbs_items > li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumbs {
  margin: 20px 0 10px;
}

.breadcrumbs_items , .breadcrumb-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
}
.breadcrumb-nav{
  margin-bottom: 30px;
}
.breadcrumbs_items > li {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.card strong {
      font-weight: 500;
      color: var(--dialog-color);
}
.section.container .text-neutral {
  list-style: disc;
  margin: 0 0 16px;
}
.light-theme .card strong{
  color: #ad5802;
}
.breadcrumbs_items {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;

  list-style: none;
  margin: 0;

  background: linear-gradient(
    135deg,
    rgba(20, 20, 30, 0.85),
    rgba(35, 10, 60, 0.85)
  );

  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.breadcrumbs_items li a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #bba7ff;
  text-decoration: none;

  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.breadcrumbs_items li a:hover {
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(168, 85, 247, 0.7),
    0 0 18px rgba(236, 72, 153, 0.45);
}
.breadcrumbs_items li b {
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);

  text-shadow:
    0 0 6px rgba(168, 85, 247, 0.4);
}
.breadcrumbs_items .has_nav h1 {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: #ffffff;

  text-shadow:
    0 0 10px rgba(236, 72, 153, 0.85),
    0 0 28px rgba(168, 85, 247, 0.6),
    0 0 48px rgba(236, 72, 153, 0.35);
}

.dropdown-content {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;

  background: linear-gradient(180deg, #23262a, #1b1e22);
  border: 1px solid #2f3338;
  border-radius: 12px;
  padding: 10px 0;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.25s ease;
  z-index: 50;
}
.has_nav:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #e6e6e6;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.dropdown-content a:hover {
  background: rgba(255, 174, 45, 0.12);
  color: #ffae2d;
}
.has_nav {
  position: relative;
}
.has_nav::before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  bottom: -20px;
  left: 0;
  position: absolute;
}

.has_nav b {
  transition: transform 0.25s ease;
}

.has_nav:hover b {
  transform: rotate(180deg);
}

.live_games_section h3 {
  text-align: center;
  font-style: italic;
  font-size: 18px;
  margin: 0 0 30px;
}
.live_games_section {
  padding: 30px 0;
}
.main_wrapper {
  align-items: start;
  display: flex;
  justify-content: center;
}
.skyscraper-banner * {
  display: block;
  height: 100%;
  width: auto;
  aspect-ratio: 300 / 1200;
}
.skyscraper-banner {
  aspect-ratio: 300 / 1200;
  width: auto;
  height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: sticky;
  top: 3em;
}
.has_nav > button {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 14px;

  font-family: "Montserrat", "Arimo", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;

  color: #d9b6ff;

  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.18),
    rgba(236, 72, 153, 0.08)
  );

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(168, 85, 247, 0.35);

  box-shadow:
    0 6px 22px rgba(168, 85, 247, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease,
    color 0.25s ease;
}
.has_nav > button:hover {
  color: #ffffff;

  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.45),
    rgba(236, 72, 153, 0.28)
  );

  box-shadow:
    0 0 14px rgba(236, 72, 153, 0.65),
    0 0 36px rgba(168, 85, 247, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);

  transform: translateY(-1px) scale(1.04);
}
.has_nav > button:active {
  transform: scale(0.97);
  box-shadow:
    0 0 10px rgba(168, 85, 247, 0.45);
}


.btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.btn {
  all: unset;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 14px;

  font-family: "Montserrat", "Arimo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;

  color: #fafafc;

  background: linear-gradient(135deg, #2a2e34, #1c1f24);
  border: 1px solid #32363c;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease,
    color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.btn-favs {
  color: #ffae2d;
  background: linear-gradient(
    135deg,
    rgba(255, 174, 45, 0.25),
    rgba(255, 174, 45, 0.08)
  );
  border-color: rgba(255, 174, 45, 0.35);

  box-shadow: 0 8px 26px rgba(255, 174, 45, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-favs:hover {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(255, 174, 45, 0.45),
    rgba(255, 174, 45, 0.18)
  );
  box-shadow: 0 0 14px rgba(255, 174, 45, 0.8), 0 0 36px rgba(255, 174, 45, 0.5);
}

.btn-primary {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    #7b3cff 0%,
    #a855f7 45%,
    #ec4899 100%
  );

  border: 1px solid rgba(168, 85, 247, 0.55);
  border-radius: 14px;

  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;

  box-shadow:
    0 10px 34px rgba(168, 85, 247, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.theme-toggle-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;

  background: linear-gradient(135deg, #22252a, #16181c);
  border: 1px solid #2f3338;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  display: none !important;
  position: relative;
  overflow: hidden;
}

.theme-toggle-btn b {
  position: absolute;
  font-size: 18px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.theme-toggle-btn .day {
  opacity: 1;
}
.category-head{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffae2d;
  margin:10px 0 20px;
  text-align: center;
}
.theme-toggle-btn .night {
  opacity: 0;
  transform: scale(0.6);
}
.category-title{
  color: rgb(255, 255, 255);
  font-style: italic;
}
.theme-toggle-btn:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15),
    0 0 28px rgba(90, 120, 255, 0.35);
}

body.dark .theme-toggle-btn .day {
  opacity: 0;
  transform: scale(0.6);
}

body.dark .theme-toggle-btn .night {
  opacity: 1;
  transform: scale(1);
}
.navbar {
  display: flex;
  gap: 20px;
}
.header_btns {
  display: flex;
  gap:20px;
  justify-content: space-evenly;
  align-items: center;
}
.online_num {
  position: absolute;
  display: grid;
  z-index: 2;
  right: 0.5em;
  top: 0.5em;
  gap: 0.25em;
  justify-items: end;
}
/* .carts_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
} */
.game_box a img {
  display: block;
  width: 100%;
}
.game_box {
  box-sizing: border-box;
  gap: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #1b1e23, #14161a);
  border: 1px solid #2a2e34;
  border-radius: 18px;
  padding: 14px;

  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.game_box:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.8), 0 0 36px rgba(255, 174, 45, 0.18);
}

.game-thumbnail {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.game-thumbnail img {
  width: 100%;
  height: 100%;
  max-width: 1000px;
  max-height: 1000px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.game-thumbnail a{
  display: block;
  width: 100%;
  height: 100%;
   /* aspect-ratio: 1 / 0.8; */
  overflow: hidden;
  margin: 0 0 5px;
}
.game_box:hover .game-thumbnail img {
  transform: scale(1.07);
  filter: brightness(1.06) contrast(1.06);
}

.updated {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #121212;
  background: linear-gradient(135deg, #ffae2d, #ffd27a);
  border-radius: 999px;
  z-index: 2;
}

.online_num {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  height: max-content;
}
.online_num .tag {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 14px rgba(255, 0, 60, 0.6);
}

.game-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-title .h2 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #ffae2d;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.game-title:hover .h2 {
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 174, 45, 0.6);
}

.game-desc {
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: #d2d6dc;

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  border: 1px solid #2a2e34;
  border-radius: 14px;
  padding: 14px;
}
.game-desc.collapsed {
  max-height: 110px;
  overflow: hidden;
}
.desc-toggle {
  all: unset;
  cursor: pointer;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #ffae2d;
}
.desc-toggle:hover {
  color: #fff;
}

.game-tags,
.game-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  font-size: 13px;
}
.game-categories{
  display: none !important; 
}
.tag h2,
.category h2 {
  font-size: 10px;
  font-weight: 800; 
  border-radius: 999px;
  color: #fafafc;
    white-space: pre;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);

  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.tag:hover h2 {
  background: rgba(255, 174, 45, 0.25);
  box-shadow: 0 0 16px rgba(255, 174, 45, 0.55);
  transform: translateY(-1px);
}
.category h2 {
  background: rgba(58, 123, 255, 0.22);
}
.category:hover h2 {
  background: rgba(58, 123, 255, 0.38);
  box-shadow: 0 0 16px rgba(58, 123, 255, 0.5);
}

.game-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  font-size: 13px;
  color: #b9bec6;
}
.game-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
}
.star-rating {
  color: #ffae2d;
  letter-spacing: 2px;
}
/* .light-theme header {
  background: #e6e6e6;
} */
.light-theme .breadcrumbs_items h1, .light-theme .breadcrumbs_items  span{
  color: #000;
}
.light-theme .category-title{
  color: #121417;
}
.light-theme .breadcrumbs_items a , .light-theme .breadcrumbs_items  a{
  color: #824a02;
}
.light-theme .category-count{
  color: #d53107;
}
.light-theme .has_nav > button,
.light-theme .btn-favs {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(255, 174, 45, 0.883),
    rgb(138, 86, 2)
  );
  border-color: rgba(255, 174, 45, 0.665);
  box-shadow: 0 8px 26px rgba(255, 174, 45, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.light-theme .dropdown-content {
  background: #f7f9fc;
}
.light-theme .dropdown-content a {
  color: #212121;
}
.live_games_section .game-desc{
  overflow-y: auto;
  max-height: 300px;
}
.game-controls{
  display: none !important;
}
.game-meta-block>br{
  display: none;
}
.live_games_section h1 {
  font-size: 36px;
  text-align: center;
  margin: 0 0 30px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff2d75;  
  text-shadow:
    0 0 6px #ff2d75,
    0 0 12px rgba(255, 45, 115, 0.7),
    0 0 24px rgba(255, 60, 150, 0.5),
    0 0 48px rgba(255, 174, 45, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.6);  
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}
 
.live_games_section h1:hover {
  color: #ff6bb5;
  text-shadow:
    0 0 10px #ff6bb5,
    0 0 20px rgba(255, 45, 115, 0.8),
    0 0 40px rgba(255, 60, 150, 0.6),
    0 0 60px rgba(255, 174, 45, 0.35),
    0 6px 14px rgba(0, 0, 0, 0.7);
  transform: scale(1.05);
}
 
@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 6px #ff2d75,
      0 0 12px rgba(255, 45, 115, 0.7),
      0 0 24px rgba(255, 60, 150, 0.5),
      0 0 48px rgba(255, 174, 45, 0.25);
  }
  50% {
    text-shadow:
      0 0 12px #ff2d75,
      0 0 24px rgba(255, 45, 115, 0.8),
      0 0 48px rgba(255, 60, 150, 0.6),
      0 0 72px rgba(255, 174, 45, 0.35);
  }
}

.live_games_section h1 {
  animation: neonPulse 2s infinite alternate;
}

.game-controls {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  justify-content: space-evenly;
}
.game-controls .btn {
  min-width: 80px;
}
.top-players .tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid #2f3338;
  color: #e6e6e6;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    color 0.25s ease;
}
.carts_container .collapsed {
  max-height: 100px;
  overflow-y: scroll;
}
.game-tags,
.game-categories {
  display: flex;
  gap: 8px; 
  /* overflow: hidden; */
  font-size: 13px;
  cursor: grab;
  padding-bottom:6px;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(255,255,255,0.4) transparent;
}
.more{
  display: none;
}
.game-tags:active,
.game-categories:active {
  cursor: grabbing;
}

/* Chrome / Edge / Safari */
.game-tags::-webkit-scrollbar,
.game-categories::-webkit-scrollbar {
  height: 1px;
}

.game-tags::-webkit-scrollbar-track,
.game-categories::-webkit-scrollbar-track {
  background: transparent;
}

.game-tags::-webkit-scrollbar-thumb,
.game-categories::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.4);
  border-radius: 1px;
}

.game-desc {
  margin-bottom: 20px;
}
.live_games_section .top-players,
.live_games_section .game-categories,
.live_games_section .game-tags,
.live_games_section .game-desc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  padding: 16px;
  background: linear-gradient(180deg, #1b1e23, #14161a);
  border: 1px solid #2a2e34;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.top-players .label:first-child {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffae2d;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 174, 45, 0.15);
  border: 1px solid rgba(255, 174, 45, 0.35);
  box-shadow: 0 0 16px rgba(255, 174, 45, 0.45);
}
.card-content h2{
  color: #ff9ad5;
      text-shadow: 0 0 12px rgba(236, 72, 153, 0.8), 0 0 30px rgba(168, 85, 247, 0.5);
   font-size: 18px;  
}
.card-content h2:after{
  content: ':';

}
.card p{
  font-style: italic;
    display: inline-block;
}
.card{
  margin:  0 0 20px;
}
 
.faq {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: linear-gradient(180deg, rgba(20,20,25,0.8), rgba(25,25,30,0.85));
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 70px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
 
.faq-title {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: #ff3e9e;
  text-shadow: 0 0 8px rgba(255, 62, 158, 0.6), 0 0 16px rgba(255, 62, 158, 0.4);
  margin-bottom: 30px;
}
 
.faq-item {
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,62,158,0.04));
  box-shadow: 0 6px 20px rgba(255,62,158,0.15), inset 0 0 0 1px rgba(255,255,255,0.03);
  transition: all 0.35s ease;
} 
.live_games_section>div{
  display: flex;
  flex-direction: column;
}
.faq-question {
  all: unset;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ff3e9e;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, rgba(255,62,158,0.08), rgba(255,62,158,0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  transition: background 0.35s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.35s ease;
}

.faq-question:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(255,62,158,0.25), rgba(255,62,158,0.1));
  box-shadow: 0 0 12px rgba(255,62,158,0.6), 0 0 28px rgba(255,62,158,0.3);
  transform: translateY(-1px);
}

/* FAQ Icon */
.faq-icon {
  transition: transform 0.35s ease, stroke 0.25s ease;
  stroke: #ff3e9e;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  stroke: #fff;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.45s ease, padding 0.35s ease;
  font-family: "Arimo", "Helvetica Neue", sans-serif;
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 1000px;  
  padding: 16px 24px 20px 24px;
}
 
.faq-answer::-webkit-scrollbar {
  width: 6px;
}
.faq-answer::-webkit-scrollbar-track {
  background: rgba(20, 20, 25, 0.1);
  border-radius: 6px;
}
.faq-answer::-webkit-scrollbar-thumb {
  background: rgba(255, 62, 158, 0.5);
  border-radius: 6px;
}
.faq-answer::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 62, 158, 0.8);
}


.game_box {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(18, 12, 32, 0.95),
    rgba(32, 10, 52, 0.95)
  );
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.game_box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(236, 72, 153, 0.25);
}

/* Thumbnail */

.game-thumbnail {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.game-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.6s ease;
}

.game_box:hover .game-thumbnail img {
  transform: scale(1.06);
}

/* Update badge */

.updated {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(236, 72, 153, 0.8);
  z-index: 2;
}

/* Online */

.online_num {
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.online_num .tag {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 0 10px rgba(255, 45, 117, 0.7);
}

/* Meta */

.game-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Title */

.game-title .h2 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0 12px rgba(236, 72, 153, 0.8),
    0 0 30px rgba(168, 85, 247, 0.5);
}

/* Description */

.game-desc {
  position: relative;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.carts_container{
  display: flex;flex-direction: column;
  gap: 20px;
}
.game-desc.collapsed {
  max-height: 110px;
  overflow: hidden;
}
.live_games_section iframe{
  margin-bottom: 20px;
}
.live_games_section>div>div>.game-categories{
  display: flex !important;
  margin-bottom: 20px;
}
/* 
.game-desc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
} */

/* Tags & Categories */

.game-tags,
.game-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tag,
.category {
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.25),
    rgba(168, 85, 247, 0.25)
  );
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.35);
  transition: all 0.25s ease;
}

.tag:hover,
.category:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 16px rgba(236, 72, 153, 0.9),
    0 0 30px rgba(168, 85, 247, 0.6);
}

/* Details more */

details.more summary {
  cursor: pointer;
  font-weight: 800;
  color: #ff9ad5;
}

/* Stats */

.game-stats {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.star-rating {
  color: #ffd166;
  text-shadow: 0 0 10px rgba(255, 209, 102, 0.8);
}

/* Mobile */
 
.faq-question span {
  flex: 1;
}

.faq-question:hover {
  color: #ffae2d;
}
 
.faq-icon {
  transition: transform 0.35s ease, color 0.25s ease;
  color: #ffae2d;
}
.carts_container .collapsed { 

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

/* WebKit (Chrome, Edge, Safari) */
.carts_container .collapsed::-webkit-scrollbar, .section_information > div::-webkit-scrollbar {
  width: 3px;
}

.carts_container .collapsed::-webkit-scrollbar-track,  .section_information > div::-webkit-scrollbar-track {
  background: transparent;
}

.carts_container .collapsed::-webkit-scrollbar-thumb,  .section_information > div::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.carts_container .collapsed::-webkit-scrollbar-thumb:hover,  .section_information > div::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #ffffff;
}
 
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 1200px;
  padding: 18px 22px 22px;
}
 .main_content{
  display: flex;
  flex-direction: column;
 }
 
.section_information{
  order: 1;
}
 
.footer {
  background: linear-gradient(180deg, #111117, #1a1a22);
  color: #ccc;
  padding: 50px 20px 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.03);
  font-family: "Arimo", "Helvetica Neue", sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-section h3 {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ff3e9e;
  margin-bottom: 16px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(255,62,158,0.5), 0 0 12px rgba(255,62,158,0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-links li a:hover {
  color: #ff3e9e;
  text-shadow: 0 0 6px rgba(255,62,158,0.6), 0 0 12px rgba(255,62,158,0.3);
  transform: translateX(2px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:first-child {
  font-weight: 500;
  color: #ff3e9e;
  text-shadow: 0 0 6px rgba(255,62,158,0.5), 0 0 12px rgba(255,62,158,0.3);
}

.footer-bottom p:last-child {
  font-size: 12px;
  color: #aaa;
}
 
.footer-links li a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #ff3e9e;
  transition: width 0.3s ease;
}
.updated{
  display: none;
}
.footer-links li a:hover::after {
  width: 100%;
}
   
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
.online_num .tag{
  font-size: 10px;
  
}
.online_num{
  top: 0;
  right: 0;
}
  .footer-section {
    min-width: 100%;
  }
}

.section_information > div {
  max-height: 400px;
  width: calc(100% - 40px);
  margin: 40px auto;
  padding: 30px;
  box-sizing: border-box;

  /* Glassy background */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 0, 128, 0.06)
  );
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* Shadow for depth */
  box-shadow: 
    0 20px 70px rgba(0, 0, 0, 0.7), 
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);

  /* Scroll */
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 128, 0.5) rgba(20, 20, 25, 0.2);
  transition: all 0.35s ease;
}

/* Webkit scroll */
.section_information > div::-webkit-scrollbar {
  width: 6px;
}

.section_information > div::-webkit-scrollbar-track {
  background: rgba(20, 20, 25, 0.2);
  border-radius: 6px;
}

.section_information > div::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 128, 0.45);
  border-radius: 6px;
  transition: background 0.25s ease;
}

.section_information > div::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 0, 128, 0.7);
}


.document_section h1{
      font-size: 28px;
      font-weight: 800;
    text-align: center;
    margin: 20px 0 20px;
}
.text_neutral li, .list_check li{
  font-style: italic;
}
.document_section  p{
  margin: 0 0 20px;
  display: block;
}
.document_section h2 {
  display: block;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ff2d75; 
  margin: 30px 0 20px;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 
    0 0 6px rgba(255, 45, 115, 0.6),
    0 0 12px rgba(255, 174, 45, 0.4),
    0 0 24px rgba(255, 45, 115, 0.2);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.document_section h2:hover {
  color: #ffae2d;
  text-shadow: 
    0 0 8px #ff2d75,
    0 0 20px #ffae2d,
    0 0 36px #ff2d75;
}

.document_section h3{
   display: block;
    font-size: 22px;
     color: #ff2d75; 
    margin: 0 0 16px;
}
.light-theme .document_section h3, .light-theme .document_section h2{
  color: #824a02;
}
.text_neutral li{
  list-style: disc;
  margin: 0 0 10px 30px;
}
.list_check, .text_neutral{
  margin: 0 0 20px;
}
.list_check li{
    margin: 0 0 10px 20px;
    position: relative; 
}
.list_check li::before{
  content: "✓" ;
  display: inline-block;
  margin-right: 10px;
}
.document_section .card-content{
  background: linear-gradient(180deg, #1b1e23, #14161a);
    border: 1px solid #2a2e34;
    border-radius: 22px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.game-date{
  display: none;
}
 .image_document_group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.group_item {
  background: linear-gradient(145deg, #1b1d22, #141518);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px 40px 20px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.group_item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 40px rgba(255, 45, 115, 0.5),
              0 12px 28px rgba(0, 0, 0, 0.7);
  background: linear-gradient(145deg, #1e1e28, #18181f);
}

.group_item_img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 45, 115, 0.2), rgba(255, 174, 45, 0.2));
  transition: background 0.3s ease, transform 0.3s ease;
}

.group_item_img svg {
  width: 35px;
  height: 35px;
  color: #ff2d75; /* основной яркий цвет иконки */
  transition: color 0.3s ease, transform 0.3s ease;
}

.group_item:hover .group_item_img {
  background: linear-gradient(135deg, rgba(255, 45, 115, 0.4), rgba(255, 174, 45, 0.3));
  transform: scale(1.15);
}

.group_item:hover .group_item_img svg {
  color: #ffae2d;
  transform: rotate(10deg);
}

.group_item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffca2d;
  margin-bottom: 12px;
  text-shadow: 0 0 6px rgba(255, 174, 45, 0.5), 0 0 12px rgba(255, 45, 115, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.group_item:hover h3 {
  color: #ff2d75;
  text-shadow: 0 0 10px #ff2d75, 0 0 20px #ffae2d;
}

.group_item p {
  font-family: "Arimo", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #cfd1d5;
  transition: color 0.3s ease;
}

.group_item:hover p {
  color: #ffffff;
}

.document_section_footer{
  background: linear-gradient(180deg, #1b1e23, #14161a);
 
    text-align: center;
    padding: 20px; 
    margin:0 auto 50px;
}
.group_item{
    background: linear-gradient(180deg, #1b1e23, #14161a);
    border: 1px solid #2a2e34;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    max-width: 320px;
    margin: 0 auto;
    padding: 1.5rem;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 25px;
  }
.section_information>div{
  padding: 10px ;
   width: calc(100% - 20px);
}
  .footer-content {
    gap: 28px;
  }

  .footer-section h3 {
    font-size: 13px;
  }

  .footer-links li {
    font-size: 13px;
  }
}

@media screen and (max-width: 1199px) {
  .skyscraper-banner {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .carts_container {
    grid-template-columns: 1fr 1fr;
  }
  .breadcrumbs_items {
    flex-wrap: wrap;
  }
  .group_item{
    padding: 15px;
  }
  .image_document_group{
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .carts_container {
    grid-template-columns: 1fr;
  }
  .game-tags,
.game-categories {
  overflow-y: auto;
}
  .header_btns {
    margin-top: 20px; 
    gap: 10px; 
  }
  header>.container{
    display: flex;
    flex-direction: column;
  }
  .has_nav > button, .btn-primary{
    font-size: 12px;
  }
  .game-controls {
    flex-wrap: wrap;
  }
  .game-controls .btn {
    min-width: 30px;
    box-sizing: border-box;
  }
  .container {
    padding: 0 10px;
  }
  .breadcrumbs_items span {
    font-size: 13px;
  }
  .logo {
    font-size: 26px;
  }
  .live_games_section h1 {
    font-size: 22px;
  }
  .top-players .tag {
    font-size: 11px;
    padding: 4px 6px;
  }
  .faq {
    padding: 20px;
  }

  .faq-title {
    font-size: 20px;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .faq-answer p {
    font-size: 13px;
    padding: 5px 8px;
  }
  .faq-item.active .faq-answer{
    padding: 10px;
  }
  .category-head{
    font-size: 16px;
    text-align: center;
  }
  .game-thumbnail a{
    aspect-ratio: 1 / 0.6;
  }
  .game_box{
    display: flex;
    flex-direction: column;
  }
  .game-title .h2{
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .image_document_group{
    display: flex;
    flex-direction: column;
  }
  .breadcrumbs_items .has_nav h1{
    font-size: 16px;
  }
  .footer-section{
    flex: 1;
  }
}
