/* Hard Club — Личный кабинет (Plugin Styles) */

.hcl-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--hc-secondary-black, #1a1a1a);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.hcl-input:focus {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.15);
}

.hcl-label {
    display: block;
    margin-bottom: 8px;
    color: var(--hc-text-muted, #c0c0c0);
    font-size: 0.9rem;
    font-weight: 500;
}

.hcl-btn-full {
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.hcl-msg {
    text-align: center;
    font-weight: 600;
    min-height: 24px;
    font-size: 0.95rem;
}

.hcl-error {
    color: #f87171;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ЛК карточка */
.hcl-card {
    background: var(--hc-secondary-black, #1a1a1a);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.hcl-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hcl-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c41e3a 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    flex-shrink: 0;
}

.hcl-name {
    margin: 0;
    font-size: 1.35rem;
    color: var(--hc-text-color, #ffffff);
}

.hcl-subtitle {
    margin: 6px 0 0;
    color: var(--hc-text-muted, #c0c0c0);
    font-size: 0.9rem;
}

.hcl-data-list {
    display: grid;
    gap: 0;
}

.hcl-data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 8px;
}
.hcl-data-row:last-child {
    border-bottom: none;
}

.hcl-data-label {
    color: var(--hc-text-muted, #c0c0c0);
    font-size: 0.95rem;
}

.hcl-data-value {
    color: var(--hc-text-color, #ffffff);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hcl-card { padding: 25px; }
    .hcl-data-row { flex-direction: column; align-items: flex-start; }
}
