/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px 30px;
    z-index: 99999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    font-family: Arial, Helvetica, sans-serif;
}

.cookie-consent-banner.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin-right: 20px;
}

.cookie-text a {
    color: #66b3ff;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #99ccff;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn-accept:hover {
    background: #45a049;
    transform: scale(1.05);
}

.cookie-btn-decline {
    background: #f44336;
    color: white;
}

.cookie-btn-decline:hover {
    background: #da190b;
    transform: scale(1.05);
}

.cookie-btn-settings {
    background: #555;
    color: white;
}

.cookie-btn-settings:hover {
    background: #666;
    transform: scale(1.05);
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}