/* WBC Map Screenshot Styles */
.wbc-mapshot-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f2f2f2;
    border-radius: 12px;
    overflow: hidden;
    transition: width 0.3s, aspect-ratio 0.3s;
}
.wbc-mapshot-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wbc-mapshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.wbc-mapshot-wrap:hover .wbc-mapshot-img {
    box-shadow: 0 4px 16px rgba(66,133,244,0.18);
}
@media (max-width: 900px) {
    .wbc-mapshot-wrap {
        width: 100%;
        aspect-ratio: 1/1;
    }
}
@media (max-width: 600px) {
    .wbc-mapshot-wrap {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 8px;
    }
}
@media (max-width: 400px) {
    .wbc-mapshot-wrap {
        aspect-ratio: 1/1;
    }
}

/* WBC YouTube Facade Styles */
.wbc-youtube-facade .wbc-play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 0, 0, 1) !important;
}
.wbc-youtube-placeholder:hover {
    opacity: 0.9;
}
.wbc-youtube-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}
.wbc-youtube-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

/* WBC Maps Facade Styles */
.wbc-maps-facade .wbc-maps-button:hover {
    transform: scale(1.1);
    background: rgba(66, 133, 244, 1) !important;
}
.wbc-maps-placeholder:hover {
    opacity: 0.9;
}
.wbc-maps-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}
.wbc-maps-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.2);
}
