/* ========================================
   sollteicheinenjointrauchen.de — Styles
   ======================================== */

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

:root {
    --bg: #1a1a2e;
    --bg-card: #16213e;
    --text: #eee;
    --text-muted: #aaa;
    --accent-ja: #4ade80;
    --accent-nein: #f87171;
    --accent-vielleicht: #fbbf24;
    --accent-philosophisch: #a78bfa;
    --accent-default: #4ade80;
    --radius: 16px;
    --shadow: 0 8px 32px rgba(0,0,0,0.3);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem;
}

.container {
    max-width: 640px;
    width: 100%;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 2rem;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

/* Oracle Section */
.oracle {
    text-align: center;
    margin-bottom: 2rem;
}

.answer-box {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: border-color 0.4s ease, transform 0.3s ease;
    border: 3px solid var(--accent-default);
}

.answer-box.pop {
    transform: scale(1.03);
}

.answer-text {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    transition: color 0.4s ease;
    color: var(--accent-default);
    letter-spacing: 0.05em;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 2em;
    line-height: 1.5;
    padding: 0 0.5rem;
}

.ask-btn {
    background: var(--accent-default);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.4s ease;
    box-shadow: 0 4px 16px rgba(74, 222, 128, 0.3);
}

.ask-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(74, 222, 128, 0.45);
}

.ask-btn:active {
    transform: scale(0.97);
}

/* Tip Section */
.tip-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    font-size: 0.95rem;
    line-height: 1.5;
}

.tip-label {
    font-weight: 700;
    margin-right: 0.3rem;
}

/* Ad Slots */
.ad-slot {
    text-align: center;
    margin: 0;
    padding: 0;
    border-radius: var(--radius);
    min-height: 0;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ad-slot.has-ad {
    display: flex;
    margin: 1.5rem 0;
    padding: 1rem;
    min-height: 90px;
}

/* Extras */
.extras {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fact-section, .stat-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1rem 1.3rem;
    box-shadow: var(--shadow);
    font-size: 0.95rem;
    line-height: 1.5;
}

.fact-label, .stat-label {
    margin-right: 0.4rem;
}

/* Share Section */
.share-section {
    text-align: center;
    margin: 2rem 0;
}

.share-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.share-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s ease, opacity 0.2s ease;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.twitter {
    background: #1d9bf0;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.share-btn.tiktok {
    background: #010101;
    border: 1px solid #333;
}

.share-btn.telegram {
    background: #0088cc;
}

.share-btn.sms {
    background: #48bb78;
}

.share-btn.copy {
    background: #6b7280;
}

.copy-feedback {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent-ja);
    min-height: 1.2em;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2a4a;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--text);
}

.copyright {
    font-size: 0.75rem;
    color: #555;
}

/* Seasonal Overrides */
body.seasonal-420 {
    background: #0d1117;
}

body.seasonal-420 .answer-box {
    border-color: #4ade80;
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.2), var(--shadow);
}

body.seasonal-xmas .site-title::after {
    content: " 🎄";
}

body.seasonal-silvester .site-title::after {
    content: " 🎆";
}

/* Responsive */
@media (max-width: 480px) {
    .site-title {
        font-size: 1.2rem;
    }

    .answer-text {
        font-size: 2.8rem;
    }

    .answer-box {
        padding: 2rem 1.2rem;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .share-btn {
        width: 80%;
    }
}

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

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