.cookie-notice {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 20px;
    background: #333;
    color: white;
    text-align: center;
    transition: bottom 0.5s ease;
    z-index: 9999;
}
.cookie-notice.show {
    bottom: 0;
}
.cookie-notice button {
    margin-left: 10px;
    padding: 8px 16px;
    background: #f1c40f;
    border: none;
    cursor: pointer;
}
.cookie-link {
    display: inline-block;
    margin: 0 10px;
    color: #ddd;
}
