body {
  background-color: #f5f5f5;
}
.screenshot-img {
  transition: transform 0.3s ease;
}
.screenshot-img:hover {
  transform: scale(1.05);
}
.tab-btn.active {
  border-bottom: 2px solid #3b82f6;
  color: #3b82f6;
}
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.active {
  max-height: 500px;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.game-card:hover {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}
.filter-btn.active {
    background-color: #3b82f6;
    color: white;
}
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-menu.active {
    max-height: 500px;
}
.filter-sidebar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.filter-sidebar.active {
    max-height: 800px;
}

.game-card:hover {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}
.tag-item:hover {
    background-color: #3b82f6;
    color: white;
}
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-menu.active {
    max-height: 500px;
}

.dropdown-menu {
    display: none;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown.active .dropdown-menu {
    display: block;
}
@media (max-width: 640px) {
    .dropdown:hover .dropdown-menu {
        display: none;
    }
}

#tab0 h2 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: bold;
}
#tab0 h3 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: bold;
}