@font-face {
    font-family: "Nunito Sans";
    src: url("/assets/fonts/NunitoSans/NunitoSans-Italic-VariableFont_YTLC\,opsz\,wdth\,wght.ttf") format("truetype"),
        url("/assets/fonts/NunitoSans/NunitoSans-VariableFont_YTLC\,opsz\,wdth\,wght.ttf") format("truetype");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #FFFFF0;
    min-height: 100vh;
}

/* =========== LAYOUT PRINCIPAL =========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 65px;
}

.content-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

/* =========== MENÚ LATERAL =========== */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.user-menu-card {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid #2A2A2A;
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.user-menu-card:hover {
    transform: translateY(-2px);
}

.user-menu-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        rgba(178, 34, 34, 0.3), 
        rgba(255, 140, 0, 0.2), 
        rgba(178, 34, 34, 0.3));
    border-radius: 21px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.user-menu-card:hover::before {
    opacity: 0.08;
}

.user-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2A2A2A;
}

.user-name {
    color: #FFFFF0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.user-email {
    color: #828282;
    font-size: 0.9rem;
}

.user-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #FFFFF0;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-item i {
    font-size: 1.3rem;
    width: 20px;
    text-align: center;
}

.nav-item:hover {
    background: rgba(42, 42, 42, 0.6);
    border-color: #2A2A2A;
    transform: translateX(5px);
}

.nav-item.active {
    background: rgba(178, 34, 34, 0.15);
    border-color: rgba(178, 34, 34, 0.5);
    color: rgba(255, 140, 0, 0.8);
}

.nav-item.active:hover {
    background: rgba(178, 34, 34, 0.2);
    border-color: rgba(178, 34, 34, 0.7);
    color: rgba(255, 140, 0, 0.9);
}

.nav-item.logout {
    color: #FF6B6B;
    margin-top: 1rem;
}

.nav-item.logout:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: #FF6B6B;
}

/* =========== MENÚ MÓVIL =========== */
.mobile-menu-toggle {
    display: none;
    position: relative;
    margin-bottom: 1.5rem;
}

.mobile-menu-btn {
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid #2A2A2A;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #FFFFF0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px);
}

.mobile-menu-btn:hover {
    border-color: #B22222;
    background: rgba(42, 42, 42, 0.8);
}

.mobile-user-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid #2A2A2A;
    border-top: none;
    border-radius: 0 0 12px 12px;
    backdrop-filter: blur(20px);
    z-index: 100;
    overflow: hidden;
}

.mobile-user-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-user-nav .nav-item {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #2A2A2A;
}

.mobile-user-nav .nav-item:last-child {
    border-bottom: none;
}

.mobile-user-nav .nav-item:hover {
    transform: none;
    background: rgba(42, 42, 42, 0.8);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========== CONTENIDO PRINCIPAL =========== */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-card {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid #2A2A2A;
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(178, 34, 34, 0.15);
}

.content-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        rgba(178, 34, 34, 0.3), 
        rgba(255, 140, 0, 0.2), 
        rgba(178, 34, 34, 0.3));
    border-radius: 21px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover::before {
    opacity: 0.08;
}

.page-title {
    color: #FFFFF0;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFFFF0 0%, rgba(178, 34, 34, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1.5rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 34, 34, 0.4) 20%, 
        rgba(255, 140, 0, 0.3) 50%, 
        rgba(178, 34, 34, 0.4) 80%, 
        transparent 100%);
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(178, 34, 34, 0.2);
}

.page-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 25%;
    width: 50%;
    height: 7px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 140, 0, 0.15) 50%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(3px);
    z-index: -1;
}

/* =========== FORMULARIO =========== */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group label {
    color: #FFFFF0;
    font-weight: 500;
    font-size: 0.9rem;
}

.input-with-button {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.form-input {
    flex: 1;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid #2A2A2A;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #FFFFF0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: monospace;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-input:read-only {
    background: rgba(35, 35, 35, 0.9);
    color: #828282;
    cursor: not-allowed;
}

.form-input:focus {
    outline: none;
    border-color: rgba(178, 34, 34, 0.7);
    box-shadow: 0 0 0 2px rgba(178, 34, 34, 0.2), 
                inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.edit-btn {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid #2A2A2A;
    border-radius: 8px;
    color: #FFFFF0;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.edit-btn:hover {
    border-color: rgba(178, 34, 34, 0.7);
    color: rgba(255, 140, 0, 0.8);
    transform: scale(1.05);
}

.edit-btn.editing {
    background: rgba(178, 34, 34, 0.9);
    border-color: rgba(178, 34, 34, 0.8);
    color: #FFFFF0;
}

.edit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
}

.edit-btn:active::after {
    width: 80px;
    height: 80px;
    top: -15px;
    left: -15px;
}

/* =========== SECCIÓN SEGURIDAD =========== */
.security-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2A2A2A;
    position: relative;
}

