.btn-save-elite,
.chip-glass {
    cursor: pointer;
    transition: .3s
}

.profile-unified-frame {
    width: 100%;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: .6s cubic-bezier(.16, 1, .3, 1) profileAppear
}

.profile-scroll-area {
    padding: 40px;
    overflow-y: auto;
    flex: 1
}

.profile-hero-section {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px
}

.profile-main-info {
    display: flex;
    align-items: center;
    gap: 30px
}

.avatar-container-elite {
    position: relative;
    width: 100px;
    height: 100px
}

.avatar-circle-frame {
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 2
}

.avatar-circle-frame h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #a855f7;
    margin: 0
}

.avatar-glow-effect {
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(168, 85, 247, .2), transparent 70%);
    filter: blur(10px);
    z-index: 1
}

.identity-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px
}

.text-purple-glow {
    color: #a855f7;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 11px;
    margin: 5px 0;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(168, 85, 247, .3)
}

#previewMotto {
    color: #666;
    font-style: italic;
    font-size: 13px;
    margin: 10px 0 0
}

.profile-stats-grid-elite {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.p-stat-item {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: .3s
}

.p-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .04);
    border-color: rgba(168, 85, 247, .3)
}

.p-stat-item h3 {
    margin: 0 0 5px;
    font-size: 1.4rem;
    font-weight: 900
}

.p-stat-item small {
    color: #555;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px
}

.glassy-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .05);
    margin: 20px 0 40px
}

.settings-header-title {
    font-size: 11px;
    font-weight: 900;
    color: #444;
    letter-spacing: 3px;
    margin-bottom: 25px
}

.edit-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.input-container-glass {
    margin-bottom: 25px
}

.input-container-glass label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 1px
}

.char-counter,
.input-container-glass small {
    font-size: 9px;
    color: #444;
    margin-top: 5px
}

.glass-input-file,
.glass-input-text {
    background: rgba(255, 255, 255, .03) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 10px;
    padding: 12px 15px !important;
    width: 100%;
    color: #fff;
    transition: .3s
}

.glass-input-text:focus {
    border-color: #a855f7 !important;
    background: rgba(168, 85, 247, .05) !important;
    outline: 0
}

.title-chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px
}

.chip-glass {
    padding: 6px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700
}

.chip-glass:hover {
    background: rgba(168, 85, 247, .2);
    color: #fff;
    border-color: #a855f7
}

.btn-save-elite {
    background: #a855f7;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(168, 85, 247, .2)
}

.btn-save-elite:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(168, 85, 247, .4);
    filter: brightness(1.1)
}

@keyframes profileAppear {
    from {
        opacity: 0;
        transform: scale(.98) translateY(10px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@media (max-width:900px) {
    .edit-form-grid {
        grid-template-columns: 1fr
    }

    .profile-stats-grid-elite {
        grid-template-columns: 1fr 1fr
    }
}