#rbq-quiz-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2d3436;
    text-align: center;
}

#rbq-question-text {
    color: #2d3436;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

.rbq-option-btn {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    color: #2d3436;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rbq-option-btn:hover {
    border-color: #ff4d6d;
    color: #ff4d6d;
    background: #fff5f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.15);
}

#rbq-progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    margin-top: 20px;
}

#rbq-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff4d6d, #ff8a9b);
    transition: width 0.3s;
    border-radius: 10px;
}

/* Results Section */
.rbq-beast-icon {
    font-size: 80px;
    margin: 20px 0;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

#rbq-results h2 {
    color: #2d3436;
    font-size: 28px;
    margin: 20px 0;
}

.rbq-main-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #636e72;
    margin: 20px 0;
    padding: 0 20px;
}

.rbq-rating-box {
    background: linear-gradient(135deg, #ff4d6d, #ff8a9b);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin: 25px 0;
    box-shadow: 0 6px 20px rgba(255, 77, 109, 0.3);
}

.rbq-rating-box h3 {
    margin: 0;
    font-size: 24px;
}

.rbq-detail-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 15px 0;
    text-align: left;
    border-left: 4px solid #ff4d6d;
}

.rbq-detail-section h3 {
    color: #2d3436;
    font-size: 18px;
    margin: 0 0 10px 0;
}

.rbq-detail-section p {
    color: #636e72;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.rbq-reset-btn {
    margin-top: 30px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.rbq-reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
    background: linear-gradient(135deg, #5f4dd1, #8f87e8);
}

/* Responsive Design */
@media (max-width: 600px) {
    #rbq-quiz-container {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .rbq-beast-icon {
        font-size: 60px;
    }
    
    #rbq-results h2 {
        font-size: 24px;
    }
    
    .rbq-detail-section {
        padding: 15px;
    }
}