/* Cookie Notice Banner */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.98);
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-notice.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-notice-text {
    flex: 1;
    min-width: 280px;
}

.cookie-notice-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-notice-text a {
    color: #86b7fe;
    text-decoration: underline;
}

.cookie-notice-text a:hover {
    color: #a8cfff;
}

.cookie-notice-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-notice .btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-notice .btn-accept {
    background-color: #0d6efd;
    color: #ffffff;
}

.cookie-notice .btn-accept:hover {
    background-color: #0b5ed7;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 16px;
    }

    .cookie-notice-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-notice-text {
        min-width: 100%;
    }

    .cookie-notice-text p {
        font-size: 13px;
    }

    .cookie-notice-actions {
        width: 100%;
    }

    .cookie-notice .btn {
        flex: 1;
        width: 100%;
    }
}
