/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3f00, #e0a96d);
    color: #ffe0b2;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 90%;
    max-width: 500px;
    display: none;
    animation: swoopIn 0.6s ease-out;
    font-family: 'Trebuchet MS', sans-serif;
    border: 2px solid #ffe0b2;
}

.cookie-banner p {
    font-size: 15px;
    margin: 0 0 10px;
    text-shadow: 1px 1px #4b1d06;
}

.cookie-banner a {
    color: #c0392b;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 1px 1px #4b1d06;
}

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

.cookie-banner button {
    background-color: #ffe0b2;
    color: #7c3f00;
    border: 2px solid #7c3f00;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 2px 2px #4b1d06;
}

.cookie-banner button:hover {
    background-color: #c0392b;
    color: #fff;
    border-color: #4b1d06;
}

/* Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, #7c3f00, #e0a96d);
    color: #ffe0b2;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    border-top: 3px dashed #ffe0b2;
    box-shadow: 0 -6px 15px rgba(0, 0, 0, 0.4);
    font-family: 'Trebuchet MS', sans-serif;
}

.disclaimer strong {
    font-weight: bold;
    color: #c0392b;
    text-shadow: 1px 1px #4b1d06;
}

.disclaimer a {
    color: #c0392b;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 1px 1px #4b1d06;
}

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

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