/* --- Cookie Banner 样式 --- */
#my-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--light-text);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    box-sizing: border-box; 
}
#my-cookie-banner p {
    margin: 0 20px 0 0;
    font-size: 14px;
    flex-grow: 1;
}
#my-cookie-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}
#my-cookie-banner button {
    background: var(--accent-gold);
    color: var(--light-text);
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap; 
    transition: background-color 0.3s ease;
}
#my-cookie-banner button:hover {
    background-color: #b03a0f;
}

/* 响应式 */
@media (max-width: 600px) {
    #my-cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }
    #my-cookie-banner p {
        margin: 0 0 15px 0;
        text-align: center;
    }
    #my-cookie-banner button {
        width: 100%;
    }
}