/*
Theme Name:   Azent Child
Theme URI:    https://themeforest.net/user/modinatheme
Description:  Azent Child Theme for Aqsa Skills Academy - Premium Redesign
Author:       Gemini & Imroz Rahi
Author URI:   https://aqsaskillsacademy.com
Template:     azent
Version:      2.0.0 (Premium Redesign)
*/

/* ==========================================================================
   1. Universal Styles & Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto+Mono:wght@400;500&display=swap');

:root {
    --primary-color: #ff3062;
    --secondary-color: #fd9460;
    --accent-color: #6c63ff;
    --dark-bg: #1a0f35;
    --light-bg: #f8f9fa;
    --text-dark: #2d3748;
    --text-light: #718096;
    --success-color: #48bb78;
    --warning-color: #ed8936;
}

* {
    box-sizing: border-box;
}

/* ==========================================================================
   2. Premium Registration & Login Forms
   ========================================================================== */
.aqsa-form-container {
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    max-width: 500px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.aqsa-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.aqsa-form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aqsa-form-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
}

.aqsa-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aqsa-form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-weight: 500;
}

.aqsa-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    color: #000; /* ✅ Typing text hamesha black */
    box-shadow: 0 5px 15px rgba(255, 48, 98, 0.1);
    transform: translateY(-2px);
}

.aqsa-password-wrapper {
    position: relative;
}

.aqsa-password-wrapper .toggle-password {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-light);
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.aqsa-password-wrapper .toggle-password:hover {
    color: var(--primary-color);
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.aqsa-form-button {
    display: inline-block;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(255, 48, 98, 0.3);
    position: relative;
    overflow: hidden;
}

.aqsa-form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.aqsa-form-button:hover::before {
    left: 100%;
}

.aqsa-form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 48, 98, 0.4);
}

.aqsa-form-footer {
    margin-top: 25px;
    font-size: 15px;
    color: var(--text-light);
}

.aqsa-form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.aqsa-form-footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.aqsa-success-message {
    text-align: center;
    padding: 40px;
}

.aqsa-success-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.aqsa-form-errors {
    background: linear-gradient(135deg, #fed7d7, #feb2b2);
    color: #c53030;
    border: 2px solid #fc8181;
    padding: 20px;
    border-radius: 12px;
    margin: 0 auto 25px auto;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.aqsa-form-errors p {
    margin: 0;
    font-weight: 500;
}

.aqsa-login-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 25px;
}

.aqsa-login-meta label {
    font-weight: normal;
    color: var(--text-light);
}

/* ==========================================================================
   3. Premium Daily Quiz CSS - Gaming Experience
   ========================================================================== */
.aqsa-quiz-container {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d1b69 100%);
    color: white;
    padding: 30px;
    border-radius: 25px;
    max-width: 900px;
    margin: 50px auto;
    box-sizing: border-box;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.aqsa-quiz-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 48, 98, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(253, 148, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.aqsa-quiz-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.aqsa-welcome-subtitle {
    font-size: 18px;
    letter-spacing: 3px;
    opacity: 0.8;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 10px;
}

.aqsa-welcome-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin: 15px 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fd9460, #ff3062, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.aqsa-rules-title {
    font-size: 42px;
    text-transform: uppercase;
    margin-top: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aqsa-highlight-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aqsa-welcome-highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 15px 40px;
    font-size: 28px;
    font-weight: 800;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 10px 30px rgba(253, 148, 96, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.aqsa-quiz-button {
    display: inline-block;
    min-width: 250px;
    padding: 18px 30px;
    border-radius: 50px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 30px rgba(255, 48, 98, 0.3);
    position: relative;
    overflow: hidden;
}

.aqsa-quiz-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.aqsa-quiz-button:hover::before {
    left: 100%;
}

.aqsa-quiz-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 48, 98, 0.5);
}

#aqsa-play-btn {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    border: 3px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(253, 148, 96, 0.4);
}

.aqsa-quiz-rules ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.aqsa-quiz-rules li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.aqsa-quiz-rules li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 0;
}

.aqsa-quiz-header {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.aqsa-question-counter {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

#aqsa-timer-container {
    position: relative;
    margin: 30px auto;
}

#aqsa-timer {
    width: 120px;
    height: 120px;
    border: 6px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 48, 98, 0.3);
    animation: pulse 1s infinite;
}

