.brascast-player-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.brascast-player-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #0c213f;
    /* Deep blue background */
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video element covers the container */
.brascast-player-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    border-radius: 32px;
}

/* Controls overlay at bottom right */
.brascast-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 12px;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

/* Clean transparent buttons */
.brascast-btn {
    pointer-events: auto;
    background-color: rgba(12, 33, 63, 0.7);
    /* Deep blue semi-transparent */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brascast-btn:hover {
    background-color: rgba(20, 70, 155, 0.9);
    /* Lighter blue on hover */
    transform: scale(1.05);
}

.brascast-btn svg {
    width: 24px;
    height: 24px;
}

/* Fullscreen adjustments to remove rounding if in true fullscreen */
:fullscreen .brascast-player-container {
    border-radius: 0;
    max-width: 100%;
}

:-webkit-full-screen .brascast-player-container {
    border-radius: 0;
    max-width: 100%;
}

:-ms-fullscreen .brascast-player-container {
    border-radius: 0;
    max-width: 100%;
}