.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent--visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: rgba(26, 26, 46, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.cookie-consent-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.cookie-consent-text {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.cookie-consent-btn {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cookie-consent-btn:hover {
    transform: translateY(-1px);
}

.cookie-consent-btn--reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-consent-btn--reject:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-consent-btn--accept {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.cookie-consent-btn--accept:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.45);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 0.75rem;
    }

    .cookie-consent-inner {
        padding: 1rem 1.15rem;
    }

    .cookie-consent-actions {
        flex-direction: column;
    }

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