.aqsa-timer-label {
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

#aqsa-question-title {
    font-family: 'Roboto Mono', monospace;
    font-size: 32px;
    font-weight: 600;
    margin: 40px 0;
    min-height: 120px;
    letter-spacing: 1px;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aqsa-answer-options {
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.aqsa-answer-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    flex: 1;
    max-width: 280px;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 48, 98, 0.3);
    transition: all 0.3s ease;
}

.aqsa-answer-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 48, 98, 0.5);
}

#aqsa-result-screen h2 {
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aqsa-final-score {
    font-size: 32px;
    margin: 30px 0;
    line-height: 1.3;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.aqsa-final-score strong {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 36px;
}

#aqsa-review-container {
    text-align: left;
    margin-top: 40px;
    width: 100%;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: none;
}

.aqsa-review-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.aqsa-review-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.aqsa-review-item.correct {
    border-left: 6px solid var(--success-color);
}

.aqsa-review-item.incorrect {
    border-left: 6px solid #e53e3e;
}

.aqsa-review-item p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.5;
}

#aqsa-quiz-main.show-welcome #aqsa-welcome-screen,
#aqsa-quiz-main.show-rules #aqsa-rules-screen,
#aqsa-quiz-main.show-quiz #aqsa-quiz-area,
#aqsa-quiz-main.show-results #aqsa-result-screen {
    display: flex;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

#aqsa-quiz-main #aqsa-welcome-screen,
#aqsa-quiz-main #aqsa-rules-screen,
#aqsa-quiz-main #aqsa-quiz-area,
#aqsa-quiz-main #aqsa-result-screen {
    display: none;
}

/* ==========================================================================
   4. Premium Leaderboard Dashboard CSS
   ========================================================================== */
.leaderboard-wrapper {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(255, 48, 98, 0.15);
    overflow: hidden;
    border: 2px solid rgba(255, 48, 98, 0.1);
    position: relative;
}

.leaderboard-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.leaderboard-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.leaderboard-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-30px, -30px) rotate(360deg); }
}

.leaderboard-header h1 {
    font-size: 48px;
    margin: 0 0 15px 0;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.leaderboard-header p {
    font-size: 20px;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.leaderboard-tabs {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 10px;
    margin: -25px 40px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 3;
    border: 2px solid rgba(255, 48, 98, 0.1);
}

.leaderboard-tab-btn {
    flex: 1;
    padding: 15px 30px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.leaderboard-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.leaderboard-tab-btn:hover::before {
    left: 100%;
}

.leaderboard-tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 48, 98, 0.4);
    transform: translateY(-3px);
}

.user-summary-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 0 40px 40px;
    border: 2px solid rgba(255, 48, 98, 0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.user-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.user-info {
    display: flex;
    align-items: center;
}

#summary-user-icon {
    font-size: 32px;
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    margin-right: 25px;
    box-shadow: 0 8px 20px rgba(255, 48, 98, 0.3);
}

.user-details {
    display: flex;
    flex-direction: column;
}

#summary-user-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

#summary-user-score {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.user-rank-info {
    text-align: right;
}

#summary-user-rank-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    text-shadow: 0 3px 8px rgba(255, 48, 98, 0.2);
}

#summary-user-rank-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.aqsa-logout-link {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.aqsa-logout-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 48, 98, 0.3);
}

.leaderboard-table-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 40px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid rgba(255, 48, 98, 0.1);
}

.leaderboard-table-container table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table-container th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 25px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.leaderboard-table-container th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.leaderboard-table-container td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 48, 98, 0.1);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
}

.leaderboard-table-container tbody tr:hover td {
    background: rgba(255, 48, 98, 0.03);
    transform: translateX(8px);
}

.leaderboard-table-container .highlight-user {
    background: linear-gradient(135deg, rgba(255, 48, 98, 0.05) 0%, rgba(253, 148, 96, 0.05) 100%) !important;
    border-left: 6px solid var(--primary-color);
    font-weight: 700;
}

.leaderboard-table-container .highlight-user td {
    color: var(--primary-color);
    font-weight: 700;
}

.leaderboard-table-container .last-winner-row td {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    color: #b8860b;
    font-weight: 700;
    border-bottom: 3px solid #ffd700;
}

.leaderboard-footer {
    text-align: center;
    margin: 40px;
    padding-top: 40px;
    border-top: 3px solid rgba(255, 48, 98, 0.1);
}

.leaderboard-footer p {
    margin: 0 0 25px;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 500;
}

.practice-now-btn {
    display: inline-block;
    padding: 20px 60px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 40px rgba(255, 48, 98, 0.3);
    position: relative;
    overflow: hidden;
}

.practice-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.practice-now-btn:hover::before {
    left: 100%;
}

.practice-now-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 48, 98, 0.4);
}

.loading-text {
    text-align: center !important;
    color: var(--text-light);
    padding: 80px 0;
    font-size: 20px;
    font-weight: 500;
}

.badge-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.badge-dot:hover {
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.badge-dot.milestone {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffb347 100%);
}

.badge-dot.streak {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
}

.badge-dot.performance {
    background: linear-gradient(135deg, var(--success-color) 0%, #7cfc00 100%);
}

/* ==========================================================================
   5. Mobile Responsive Fixes (Premium)
   ========================================================================== */
@media (max-width: 768px) {
    .content-area, .site-content, .entry-content {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    /* Premium Forms */
    .aqsa-form-container {
        padding: 30px 20px;
        margin: 30px 15px;
        border-radius: 20px;
    }
    .aqsa-form-container h2 { 
        font-size: 28px; 
        margin-bottom: 25px;
    }
    .aqsa-form-group label { 
        font-size: 13px; 
    }
    .aqsa-form-group input { 
        font-size: 16px;
        padding: 14px 18px;
    }

    /* Premium Quiz */
    .aqsa-quiz-container { 
        padding: 20px 15px;
        margin: 30px 15px;
        border-radius: 20px;
    }
    .aqsa-quiz-box { 
        min-height: auto; 
        padding: 30px 20px;
    }
    .aqsa-welcome-title { 
        font-size: 42px; 
        line-height: 1.2;
    }
    .aqsa-welcome-highlight { 
        font-size: 20px; 
        padding: 12px 25px;
        margin: 20px 0;
    }
    .aqsa-quiz-button { 
        min-width: 200px; 
        padding: 16px 25px; 
        font-size: 18px;
    }
    #aqsa-timer {
        width: 100px;
        height: 100px;
        font-size: 36px;
    }
    #aqsa-question-title { 
        font-size: 24px;
        padding: 20px;
        margin: 30px 0;
    }
    .aqsa-answer-options {
        flex-direction: column;
        gap: 15px;
    }
    .aqsa-answer-btn {
        max-width: 100%;
        padding: 18px;
    }
    .aqsa-final-score {
        font-size: 24px;
        padding: 20px;
    }

    /* Premium Leaderboard */
    .leaderboard-wrapper { 
        margin: 30px 15px;
        border-radius: 20px;
    }
    .leaderboard-header { 
        padding: 40px 20px;
    }
    .leaderboard-header h1 { 
        font-size: 36px; 
    }
    .leaderboard-header p {
        font-size: 16px;
    }
    .leaderboard-tabs { 
        margin: -20px 20px 30px;
        padding: 8px;
        flex-direction: column;
    }
    .leaderboard-tab-btn {
        padding: 12px 20px;
        margin: 2px 0;
    }
    .user-summary-card { 
        margin: 0 20px 30px;
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .user-info {
        justify-content: center;
    }
    .user-rank-info { 
        text-align: center;
    }
    #summary-user-rank-number {
        font-size: 36px;
    }
    .leaderboard-table-container { 
        margin: 0 20px 30px;
    }
    .leaderboard-table-container th, 
    .leaderboard-table-container td { 
        padding: 15px 10px; 
        font-size: 13px;
    }
    .leaderboard-footer {
        margin: 30px 20px;
        padding-top: 30px;
    }
    .practice-now-btn {
        padding: 18px 40px;
        font-size: 18px;
    }
}

/* ==========================================================================
   6. Premium Logout Link Style
   ========================================================================== */
.aqsa-logout-link {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.aqsa-logout-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 48, 98, 0.3);
    text-decoration: none;
}