/* ============================================
   COMPACT PROFILE - Borderlands Style
   ============================================ */

.profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    margin-top: 20px;
}

/* Profile Info Block (Left) */
.profile-info-block {
    background: white;
    border: 4px solid var(--black);
    padding: 25px;
    position: relative;
    box-shadow: none;
}


.profile-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 4px solid var(--black);
}

.profile-info-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.profile-info-title {
    font-family: 'Bangers', cursive;
    font-size: 1.1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 var(--yellow);
}

/* Auth Display */
.profile-auth-display {
    margin-bottom: 20px;
}

.auth-method-badge {
    display: inline-block;
    font-family: 'Bangers', cursive;
    font-size: 0.95rem;
    padding: 8px 16px;
    margin-bottom: 15px;
    border: 3px solid var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
    transform: rotate(-2deg);
}

.auth-method-badge--telegram {
    background: #3498db;
    color: white;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.auth-method-badge--email {
    background: #3498db;
    color: white;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.auth-info-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-info-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .auth-info-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

.auth-info-label {
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    color: var(--gray);
    text-transform: uppercase;
    min-width: 60px;
}

.auth-info-value {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    word-break: break-all;
}

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    
    .profile-info-block {
        padding: 20px;
    }

    .profile-balance-block {
        padding: 20px;
    }

    .profile-info-title,
    .profile-balance-title {
        font-size: 1.1rem;
    }

    .balance-value {
        font-size: 2.2rem;
    }

    .balance-currency {
        font-size: 1.2rem;
    }

    .auth-method-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .auth-info-value {
        font-size: 1rem;
    }
}

/* Add Contact Section */
.profile-add-contact-section {
    margin-top: 20px;
}

.profile-add-divider {
    height: 3px;
    background: var(--black);
    margin-bottom: 15px;
    transform: rotate(-1deg);
}

.profile-add-hint {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.profile-add-contact-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    background: var(--blue) !important;
    color: white !important;
}

#addTelegramBtn {
    background: #3498db !important;
}

/* Balance Block (Right) */
.profile-balance-block {
    background: white;
    border: 4px solid var(--black);
    padding: 25px;
    position: relative;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}


.profile-balance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 4px solid var(--black);
    width: 100%;
}

.profile-balance-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.profile-balance-title {
    font-family: 'Bangers', cursive;
    font-size: 1.1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 var(--yellow);
}

.profile-balance-amount {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: none;
}


.balance-value {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.balance-currency {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray);
}

.profile-deposit-btn {
    margin-top: 35px;
    padding: 12px 25px;
    font-size: 1rem;
    background: var(--blue) !important;
    color: white !important;
    border: 4px solid var(--black) !important;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3) !important;
}

.profile-deposit-btn:hover {
    background: var(--orange) !important;
    color: var(--black) !important;
    transform: skewX(-8deg) rotate(-2deg) translate(-3px, -3px) !important;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.4) !important;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    
    .profile-info-block {
        padding: 20px;
    }

    .profile-balance-block {
        padding: 20px;
    }

    .profile-info-title,
    .profile-balance-title {
        font-size: 1.1rem;
    }

    .balance-value {
        font-size: 2.2rem;
    }

    .balance-currency {
        font-size: 1.2rem;
    }

    .auth-method-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .auth-info-value {
        font-size: 1rem;
    }

    .profile-deposit-btn {
        margin: 15px 0;
    }
}
