/* Vanilla HTML fixes — link resets, game-card images, tooltips */

/* Header nav links */
.header_item_nav a,
.header_item_nav a:visited {
  text-decoration: none;
  color: inherit;
}

/* Sidebar & footer nav links */
.sidebar_main_block_item a,
.footer_rect_item_nav a,
.footer_rect_item_nav_button {
  text-decoration: none;
  color: inherit;
}

.sidebar_main_block_item a:visited,
.footer_rect_item_nav a:visited {
  color: inherit;
}

.sidebar_main_block_item_text {
  color: #fff;
}

.sidebar_main_block_item_active .sidebar_main_block_item_text {
  color: #e8ff00;
}

/* Disabled sidebar blocks — keep titles readable */
.sidebar_main_block_disabled .sidebar_main_block_main_tittle {
  color: #fff;
  opacity: 1;
}

/* Game card images without Next.js Image fill */
.game-card_image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Coming soon tooltip (matches ComingSoonTooltip.css class names) */
.coming_soon_tooltip {
  position: fixed;
  z-index: 10000;
  pointer-events: none;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #0d0d0d;
  border: 1px solid #191919;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.coming_soon_tooltip.is-visible {
  display: inline-flex;
}