.security-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #2A2A2A 20%, 
        #2A2A2A 80%, 
        transparent 100%);
}

.section-title {
    color: #FFFFF0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.change-password-btn {
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.9) 0%, rgba(139, 0, 0, 0.9) 100%);
    border: none;
    border-radius: 10px;
    color: #FFFFF0;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.change-password-btn:hover {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.8) 0%, rgba(178, 34, 34, 0.8) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(178, 34, 34, 0.3);
}

.change-password-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
}

.change-password-btn:active::after {
    width: 80px;
    height: 80px;
    top: -15px;
    left: -15px;
}

/* =========== SECCIÓN PELIGROSA =========== */
.danger-section {
    text-align: right;
    margin-top: 2rem;
}

.delete-account-btn {
    margin: 0;
    background: transparent;
    border: 2px solid #FF6B6B;
    border-radius: 10px;
    color: #FF6B6B;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.delete-account-btn:hover {
    background: rgba(255, 107, 107, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.delete-account-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
}

.delete-account-btn:active::after {
    width: 80px;
    height: 80px;
    top: -15px;
    left: -15px;
}

/* =========== MODALES =========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid #2A2A2A;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-title {
    color: #FFFFF0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFFFF0 0%, #B22222 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-message {
    color: #828282;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.modal-btn.confirm {
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.9) 0%, rgba(139, 0, 0, 0.9) 100%);
    color: #FFFFF0;
}

.modal-btn.confirm:hover {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.8) 0%, rgba(178, 34, 34, 0.8) 100%);
    transform: translateY(-1px);
}

.modal-btn.cancel {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid #2A2A2A;
    color: #FFFFF0;
}

.modal-btn.cancel:hover {
    background: rgba(42, 42, 42, 1);
    border-color: #B22222;
    transform: translateY(-2px);
}

.modal-success .modal-title {
    background: linear-gradient(135deg, #FFFFF0 0%, rgba(0, 170, 0, 0.8) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-success .modal-btn.confirm {
    background: linear-gradient(135deg, rgba(0, 170, 0, 0.9) 0%, rgba(0, 119, 0, 0.9) 100%);
}

.modal-success .modal-btn.confirm:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.8) 0%, rgba(0, 170, 0, 0.8) 100%);
}

.modal-info .modal-title {
    background: linear-gradient(135deg, #FFFFF0 0%, rgba(0, 136, 255, 0.8) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-info .modal-btn.confirm {
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.9) 0%, rgba(0, 102, 204, 0.9) 100%);
}

.modal-info .modal-btn.confirm:hover {
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.8) 0%, rgba(0, 136, 255, 0.8) 100%);
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .user-menu-card {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .right-column {
        order: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .content-card:hover {
        transform: translateY(-2px);
    }
    
    .page-title {
        font-size: 1.7rem;
    }
    
    .page-title::after {
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(178, 34, 34, 0.3) 20%, 
            rgba(255, 140, 0, 0.2) 50%, 
            rgba(178, 34, 34, 0.3) 80%, 
            transparent 100%);
    }
    
    .page-title::before {
        height: 5px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 140, 0, 0.1) 50%, 
            transparent 100%);
    }
    
    .input-with-button {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
    }
    
    .edit-btn {
        width: 2.5rem;
        height: 2.5rem;
        align-self: center;
    }
    
    .form-input {
        min-height: 2.5rem;
    }
    
    .modal {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
    
    .danger-section {
        text-align: center;
    }
    
    .delete-account-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .input-with-button {
        flex-direction: row;
        gap: 0.8rem;
    }
    
    .edit-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.8rem;
    }
    
    .content-card {
        padding: 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .user-name {
        font-size: 1.3rem;
    }
    
    .nav-item {
        padding: 0.8rem 1rem;
    }
    
    .form-input {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .change-password-btn,
    .delete-account-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .mobile-menu-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .input-with-button {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .edit-btn {
        width: 100%;
        max-width: none;
        height: 2.2rem;
        align-self: stretch;
    }
    
    .modal {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-message {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0.8rem 0.6rem;
    }
    
    .content-card {
        padding: 0.8rem;
    }
    
    .page-title {
        font-size: 1.3rem;
    }
    
    .form-input {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .input-with-button {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .edit-btn {
        width: 100%;
        height: 2.2rem;
    }
    
    .change-password-btn,
    .delete-account-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* =========== FOTO DE PERFIL =========== */
.user-profile-picture {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    cursor: pointer;
}

.profile-image-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #2A2A2A 0%, #1a1a1a 100%);
    border: 3px solid #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.profile-icon {
    font-size: 3rem;
    color: #828282;
    transition: all 0.3s ease;
}

