

/* main card – just to show some content */
.content-card {
    max-width: 700px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid #e9edf2;
    transition: all 0.2s ease;
}

.content-card h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0b1a2b;
    margin-bottom: 0.5rem;
}

.content-card p {
    color: #2c3e50;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0.5rem 0 1.2rem 0;
}

.content-card .emoji-big {
    font-size: 3.4rem;
    display: block;
    margin-bottom: 0.25rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: #d0d9e4;
    margin: 1.2rem auto 1.5rem auto;
    border-radius: 10px;
}

/* ----- COOKIE BANNER (fixed bottom) ----- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
    padding: 1.2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
    backdrop-filter: blur(2px);
    z-index: 999;
    transition: transform 0.35s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

/* hidden state (used when consent is given) */
.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner .message {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1rem;
    color: #1e293b;
}

.cookie-banner .message span {
    background: #eef2f6;
    padding: 0.2rem 0.9rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e3a5f;
}

.cookie-banner .actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
}

.cookie-btn {
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.95rem;
    background: #eef2f6;
    color: #1e293b;
    cursor: pointer;
    transition: 0.15s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    border: 1px solid transparent;
}

.cookie-btn:hover {
    background: #dce3ec;
    transform: scale(0.97);
}

.cookie-btn.primary {
    background: #1f2a3a;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.cookie-btn.primary:hover {
    background: #0f1a2b;
    transform: scale(0.97);
}

.cookie-btn.outline {
    background: transparent;
    border: 1px solid #cbd5e1;
}

.cookie-btn.outline:hover {
    background: #f1f5f9;
}

.cookie-banner .policy-link {
    color: #1f2a3a;
    text-underline-offset: 3px;
    font-weight: 500;
    text-decoration: underline 1.5px dotted #8a9aaf;
    margin-left: 0.15rem;
}

.cookie-banner .policy-link:hover {
    color: #000;
    text-decoration-color: #1f2a3a;
}

/* simple footer note */
.footnote {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: #5b6f84;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.8rem;
    width: 100%;
    max-width: 700px;
}

.footnote a {
    color: #1f2a3a;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted #b9c8da;
}

@media (max-width: 550px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem 1.2rem;
        gap: 0.8rem;
    }
    .cookie-banner .actions {
        justify-content: center;
    }
    .content-card {
        padding: 2rem 1.2rem;
    }
}