.public-profile-screen { background: #fcfcfd; min-height: 100vh; font-family: 'Plus Jakarta Sans', sans-serif; }

/* Profile Circle */
.profile-icon-circle {
    width: 80px; height: 80px; background: white; 
    border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; margin: 0 auto; font-size: 2.5rem;
}

/* Action Cards */
.action-card {
    display: flex; flex-direction: column; align-items: center;
    background: white; padding: 25px 15px; border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); color: #1e293b;
    font-weight: 700; transition: 0.2s;
}
.action-card i { font-size: 1.8rem; color: #6366f1; }
.action-card.whatsapp i { color: #25D366; }
.action-card:active { transform: scale(0.95); }

/* Quick Message Chips */
.quick-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    background: #f1f5f9; border: none; padding: 8px 16px;
    border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    color: #475569; transition: 0.2s;
}
.chip:active { background: #6366f1; color: white; }

/* Buttons */
.btn-indigo { background: #6366f1; color: white; border: none; }
.btn-telegram { background: #0088cc; color: white; border: none; font-weight: 700; }