.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.active {
    transform: translateY(0);
    animation: pulse 2s 1s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 -4px 15px rgba(30, 144, 255, 0.6);
    }
    100% {
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
    }
}

.cookie-text {
    margin-bottom: 15px;
    text-align: center;
    max-width: 800px;
    line-height: 1.6;
    font-size: 16px;
}

.cookie-text a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
    font-weight: bold;
}

.cookie-text a:hover {
    color: #5dade2;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.cookie-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-button:hover {
    transform: translateY(-2px);
}

.cookie-deny {
    background-color: #ffffff;
    color: #333333;
}

.cookie-deny:hover {
    background-color: #e6e6e6;
}

.cookie-accept {
    background-color: #2ecc71;
    color: white;
}

.cookie-accept:hover {
    background-color: #27ae60;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 15px 10px;
    }
    
    .cookie-text {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 10px;
    }
    
    .cookie-button {
        width: 100%;
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .cookie-text {
        font-size: 13px;
    }
} 