.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1400;
    max-width: 360px;
    background: rgba(12, 10, 30, 0.82);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

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

.cookie-consent__text {
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(232, 238, 243, 0.5);
    margin-bottom: 12px;
}

.cookie-consent__text a {
    color: rgba(139, 92, 246, 0.7);
    text-decoration: none;
}

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

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-consent__accept,
.cookie-consent__decline {
    min-height: 0 !important;
    min-width: 0 !important;
    line-height: 1 !important;
    font-family: inherit !important;
    box-shadow: none !important;
}

.cookie-consent__accept {
    padding: 7px 24px;
    background: rgba(139, 92, 246, 0.75);
    color: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-consent__accept:hover {
    background: rgba(139, 92, 246, 0.92);
}

.cookie-consent__decline {
    background: none;
    border: none;
    color: rgba(232, 238, 243, 0.25);
    font-size: 11.5px;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s;
}

.cookie-consent__decline:hover {
    color: rgba(232, 238, 243, 0.5);
}

@media (max-width: 480px) {
    .cookie-consent {
        bottom: 12px;
        left: 12px;
        right: 12px;
        max-width: none;
        padding: 14px 16px;
    }
}
