.wpss-container {
    margin-top: 30px;
    background: transparent;
    text-align: center;
    border-radius: 10px;
}

.wpss-container h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5em;
}

.wpss-screenshot {
    margin-bottom: 15px;
}

.wpss-screenshot img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    cursor: pointer; /* indicates clickable */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wpss-screenshot img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Fullscreen overlay */
.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fullscreen-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}