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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.quote-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

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

.quote-text {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.btn {
    background: #fff;
    color: #764ba2;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    margin-top: 1.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.all-quotes-section {
    margin-top: 1.5rem;
}

.all-quotes-section summary {
    list-style: none;
}

.all-quotes-section summary::-webkit-details-marker {
    display: none;
}

.quotes-list {
    margin-top: 1rem;
}

.quote-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.quote-item .quote-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.quote-item .quote-author {
    font-size: 0.875rem;
}