@charset "UTF-8";
/*--------------------------------------------------------*/
/* Parade Bid Info - IVS Player */
/*--------------------------------------------------------*/

/* Player container wrapper */
.parade-player-wrapper {
    width: 390px;
    height: 220px;
    margin: auto;
    position: relative;
}

/* IVS Player */
.ivs-player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#ivs-player-wrapper {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

#ivs-player-wrapper:-webkit-full-screen,
#ivs-player-wrapper:-moz-full-screen,
#ivs-player-wrapper:-ms-fullscreen,
#ivs-player-wrapper:fullscreen {
    width: 100% !important;
    height: 100% !important;
    max-width: 100vw;
    max-height: 100vh;
}

#ivs-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 14px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}

#ivs-placeholder-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

#ivs-video-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
}

/* IVS controls */
#ivs-volume-control {
    position: absolute;
    bottom: 8px;
    left: 8px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
}

#ivs-mute-btn,
#ivs-fullscreen-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
}

#ivs-mute-btn {
    font-size: 16px;
}

#ivs-fullscreen-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 10;
    font-size: 18px;
}

#ivs-fullscreen-btn:hover,
#ivs-mute-btn:hover {
    background: rgba(0, 0, 0, 0.7) !important;
}

#ivs-volume-slider {
    width: 70px;
    height: 6px;
    accent-color: #fff;
    cursor: pointer;
}

#ivs-player-wrapper .ivs-control-hide {
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

#ivs-player-wrapper:hover .ivs-control-hide {
    opacity: 1;
    pointer-events: auto;
}

.watch-links-container {
    width: 100%;
    text-align: center;
}

.watch-links-row {
    font-size: 16px;
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.youtube-watch-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
}

.youtube-watch-wrapper-jpn {
    margin: 10px 12px 10px 0;
}

.youtube-watch-wrapper-eng {
    margin: 8px 10px 8px 0;
}

.youtube-watch-btn {
    display: inline-block;
    background-color: #cc0000;
    color: #ffffff;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.youtube-watch-wrapper-jpn .youtube-watch-btn {
    padding: 8px 16px;
}

.youtube-watch-wrapper-eng .youtube-watch-btn {
    padding: 8px 10px;
}

.youtube-watch-btn:hover {
    background-color: #ee1a1a;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.youtube-watch-note {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: bold;
    color: #cc0000;
    line-height: 1.2;
}
