#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.game-content {
    padding-top: 80px;
    padding-bottom: 60px;
}


.game-content p {
    max-width: 1300px;   /* keeps text narrower than the image */
    margin: 2.5rem auto 0 auto; /* adds space above, centers horizontally */
    padding: 0 1rem;    /* side padding so text doesn’t stick to edges */
}


.game-title {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

h2 {
    margin-top: 20px;
    margin-right: 10px;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    margin: 3rem auto 2.5rem auto; /* top | right | bottom | left */
    padding: 0 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
}

img {
    border: 3px solid rgba(255,255,255,0.1);
    box-sizing: content-box;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.game-logo  {
    border: none !important;   /* cancels out the global img style */
    box-sizing: border-box;    /* optional, so it doesn’t inherit */
}
.store-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.wishlist-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f8f8f8;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.store-links {
    display: flex;
    justify-content: center; /* centers Steam logo */
    align-items: center;
}

.store-links a {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.store-links a:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #fff);
}



/* Hover effect for images */
.glightbox img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.glightbox img:hover {
    transform: scale(1.05) rotate(1deg); /* Slight zoom + rotation */
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); /* Glow shadow effect */
}

/* Optional: add a subtle overlay on hover */
.glightbox:hover::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 0.5rem;
    pointer-events: none;
}


.img-fluid {
  max-width: 98%;
  height: auto;
}
