.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    border-top: 2px solid #007bff;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-icon {
    font-size: 28px;
    color: #007bff;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-text strong {
    color: #007bff;
    font-size: 16px;
}

.cookie-text a {
    color: #007bff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    color: #0056b3;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accept-cookies {
    background-color: #007bff;
    color: white;
}

.accept-cookies:hover {
    background-color: #0069d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.decline-cookies {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.decline-cookies:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}
