.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(255, 2, 111, 0.35);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
    font-family: 'Plus Jakarta Sans', 'Montserrat', system-ui, sans-serif;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.cookie-banner__text {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #ccc;
}

.cookie-banner__text a {
    color: #ff026f;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.cookie-banner__btn {
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.cookie-banner__btn--primary {
    background: #ff026f;
    color: #fff;
    border-color: #ff026f;
}

.cookie-banner__btn--primary:hover {
    opacity: 0.9;
}

.cookie-banner__btn--secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.cookie-banner__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-banner__btn--link {
    background: transparent;
    color: #ff026f;
    border: none;
    text-decoration: underline;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

body.cookie-banner-open {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.cookie-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.5rem;
    background: #1a1a1a;
    border: 1px solid rgba(255, 2, 111, 0.25);
    border-radius: 12px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', 'Montserrat', system-ui, sans-serif;
}

.cookie-modal__title {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.cookie-modal__text {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #ccc;
}

.cookie-modal__option {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal__option:last-of-type {
    border-bottom: none;
}

.cookie-modal__option-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.cookie-modal__toggle-label {
    cursor: pointer;
}

.cookie-modal__toggle-label input {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: #ff026f;
}

.cookie-modal__badge {
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
}

.cookie-modal__option-desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #aaa;
}

.cookie-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cookie-modal__footer {
    margin: 1rem 0 0;
    font-size: 0.8125rem;
}

.cookie-modal__footer a {
    color: #ff026f;
}

.footer-cookie-preferences {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.footer-cookie-preferences:hover {
    color: #ff026f;
}

@media (max-width: 600px) {
    .cookie-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__btn {
        width: 100%;
        text-align: center;
    }
}
