:root {
    --bg-color: #fdfbf7;
    --text-color: #2d3436;
    --accent-color: #6c5ce7;
    --card-bg: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(108, 92, 231, 0.05) 0%, transparent 40%);
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 600px;
    perspective: 1000px;
}

.quote-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

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

.quote-symbol {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -1rem;
    font-weight: 900;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 400;
}

.quote-author-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    opacity: 0.7;
}

.dash {
    color: var(--accent-color);
}

.new-quote-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.new-quote-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
    background-color: #5b4bc4;
}

.new-quote-btn:active {
    transform: scale(0.98);
}

@media (max-width: 480px) {
    .quote-card {
        padding: 2rem;
    }
    .quote-text {
        font-size: 1.4rem;
    }
}