 .game-tabs {
  margin-top: 40px;
}

.game-covers {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.game-cover {
  width: 260px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 40px;
}

.game-cover img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.game-cover span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.game-cover:hover {
  transform: translateY(-8px);
}

.game-cover.active img {
  box-shadow: 0 0 0 4px #167ac6;
}

.game-content {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.game-content iframe{
    
  margin-top: 40px;
}
.game-panel {
  scroll-margin-top: 140px;
}
.game-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.game-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.text-mask {
    color: #000;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
}
.blur-text {
    filter: blur(8px);
    transition: filter 0.3s ease;
    cursor: pointer;
}
 
 
 
 
    
.player-progress {
    width: 100%;
    margin: 12px 0 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #2a2a2a;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #2ea18c, #2bdd72);
    border-radius: 6px;
    transition: width 0.8s ease;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 12px;
}

.progress-labels span {
    color: #aaa;
    white-space: nowrap;
}

.progress-labels .done {
    color: #22c55e;
    font-weight: 600;
}

.progress-labels .next {
    color: #fbbf24;
    font-weight: 600;
}

.progress-text {
    margin-top: 4px;
    font-size: 13px;
    color: #333;
}
.progress-labels .hidden{
        color: white;
}






.wishlists-progress {
    width: 100%;
    margin: 12px 0 20px;
}

.wishlists-bar {
    width: 100%;
    height: 8px;
    background: #2a2a2a;
    border-radius: 6px;
    overflow: hidden;
}

.wishlists-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #227ac5, #9e4ade);
    border-radius: 6px;
    transition: width 0.8s ease;
}

.wishlists-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 12px;
}

.wishlists-labels span {
    color: #aaa;
    white-space: nowrap;
}

.wishlists-labels .done {
    color: #7959d7;
    font-weight: 600;
}

.wishlists-labels .next {
    color: #fbbf24;
    font-weight: 600;
}

.wishlists-text {
    margin-top: 4px;
    font-size: 13px;
    color: #333;
}
.wishlists-labels .hidden{
        color: white;
}

.game-panel h3 {
    margin-bottom: 36px;
}

.game-panel #info{
    font-size: 10px;
    color: #ababab;
}

 .game-panel #des{
    margin-top: 36px;
}


.wishlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #1b2838;
    color: #c7d5e0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wishlist-btn:hover {
    background: #2a475e;
    color: #fff;
}