.ccn-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.ccn-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ccn-content p {
    margin: 0 15px 0 0;
    flex: 1;
}

.ccn-button {
    background: #FF6B6B;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.ccn-button:hover {
    background: #7c7c7c;
}

@media (max-width: 600px) {
    .ccn-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ccn-content p {
        margin: 0 0 10px 0;
    }
}