.profile-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.profile-edit-icon {
    font-size: 2rem;
    color: #FFFFF0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.user-profile-picture:hover .profile-image-container {
    border-color: rgba(178, 34, 34, 0.7);
    box-shadow: 0 0 20px rgba(178, 34, 34, 0.3);
}

.user-profile-picture:hover .profile-image {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.user-profile-picture:hover .profile-icon {
    color: rgba(255, 140, 0, 0.8);
    transform: scale(1.1);
}

.user-profile-picture:hover .profile-image-overlay {
    opacity: 1;
}

.user-profile-picture:hover .profile-edit-icon {
    transform: scale(1);
}

.profile-image-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
    pointer-events: none;
}

.user-profile-picture.active .profile-image-container::after {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
}

.profile-image.loading {
    opacity: 0.5;
}

.profile-image.error {
    filter: grayscale(1);
}

/* =========== FOTO DE PERFIL RESPONSIVE =========== */
.mobile-profile-section {
    display: none;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2A2A2A;
}

.mobile-profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.mobile-profile-picture {
    width: 180px;
    height: 180px;
    cursor: pointer;
}

.mobile-user-details {
    text-align: center;
}

.mobile-user-name {
    color: #FFFFF0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.mobile-user-email {
    color: #828282;
    font-size: 1rem;
    display: block;
}

@media (min-width: 1025px) {
    .mobile-profile-section {
        display: none;
    }
}

@media (max-width: 1024px) {
    .mobile-profile-section {
        display: block;
        padding: 2rem 0;
    }
    
    .mobile-user-email {
        display: none;
    }
    
    .user-info {
        display: none;
    }
    
    .mobile-menu-toggle {
        margin-top: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .mobile-profile-picture {
        width: 200px;
        height: 200px;
    }
    
    .mobile-user-name {
        font-size: 1.7rem;
    }
    
    .mobile-profile-picture .profile-icon {
        font-size: 4.5rem;
    }
    
    .mobile-profile-picture .profile-edit-icon {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-profile-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .mobile-profile-info {
        gap: 1rem;
    }
    
    .mobile-profile-picture {
        width: 180px;
        height: 180px;
    }
    
    .mobile-profile-picture .profile-icon {
        font-size: 4rem;
    }
    
    .mobile-profile-picture .profile-edit-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-profile-picture {
        width: 160px;
        height: 160px;
    }
    
    .mobile-user-name {
        font-size: 1.4rem;
    }
    
    .mobile-profile-picture .profile-icon {
        font-size: 3.5rem;
    }
    
    .mobile-profile-picture .profile-edit-icon {
        font-size: 2.2rem;
    }
}

@media (max-width: 360px) {
    .mobile-profile-picture {
        width: 140px;
        height: 140px;
    }
    
    .mobile-user-name {
        font-size: 1.3rem;
    }
    
    .mobile-profile-picture .profile-icon {
        font-size: 3rem;
    }
    
    .mobile-profile-picture .profile-edit-icon {
        font-size: 2rem;
    }
}

.mobile-profile-picture .profile-image-container {
    border-width: 4px;
}

.mobile-profile-picture:hover .profile-image-container {
    box-shadow: 0 0 25px rgba(178, 34, 34, 0.4);
}

.mobile-profile-picture.active .profile-image-container::after {
    width: 180px;
    height: 180px;
    top: -90px;
    left: -90px;
}

@media (max-width: 768px) {
    .mobile-profile-picture.active .profile-image-container::after {
        width: 180px;
        height: 180px;
        top: -90px;
        left: -90px;
    }
}

@media (max-width: 480px) {
    .mobile-profile-picture.active .profile-image-container::after {
        width: 160px;
        height: 160px;
        top: -80px;
        left: -80px;
    }
}

@media (max-width: 360px) {
    .mobile-profile-picture.active .profile-image-container::after {
        width: 140px;
        height: 140px;
        top: -70px;
        left: -70px;
    }
}

@keyframes particleMove {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-15px) scale(0);
        opacity: 0;
    }
}

