/* =====================
   CS PAGE — extra styles on top of Auth.css
   ===================== */

.cs-card {
    max-width: 440px;
}

/* Header */
.cs-header {
    text-align: center;
    margin-bottom: 28px;
}

.cs-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 185, 122, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.cs-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: #00b97a;
}

.cs-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2a37;
    margin-bottom: 8px;
}

.cs-header p {
    font-size: 13.5px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.55;
}

/* Channel list */
.cs-channels {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs-channel-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    padding: 14px 16px;
    transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cs-channel-link:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* Icon circle */
.cs-channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cs-channel-icon svg {
    width: 20px;
    height: 20px;
}

.cs-channel-icon.whatsapp {
    background: #25d366;
    color: #fff;
}

.cs-channel-icon.telegram {
    background: #229ed9;
    color: #fff;
}

.cs-channel-icon.email {
    background: #e05d44;
    color: #fff;
}

.cs-channel-icon.phone {
    background: #4b5563;
    color: #fff;
}

/* Text */
.cs-channel-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.cs-channel-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #334155;
    margin-bottom: 2px;
}

.cs-channel-value {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Arrow chevron */
.cs-channel-arrow {
    flex-shrink: 0;
    color: #64748b;
}

.cs-channel-arrow svg {
    width: 16px;
    height: 16px;
}

.cs-channel-link:hover .cs-channel-arrow {
    color: #9ca3af;
}