/* Global Premium UI */
#sqp-app {
    max-width: 800px;
    margin: auto;
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2d2f36, #1f2125);
    color: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 0.6s ease-in-out;
}

/* Title */
#sqp-app h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* TIMER BADGE */
#sqp-timer {
    background: #ff4757;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    float: right;
    box-shadow: 0 4px 10px rgba(255,71,87,0.55);
    animation: pulse 1.5s infinite;
}

/* Question Card */
#sqp-question-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.35);
    animation: slideIn 0.5s ease;
}

/* Question Text */
#sqp-question-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Options – Glass Buttons */
#sqp-question-box div {
    margin: 12px 0;
    padding: 15px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

#sqp-question-box div:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Radio hide */
#sqp-question-box input[type='radio'] {
    transform: scale(1.5);
    margin-right: 8px;
}

/* NAVIGATION BUTTONS */
#prevQ, #nextQ, #submitQ {
    background: #1e90ff;
    padding: 14px 22px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
    margin-right: 8px;
    box-shadow: 0 4px 15px rgba(30,144,255,0.4);
    transition: 0.25s ease;
}

#prevQ:hover, #nextQ:hover, #submitQ:hover {
    background: #0abde3;
    transform: translateY(-3px);
}

/* Submit Button Special */
#submitQ {
    background: #2ecc71;
    box-shadow: 0 4px 15px rgba(46,204,113,0.4);
}
#submitQ:hover {
    background: #1dd1a1;
}

/* RESULT BOX */
#sqp-result {
    background: #fff;
    color: #000;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    animation: fadeIn 0.7s ease;
}

/* Progress Bar */
#sqp-progress {
    width: 100%;
    background: rgba(255,255,255,0.15);
    height: 10px;
    border-radius: 20px;
    margin-bottom: 15px;
}
#sqp-progress-bar {
    height: 10px;
    width: 0%;
    background: #1e90ff;
    border-radius: 20px;
    transition: width 0.4s ease;
}

/* Animations */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(15px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes slideIn {
    from {opacity: 0; transform: translateX(40px);}
    to {opacity: 1; transform: translateX(0);}
}

@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.08);}
    100% {transform: scale(1);}
}
