#cookie-consent-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: white;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.cookie-consent-content p {
    margin: 0;
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-consent-content a {
    color: #63b3ed;
    text-decoration: underline;
}

.cookie-consent-content a:hover {
    color: #90cdf4;
}

#cookie-consent-agree {
    background: #48bb78;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

#cookie-consent-agree:hover {
    background: #38a169;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    #cookie-consent-agree {
        margin-left: 0;
    }
    
    .cookie-consent-content p {
        font-size: 13px;
    }
}