/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1e293b;
    color: #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.ccb-text p {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ccb-text p:last-child {
    margin-bottom: 0;
}

.ccb-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.ccb-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.ccb-btn--accept {
    background: #6366f1;
    color: white;
}

.ccb-btn--accept:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

.ccb-btn--reject {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ccb-btn--reject:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .ccb-inner {
        flex-direction: column;
        text-align: center;
    }

    .ccb-actions {
        width: 100%;
        justify-content: center;
    }

    .ccb-btn {
        flex: 1;
    }
}
