.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--space-blue, #1a1724);
    color: var(--star-white, #f4f0ff);
    padding: 24px 20px;
    border-top: 3px solid var(--comet-cyan, #b4ff39);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    animation: g14-slide-up 0.4s ease-out;
}

@keyframes g14-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-banner.show { display: block; }

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text { flex: 1; min-width: 280px; }

.cookie-consent-text div {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--comet-cyan, #b4ff39);
}

.cookie-consent-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
    opacity: 0.9;
}

.cookie-consent-text a {
    color: var(--comet-cyan, #b4ff39);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease;
}

.cookie-btn-accept {
    background: var(--comet-cyan, #b4ff39);
    color: var(--space-dark, #0c0b10);
    border-color: var(--comet-cyan, #b4ff39);
}

.cookie-btn-accept:hover { transform: translateY(-2px); }

.cookie-btn-reject,
.cookie-btn-settings {
    background: transparent;
    color: var(--star-white, #f4f0ff);
    border-color: rgba(244, 240, 255, 0.35);
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
    border-color: var(--nebula-pink, #ff6b4a);
}

.cookie-settings-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 11, 16, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show { display: flex; }

.cookie-settings-content {
    background: var(--star-white, #f4f0ff);
    color: var(--space-dark, #0c0b10);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 3px solid var(--space-dark, #0c0b10);
    border-radius: 14px;
    padding: 28px;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(12, 11, 16, 0.1);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--comet-cyan, #b4ff39);
}

@media (max-width: 768px) {
    .cookie-consent-content { flex-direction: column; text-align: center; }
    .cookie-consent-buttons { width: 100%; justify-content: center; }
    .cookie-btn { flex: 1; }
}
