/* me.css - ajustes específicos da página "Me" compatíveis com css/styles.css */

/* badge VIP (top) */
.vip-label {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(17, 192, 138, 0.12), rgba(17, 192, 138, 0.06));
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* avatar */
.avatar-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.avatar-wrap img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

/* edit avatar button */
.icon-edit {
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(90deg, #22e19f, #10c776);
    color: #002012;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

/* profile name */
.profile-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* ids area */
.ids {
    margin-top: 8px;
}

.id-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    padding: 8px 0;
    /* manter linha separadora sutil entre campos (não caixa ao redor) */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.id-line:first-child {
    border-top: 0;
}

.id-label {
    min-width: 110px;
    color: #cfcfcf;
}

.id-value {
    color: #fff;
    font-weight: 700;
}

/* list container: removed background/frame to match original print */
.list {
    /* remove the previous framed look */
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

/* list items: no outer box; only a subtle bottom divider like the print */
.list .list-item {
    background: transparent;
    border-radius: 0;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    /* remove extra outer spacing that formed a frame */
    border: none;
    /* remove box border */
    /* subtle separator between items */
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* remove last item bottom border if you want a clean end */
.list .list-item:last-child {
    border-bottom: none;
}

/* icons in list */
.list-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
}

/* logout button large */
.btn.primary {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* responsive small screens: keep centered and readable */
@media (max-width:420px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .avatar-wrap {
        width: 120px;
        height: 120px;
    }

    .avatar-wrap img {
        width: 100px;
        height: 100px;
    }

    .id-label {
        min-width: 96px;
    }
}