#ccp-cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e1e2f, #34344a);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
}

.ccp-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ccp-content p {
    margin: 0;
    flex: 1;
}

.ccp-content a {
    color: #f2b632;
    text-decoration: underline;
}

#ccp-accept-btn {
    background: #f2b632;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#ccp-accept-btn:hover {
    background: #fff;
    color: #f2b632;
    transform: scale(1.05);
}
