#cookie-consent-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 10001;
    display: flex; align-items: center; justify-content: center;
}
.cookie-box {
    background: #101018; border: 1px solid #2a2a40; border-radius: 16px;
    padding: 2rem; max-width: 550px; width: 90%; color: #ccc;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.cookie-box h2 { color: #fff; margin-top: 0; font-size: 1.4rem; }
.cookie-box a { color: #a78bfa; text-decoration: none; }
.cookie-box a:hover { text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.2rem; }
.cookie-btn {
    padding: 0.7rem 1.4rem; border-radius: 8px; border: none; cursor: pointer;
    font-weight: 600; font-size: 0.9rem; transition: all 0.2s;
}
.cookie-btn.primary { background: #7c3aed; color: white; }
.cookie-btn.secondary { background: #3b3b50; color: white; }
.cookie-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.cookie-categories { margin: 1.2rem 0; display: none; }
.cookie-categories label {
    display: flex; align-items: center; padding: 0.6rem 0;
    border-bottom: 1px solid #2a2a40; color: #ddd;
}
.cookie-categories input[type="checkbox"] { margin-right: 0.8rem; transform: scale(1.2); }
#cookie-settings-icon {
    position: fixed; bottom: 1rem; left: 1rem; z-index: 9999;
    width: 40px; height: 40px; background: #7c3aed; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: white; font-size: 1.2rem;
}
