/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 219, 120, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 10% 10%, rgba(120, 255, 198, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundShift 25s ease-in-out infinite;
}

/* Floating particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatParticles 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Screen Management */
.screen {
    width: 100%;
    max-width: 800px;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.screen.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Welcome Screen */
.welcome-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    animation: slideInUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.welcome-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

.logo {
    margin-bottom: 30px;
}

.logo i {
    font-size: 5rem;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.3));
}

.logo h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease 0.3s both;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    gap: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    min-width: 140px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat::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 ease;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.stat i {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.stat:hover i {
    transform: scale(1.2) rotate(5deg);
}

.stat span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat:hover span {
    color: #667eea;
    transform: scale(1.1);
}

.stat label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    border: 2px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled, .btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Quiz Screen */
.quiz-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.progress-container {
    flex: 1;
}

/* Timer Display */
.timer-display {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    padding: 12px 20px;
    border-radius: 30px;
    border: 2px solid rgba(102, 126, 234, 0.4);
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    margin-left: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.timer-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.timer-display:hover::before {
    left: 100%;
}

.timer-display:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.timer-display i {
    color: #667eea;
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.timer-display:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

#timer-text {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
}

.score-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

.score-display i {
    color: #ffd700;
}

.question-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    animation: slideInUp 0.5s ease;
    position: relative;
    overflow: hidden;
}

.question-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.8s ease;
}

.question-container:hover::before {
    left: 100%;
}

.question-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
}

.question-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: slideInLeft 0.8s ease 0.5s both;
}

.options-container {
    display: grid;
    gap: 15px;
}

.option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.option:hover::before {
    left: 100%;
}

.option:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.option.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.02);
}

.option.correct {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.15);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
    transform: scale(1.03);
    animation: correctPulse 0.6s ease;
}

.option.incorrect {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.15);
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.4);
    transform: scale(1.03);
    animation: incorrectShake 0.6s ease;
}

/* Feedback Message */
.feedback-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feedback-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.feedback-message.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: 2px solid #4CAF50;
}

.feedback-message.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    border: 2px solid #f44336;
}

.feedback-message i {
    font-size: 1.5rem;
}

.option-label {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Results Screen */
.results-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.8s ease;
}

.results-header {
    margin-bottom: 40px;
}

.results-header i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

.results-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.score-card {
    margin-bottom: 40px;
}

.score-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.score-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: rgba(102, 126, 234, 0.2);
    stroke-width: 8;
}

.score-fill {
    fill: none;
    stroke: #667eea;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1s ease;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.score-details {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.score-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-stat span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.score-stat label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Review Screen */
.review-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.review-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 600px;
    overflow-y: auto;
}

.review-item {
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    padding: 20px 0;
    animation: slideInUp 0.3s ease;
}

.review-item:last-child {
    border-bottom: none;
}

.review-question {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.review-options {
    display: grid;
    gap: 10px;
}

.review-option {
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-option.user-answer {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #667eea;
}

.review-option.correct-answer {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
}

.review-option.incorrect-answer {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid #f44336;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-spinner p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Animations */
@keyframes floatParticles {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-100px);
    }
}

@keyframes backgroundShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-20px) translateY(-20px);
    }
    50% {
        transform: translateX(20px) translateY(-10px);
    }
    75% {
        transform: translateX(-10px) translateY(20px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes correctPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.03);
    }
}

@keyframes incorrectShake {
    0%, 100% {
        transform: translateX(0) scale(1.03);
    }
    25% {
        transform: translateX(-5px) scale(1.03);
    }
    75% {
        transform: translateX(5px) scale(1.03);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .welcome-content {
        padding: 40px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat {
        min-width: auto;
    }
    
    .quiz-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .timer-display {
        margin-left: 0;
        margin-top: 10px;
        padding: 10px 15px;
    }
    
    #timer-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .question-container {
        padding: 30px 20px;
    }
    
    .question-card h2 {
        font-size: 1.1rem;
    }
    
    .quiz-footer {
        flex-direction: column;
    }
    
    .results-content {
        padding: 40px 20px;
    }
    
    .score-circle {
        width: 150px;
        height: 150px;
    }
    
    .score-text {
        font-size: 2rem;
    }
    
    .score-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .review-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .review-header h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .welcome-content {
        padding: 30px 15px;
    }
    
    .question-container {
        padding: 20px 15px;
    }
    
    .option {
        padding: 15px;
    }
    
    .option-label {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
} 

/* Motivational Elements */
.motivational-quote {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease 0.5s both;
}

.motivational-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.motivational-quote:hover::before {
    left: 100%;
}

.motivational-quote i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 15px;
    display: block;
    animation: pulse 2s infinite;
}

.motivational-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 500;
}

.quote-author {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-align: right;
    display: block;
}

.motivational-message {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    border: 2px solid rgba(76, 175, 80, 0.3);
    text-align: center;
    animation: slideInUp 0.8s ease 0.7s both;
}

.motivational-message p {
    margin: 8px 0;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.progress-motivation {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    text-align: center;
    animation: slideInUp 0.5s ease;
}

.progress-motivation p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.result-motivation {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(233, 30, 99, 0.1));
    border-radius: 20px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid rgba(156, 39, 176, 0.3);
    text-align: center;
    animation: slideInUp 0.8s ease 0.3s both;
}

.result-motivation p {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

#result-message {
    font-size: 1.3rem;
    color: #667eea;
}

#result-encouragement {
    font-size: 1rem;
    color: #666;
    font-style: italic;
} 