.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--color-obsidian-light);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2), 0 0 60px rgba(181, 55, 255, 0.1);
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px);
    animation: slideInUp 0.5s ease forwards;
    animation-delay: 1s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-consent.hide {
    animation: slideOutDown 0.4s ease forwards;
}

@keyframes slideOutDown {
    to {
        opacity: 0;
        transform: translateY(100px);
    }
}

.cookie-consent-content {
    margin-bottom: 1rem;
}

.cookie-consent-content p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-content a {
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.cookie-consent-content a:hover {
    color: var(--color-violet);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-consent-btn {
    flex: 1;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-violet));
    color: var(--color-white);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4), 0 0 40px rgba(181, 55, 255, 0.3);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 1.25rem;
    }

    .cookie-consent-content p {
        font-size: 0.8125rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-consent-btn {
        width: 100%;
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 15px 15px 0 0;
        padding: 1rem;
    }

    .cookie-consent-content p {
        font-size: 0.75rem;
    }

    .cookie-consent-btn {
        font-size: 0.8125rem;
        padding: 0.75rem 1rem;
    }
}
