/* Footer + cookie notice for rek landing pages (no global layout conflicts) */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --text-primary: #e8e8ef;
    --text-secondary: #9494a8;
    --text-muted: #5a5a6e;
    --accent-light: #9b5ae8;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    text-align: center;
}

.footer-privacy-text {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 24px;
}

.footer-legal {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.footer-legal-name {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.footer-legal-req {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.footer-legal-sep {
    margin: 0 0.35em;
    opacity: 0.5;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-light);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-rek {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}

.footer-rek-title {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.footer-rek-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.footer-rek-tag {
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: rgba(123, 48, 216, 0.06);
    text-decoration: none;
    transition: var(--transition);
}

.footer-rek-tag:hover {
    border-color: rgba(123, 48, 216, 0.4);
    color: var(--accent-light);
    background: rgba(123, 48, 216, 0.12);
}

.cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 16px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-notice--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-notice-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(22, 22, 31, 0.96);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.cookie-notice-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-notice-link {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.cookie-notice-link:hover {
    color: #fff;
}

.cookie-notice-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xs);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-notice-close:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 600px) {
    .cookie-notice-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-notice-close {
        align-self: center;
    }
}
