.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(3, 3, 3, 0.5);
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    backdrop-filter: blur(5px);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    margin-bottom: 15px;
}

.cookie-consent a {
    color: #ffeb3b;
    text-decoration: underline;
}

.cookie-consent a:hover {
    color: #fff;
}

.cookie-button {
    background: #1c7e68; /*#ff6b35;*/
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cookie-button:hover {
    background: #e55a2b;
}

.cookie-footer {
    margin-top: 10px;
    font-size: 11px;
    opacity: 0.9;
}