
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #333;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 500px;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

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

.cookie-banner a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.cookie-banner button:hover {
    background-color: #005bb5;
}

/* Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #222;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    border-top: 2px solid #ddd;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.disclaimer strong {
    font-weight: bold;
    color: #000;
}

.disclaimer a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Анимация появления */
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
