* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-in;
}

.main-title {
        font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: bold;
    color: white;
margin-top: 5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.8);
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin: 2rem;
}

.container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.question-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.choice-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    min-width: 120px;
}

.choice-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.choice-btn:active {
    transform: translateY(0);
}

.no-btn {
    background: linear-gradient(45deg, #4ecdc4, #44a08d) !important;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4) !important;
}

.no-btn:hover {
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.6) !important;
}

.result-text {
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wisdom-btn {
    background: linear-gradient(45deg, #ffa726, #ff9800);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.4);
    margin: 10px;
}

.wisdom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 167, 38, 0.6);
}

.reset-btn {
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(162, 155, 254, 0.4);
    margin: 10px;
}

.reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(162, 155, 254, 0.6);
}

.wisdom-card {
    max-width: 800px;
    padding: 30px;
}

.wisdom-header {
    margin-bottom: 30px;
}

.wisdom-header h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.wisdom-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.quote-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.english-quote {
    font-size: 1.3rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hindi-quote {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.english-source {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 5px;
}

.hindi-source {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.wisdom-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-quote-btn {
    background: linear-gradient(45deg, #26de81, #20bf6b);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(38, 222, 129, 0.4);
}

.next-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 222, 129, 0.6);
}

.back-btn {
    background: linear-gradient(45deg, #778ca3, #636e72);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(119, 140, 163, 0.4);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(119, 140, 163, 0.6);
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .question-text {
        font-size: 1.4rem;
    }
    
    .result-text {
        font-size: 1.8rem;
    }
    
    .glass-card {
        padding: 30px 20px;
    }
    
    .choice-btn, .reset-btn, .wisdom-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .english-quote {
        font-size: 1.1rem;
    }
    
    .hindi-quote {
        font-size: 1rem;
    }
    
    .wisdom-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .result-text {
        font-size: 1.5rem;
    }
    
    .buttons-container, .wisdom-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .choice-btn, .reset-btn, .wisdom-btn, .next-quote-btn, .back-btn {
        width: 150px;
        margin: 5px;
    }
    
    .quote-container {
        padding: 20px;
    }
    
    .english-quote {
        font-size: 1rem;
    }
    
    .hindi-quote {
        font-size: 0.9rem;
    }
    
    .wisdom-card {
        padding: 20px;
    }
}