/* Server Selector */
.server-selector-container {
    background-color: #2d3748;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

#server-select {
    background-color: #4a5568;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.2rem;
}

#server-select:hover {
    background-color: #718096;
}

/* Video Selector Buttons */
.video-selector-container {
    background-color: #1a202c;
    border-bottom: 2px solid #4a5568;
}

.video-selector {
    background-color: #4a5568;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.video-selector:hover, .video-selector.active-video {
    background-color: #e53e3e;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Video Container */
.video-container {
    background-color: #1a202c;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.content-gate-overlay {
    background-color: rgba(26, 32, 44, 0.95);
    z-index: 20;
}

.continue-button {
    background-color: #e53e3e;
    transition: all 0.3s ease;
    z-index: 30;
}

.continue-button:hover {
    background-color: #c53030;
    transform: scale(1.05);
}

.video-wrapper-aspect {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper-aspect iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}