.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: min(760px, calc(100vw - 2rem));
    z-index: 10000;
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    color: #d4d4d4;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 1rem 1.1rem;
}

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

.cookie-consent__title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.cookie-consent__text {
    font-size: 0.82rem;
    line-height: 1.6;
    color: #b8b8b8;
}

.cookie-consent__text a {
    color: #60a5fa;
    text-decoration: none;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.95rem;
}

.cookie-consent__button {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    padding: 0.65rem 1rem;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.cookie-consent__button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.24);
}

.cookie-consent__button:active {
    transform: translateY(1px);
}

.cookie-consent__button--primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.cookie-consent__button--primary:hover {
    background: #e5e5e5;
}

@media (max-width: 640px) {
    .cookie-consent {
        width: calc(100vw - 1rem);
        bottom: 0.5rem;
        padding: 0.9rem;
        border-radius: 16px;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

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