:root {
    color-scheme: dark;

    /* Slightly lighter background (zinc-900/950 hybrid) to stand out from pure black body */
    --cc-bg: #0f1113;
    --cc-primary-color: #ffffff;
    --cc-secondary-color: #9ca3af;

    --cc-btn-primary-bg: #07fed0;
    --cc-btn-primary-color: #000;
    --cc-btn-primary-hover-bg: #06e0b8;
    --cc-btn-primary-hover-color: #000;

    --cc-btn-secondary-bg: #1f2937;
    --cc-btn-secondary-color: #ffffff;
    --cc-btn-secondary-hover-bg: #374151;
    --cc-btn-secondary-hover-color: #ffffff;

    --cc-cookie-category-block-bg: #18181b;
    --cc-cookie-category-block-border: #27272a;
    --cc-cookie-category-block-hover-bg: #27272a;
    --cc-cookie-category-block-hover-border: #3f3f46;
    --cc-cookie-category-expanded-block-hover-bg: #27272a;
    --cc-cookie-category-expanded-block-bg: #18181b;
    --cc-toggle-readonly-bg: #3f3f46;
    --cc-overlay-bg: rgba(0, 0, 0, 0.9) !important;

    --cc-toggle-on-knob-bg: #07fed0;
    --cc-toggle-readonly-knob-bg: #9ca3af;

    --cc-separator-border-color: #27272a;

    --cc-footer-border-color: #27272a;
    --cc-footer-bg: #0f1113;
}

#cc-main .cm {
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Lighter border for contrast against black */
    border-radius: 24px;
    box-shadow: 0 10px 60px -10px rgba(0, 0, 0, 1), 0 0 0 1px rgba(7, 254, 208, 0.15);
    /* Strong shadow + turquoise rim */
    backdrop-filter: blur(20px);
}

#cc-main .cm__btn {
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Epilogue', sans-serif;
    transition: all 0.2s ease;
}

#cc-main .cm__btn--accept {
    box-shadow: 0 0 15px rgba(7, 254, 208, 0.2);
}

#cc-main .cm__btn--accept:hover {
    box-shadow: 0 0 20px rgba(7, 254, 208, 0.4);
    transform: scale(1.02);
}

#cc-main .cm__title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

#cc-main .cm__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #a3a3a3;
    line-height: 1.5;
}

#cc-main a {
    color: #07fed0;
    text-decoration: underline;
}

#cc-main a:hover {
    text-decoration: none;
}

@media (max-width: 640px) {
    #cc-main .cm {
        border-radius: 0;
        bottom: 0;
        max-width: 100% !important;
        left: 0;
        right: 0;
        margin: 0;
        border-right: none;
        border-left: none;
        border-bottom: none;
    }

    #cc-main .cm__btn {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0.8rem;
    }

    #cc-main .cm__btns {
        flex-direction: column;
    }
}