/* quote.css */
.quote-container {
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #1f2937;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, opacity 0.3s;
    width: 100%;
}

.quote-icon {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Times New Roman', serif;
    /* Serif for quote look */
    font-style: italic;
}

.quote-author {
    font-size: 1rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-new-quote {
    background: #10b981;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}

.btn-new-quote:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-new-quote:active {
    transform: translateY(1px);
}

/* Share animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}