.cc-banner {
    position: fixed;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cc-position-bottom {
    bottom: 0;
}

.cc-position-top {
    top: 0;
}

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

.cc-text {
    flex: 2;
    min-width: 200px;
}

.cc-text strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
    color: #2eacce;
}

.cc-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.cc-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cc-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
}

.cc-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2eacce;
}

.cc-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cc-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cc-btn-primary {
    background: #2eacce;
    color: #fff;
}

.cc-btn-primary:hover {
    background: #2493b0;
    transform: translateY(-2px);
}

.cc-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.cc-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.cc-btn-text {
    background: transparent;
    color: #ff6b6b;
}

.cc-btn-text:hover {
    text-decoration: underline;
}

.cc-banner {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cc-banner.slide-out {
    transform: translateY(100%);
    opacity: 0;
}

@media (max-width: 768px) {
    .cc-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cc-options {
        justify-content: center;
    }
    
    .cc-buttons {
        justify-content: center;
    }
}