    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        color: #ffffff;
        z-index: 10000;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        font-family: Arial, sans-serif;
        display: none;
    }
    .cookie-banner.show {
        transform: translateY(0);
        display: block;
    }
    .cookie-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 14px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }
    .cookie-text {
        font-size: 13px;
        line-height: 1.5;
        color: #cccccc;
    }
    .cookie-text a {
        color: #4da3ff;
        text-decoration: underline;
    }
    .cookie-text a:hover {
        color: #80c0ff;
    }
    .cookie-buttons {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
    }
    .btn-cookie {
        padding: 8px 22px;
        border-radius: 6px;
        border: none;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        white-space: nowrap;
    }
    .btn-accept {
        background: #ffffff;
        color: #1a1a1a;
    }
    .btn-accept:hover {
        background: #e0e0e0;
    }
    .btn-decline {
        background: transparent;
        color: #ffffff;
        border: 1px solid #555;
    }
    .btn-decline:hover {
        background: #333;
        border-color: #888;
    }
    @media (max-width: 600px) {
        .cookie-container {
            flex-direction: column;
            align-items: flex-start;
        }
    }