.cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 10000;
    padding: 1rem 1.25rem;
    background: rgba(12, 15, 20, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #e8eaef;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    backdrop-filter: blur(8px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-consent__text {
    flex: 1 1 280px;
    margin: 0;
}

.cookie-consent__text a {
    color: #2dd4bf;
    text-underline-offset: 2px;
}

.cookie-consent__text a:hover {
    color: #5eead4;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    flex-shrink: 0;
}

.cookie-consent__btn {
    cursor: pointer;
    border-radius: 10px;
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cookie-consent__btn--reject {
    background: transparent;
    color: #e8eaef;
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-consent__btn--reject:hover {
    background: rgba(255, 255, 255, 0.06);
}

.cookie-consent__btn--accept {
    background: #2dd4bf;
    color: #0c0f14;
    border-color: #2dd4bf;
}

.cookie-consent__btn--accept:hover {
    background: #5eead4;
    border-color: #5eead4;
}

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

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__btn {
        flex: 1 1 auto;
        text-align: center;
    }
}
