/* TiProverbs */

:root {
    --bg-dark: #1E1C1A;
    --bg-card: #2a2624;
    --text-light: #FAF5EB;
    --text-muted: #b8a890;
    --primary: #8B5A2B;
    --primary-dark: #9E6B38;
    --accent: #D4AF37;
    --accent-light: #E6BF4D;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: radial-gradient(circle at center, #2a2624 0%, #1E1C1A 100%);
}

/* Cinematic Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1464695110811-dcf3903142e2?q=80&w=2670&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.proverb-container {
    max-width: 900px;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.quote-mark {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.daily-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.proverb-text {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, var(--text-light), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proverb-meta {
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-weight: 300;
}

.contributor {
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: inline-block;
}

.footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
}

.store-links {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.copyright-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-link:hover {
    color: var(--accent);
}

.store-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.store-link:hover {
    color: var(--accent);
}

.separator {
    color: rgba(255, 255, 255, 0.2);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .proverb-text {
        font-size: 2rem;
    }
}