/* Cyber Consent Manager — Modal, Header & Options */
:root {
    --cyber-blue: #00f3ff;
    --cyber-pink: #ff00ff;
    --cyber-purple: #bc13fe;
    --glass-bg: rgba(10, 10, 20, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
}

#cyber-consent-overlay {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); z-index: 9999;
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#cyber-consent-overlay.active { opacity: 1; visibility: visible; }

.cyber-consent-modal {
    width: 100%; max-width: 900px; margin: 0 20px 20px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 16px; box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    overflow: hidden; transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', system-ui, sans-serif; color: white;
}
#cyber-consent-overlay.active .cyber-consent-modal { transform: translateY(0); }

.cc-header { padding: 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; gap: 16px; align-items: flex-start; }
.cc-icon { font-size: 32px; filter: drop-shadow(0 0 8px var(--cyber-blue)); animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.cc-title-group h2 {
    margin: 0 0 8px; font-size: 1.25rem; font-weight: 700;
    background: linear-gradient(to right, #fff, var(--cyber-blue));
    background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cc-text { font-size: 0.9rem; line-height: 1.5; color: rgba(255, 255, 255, 0.8); margin: 0; }

.cc-body { padding: 24px; }
.cc-options { display: grid; gap: 12px; margin-bottom: 20px; }

.cc-option {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px; padding: 12px 16px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; transition: all 0.2s ease;
}
.cc-option:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.1); }

.cc-label { display: flex; flex-direction: column; }
.cc-name { font-weight: 600; font-size: 0.95rem; color: #fff; }
.cc-desc { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }
