/* =========================================
   1. GLOBAL BASE PARAMETERS (Structure & Typography)
   ========================================= */

/* Box Sizing Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Base Body (Structure Only) */
body {
    font-family: 'Quicksand', 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Link Reset */
a {
    text-decoration: none;
    color: inherit;
}/* =========================================
   HOST COCKPIT OPTION STYLES (SHARED)
   ========================================= */
.aq-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    /* Center it */
}

/* Mobile: Stack options */
@media (max-width: 600px) {
    .aq-options-grid {
        grid-template-columns: 1fr;
    }
}

.aq-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    /* Add pointer for player */
    transition: transform 0.2s, background 0.2s;
    width: 100%;
    /* Ensure full width in grid cell */
    position: relative;
    overflow: hidden;
}

.aq-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.aq-option:active {
    transform: scale(0.98);
}

/* Selected State */
.aq-option.selected {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--primary-pink);
    box-shadow: 0 0 15px rgba(255, 49, 159, 0.4);
}

.aq-option:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.aq-option-icon {
    width: 32px;
    /* Slightly larger for touch */
    height: 32px;
    border-radius: 6px;
    /* Slightly more rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    /* Prevent shrinking */
}

/* Colors matching Host */
.aq-option.opt-0 .aq-option-icon {
    background: #e91e63;
}

.aq-option.opt-1 .aq-option-icon {
    background: #2196f3;
}

.aq-option.opt-2 .aq-option-icon {
    background: #fbc02d;
}

.aq-option.opt-3 .aq-option-icon {
    background: #4caf50;
}

.aq-option span {
    font-size: 1.1rem;
    line-height: 1.3;
}
