/* Cookie consent — matches news_tgn_0001 (dark + amber) */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom, 0px));
    background: rgba(16, 16, 24, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #e2e8f0;
    border-top: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    animation: n1-cookie-slide-up 0.4s ease-out;
}

@keyframes n1-cookie-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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
}

.cookie-consent-text {
    flex: 1;
    min-width: min(100%, 280px);
}

.cookie-consent-text > div:first-child {
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f59e0b;
}

.cookie-consent-text p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #94a3b8;
}

.cookie-consent-text a {
    color: #f59e0b;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-text a:hover { color: #d97706; }

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-btn-accept {
    background: #f59e0b;
    color: #0a0a0f;
    border-color: #f59e0b;
}

.cookie-btn-accept:hover {
    background: #d97706;
    border-color: #d97706;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: #e2e8f0;
    border-color: #374151;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #6b7280;
}

.cookie-btn-settings {
    background: transparent;
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.45);
}

.cookie-btn-settings:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: #f59e0b;
}

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

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

.cookie-settings-content {
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 24px;
    border-radius: 12px;
    background: #1a1a2e;
    color: #e2e8f0;
    border: 1px solid #374151;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
    animation: n1-cookie-modal-in 0.25s ease-out;
}

@keyframes n1-cookie-modal-in {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.cookie-settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #374151;
}

.cookie-settings-header > div {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f59e0b;
}

.cookie-settings-close {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #374151;
    border-radius: 999px;
    background: #0a0a0f;
    font-size: 1.4rem;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
}

.cookie-settings-close:hover {
    color: #e2e8f0;
    border-color: #f59e0b;
}

.cookie-setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #2d3748;
}

.cookie-setting-item:last-child { border-bottom: none; }

.cookie-setting-info > div {
    margin-bottom: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}

.cookie-setting-info p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #94a3b8;
}

.cookie-toggle {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    border-radius: 999px;
    background: #374151;
    border: 1px solid #4b5563;
    transition: 0.3s;
}

.cookie-toggle-slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: #f59e0b;
    border-color: #f59e0b;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
    background: #0a0a0f;
}

.cookie-toggle.disabled { opacity: 0.5; cursor: not-allowed; }
.cookie-toggle.disabled input { cursor: not-allowed; }

.cookie-settings-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #374151;
}

@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; min-width: 0; }
    .cookie-setting-item { flex-direction: column; align-items: flex-start; }
    .cookie-toggle { align-self: flex-end; }
    .cookie-settings-footer { flex-direction: column; }
    .cookie-settings-footer .cookie-btn { width: 100%; }
}
