.video-choice-wrapper {
    background-color: rgba(var(--bg-secondary-rgb, 28, 28, 43), 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(var(--accent-primary-rgb, 255, 215, 0), 0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 900px; /* Adjust as needed */
    margin: 2rem auto;
    color: var(--text-primary);
    text-align: center;
}

.video-choice-header {
    margin-bottom: 2rem;
}

.video-choice-header h1 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-primary);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.video-choice-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.video-choices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.choice-button {
    display: inline-block;
    background-color: rgb(153, 51, 76); /* color_pink_red: vec3(0.6, 0.2, 0.3) -> rgb(153, 51, 76) */
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    width: 80%;
    max-width: 500px;
}

.choice-button:hover {
    background-color: rgb(38, 25, 64); /* color_purple_shadow: vec3(0.15, 0.1, 0.25) -> rgb(38, 25, 64) */
    transform: translateY(-3px);
} 