.cookie-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 350px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%) scale(0.9);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    opacity: 0;
    text-align: center;
}

.cookie-consent.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.cookie-text {
    width: 100%;
    margin-bottom: 20px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
}

.cookie-text a {
    color: #00ff40;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.cookie-btn-accept {
    background-color: #00ff40;
    color: #000;
}

.cookie-btn-accept:hover {
    background-color: #00cc33;
}

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

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-consent {
        width: 90%;
        max-width: 350px;
        padding: 20px 15px;
    }
    
    .cookie-text p {
        font-size: 14px;
    }
    
    .cookie-btn {
        min-width: 120px;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: bold;
    }
}
