/* Profile Page Styles */
.profile-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.profile-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 68, 99, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 68, 99, 0.03) 0%, transparent 50%);
    animation: gradientMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5%, -5%); }
}

/* Toast */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #1a1a1a;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast.hidden {
    display: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 24px;
}

.toast.success .toast-icon {
    color: #4CAF50;
}

.toast.error .toast-icon {
    color: #FF4463;
}

.toast-message {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.profile-card {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 返回按钮 */
.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin-bottom: 24px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 用户信息头部 */
.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 20px;
}

.avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF8A50 0%, #FF4463 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

.user-info {
    flex: 1;
}

.user-email {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    word-break: break-all;
}

.member-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.member-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    font-weight: 600;
}

.member-badge i {
    font-size: 10px;
}

/* 订阅状态卡片 */
.subscription-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.subscription-header h3 {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
}

/* 未订阅状态 */
.no-subscription {
    text-align: center;
    padding: 20px 0;
}

.no-sub-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(255, 68, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FF4463;
}

.no-subscription p {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px 0;
}

.upgrade-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(90deg, #FF8A50 0%, #FF4463 100%);
    border-radius: 28px;
    color: #ffffff;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 68, 99, 0.4);
}

/* 已订阅状态 */
.active-subscription {
    padding: 0;
}

.plan-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.plan-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.plan-name i {
    color: #FFD700;
}

.plan-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-status.active {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.plan-status.cancelled {
    background: rgba(255, 68, 99, 0.15);
    color: #FF4463;
    border: 1px solid rgba(255, 68, 99, 0.3);
}

.plan-status.paused {
    background: rgba(255, 152, 0, 0.15);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.subscription-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.detail-value {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.subscription-actions {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pause-btn,
.resume-btn,
.resubscribe-btn,
.cancel-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pause-btn {
    background: transparent;
    border: 1px solid rgba(255, 152, 0, 0.5);
    color: #FF9800;
}

.pause-btn:hover {
    background: rgba(255, 152, 0, 0.1);
    border-color: #FF9800;
}

.resume-btn {
    background: transparent;
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4CAF50;
}

.resume-btn:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
}

.resubscribe-btn {
    background: transparent;
    border: 1px solid rgba(255, 138, 80, 0.5);
    color: #FF8A50;
}

.resubscribe-btn:hover {
    background: rgba(255, 138, 80, 0.1);
    border-color: #FF8A50;
}

.cancel-btn {
    background: transparent;
    border: 1px solid rgba(255, 68, 99, 0.5);
    color: #FF4463;
}

.cancel-btn:hover {
    background: rgba(255, 68, 99, 0.1);
    border-color: #FF4463;
}

/* 账户设置 */
.account-section {
    margin-top: 20px;
}

.section-title {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.account-menu {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #ffffff;
    text-decoration: none;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-item i:first-child {
    width: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.menu-item span {
    flex: 1;
}

.menu-item i:last-child {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.logout-item {
    color: #FF4463;
}

.logout-item i:first-child {
    color: #FF4463;
}

/* 弹窗 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: #222;
    border-radius: 20px;
    padding: 32px 24px;
    max-width: 360px;
    width: 100%;
    text-align: center;
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FF9800;
}

.modal-icon.warning {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.modal-icon.danger {
    background: rgba(255, 68, 99, 0.1);
    color: #FF4463;
}

.modal-icon.info {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.modal-icon.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.modal-content h3 {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.modal-content p {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.modal-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.modal-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-btn.primary {
    background: #FF4463;
    color: #ffffff;
}

.modal-btn.primary:hover {
    background: #e63950;
}

.modal-btn.primary.danger {
    background: #FF4463;
}

.modal-btn.primary.warning {
    background: #FF9800;
}

.modal-btn.primary.warning:hover {
    background: #F57C00;
}

.modal-btn.primary.success {
    background: #4CAF50;
}

.modal-btn.primary.success:hover {
    background: #43A047;
}

/* 修改密码弹窗 */
.password-modal {
    text-align: left;
    max-width: 400px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.password-form .form-group {
    margin-bottom: 20px;
}

.password-form label {
    display: block;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.password-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-form input {
    width: 100%;
    padding: 14px 48px 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.password-form input:focus {
    outline: none;
    border-color: #FF4463;
    background: rgba(255, 68, 99, 0.05);
}

.password-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.password-form .toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.password-form .toggle-password:hover {
    color: rgba(255, 255, 255, 0.8);
}

.password-form .form-error {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 68, 99, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    color: #FF4463;
    font-size: 13px;
}

.password-form .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #FF8A50 0%, #FF4463 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.password-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 68, 99, 0.4);
}

.password-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.password-form .btn-text,
.password-form .btn-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 隐藏类 */
.hidden {
    display: none !important;
}

/* 响应式 - 平板 (iPad) */
@media (min-width: 768px) {
    .profile-container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 24px;
        background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
    }

    .profile-card {
        width: 100%;
        max-width: 720px;
        background: #1a1a1a;
        border-radius: 24px;
        padding: 32px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .back-btn {
        margin-bottom: 28px;
    }

    .profile-header {
        padding: 28px;
        gap: 20px;
    }

    .avatar {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .user-email {
        font-size: 20px;
    }

    .member-badge {
        font-size: 13px;
        padding: 6px 14px;
    }

    .subscription-card {
        padding: 28px;
    }

    .subscription-header h3 {
        font-size: 18px;
    }

    .plan-name {
        font-size: 20px;
    }

    .detail-item {
        padding: 14px 0;
    }

    .detail-label,
    .detail-value {
        font-size: 15px;
    }

    .upgrade-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .pause-btn,
    .resume-btn,
    .resubscribe-btn,
    .cancel-btn {
        padding: 16px;
        font-size: 15px;
    }

    .section-title {
        font-size: 18px;
    }

    .menu-item {
        padding: 18px 24px;
        font-size: 16px;
    }

    /* 弹窗平板适配 */
    .modal-content {
        padding: 36px 28px;
    }

    .password-modal {
        max-width: 440px;
    }
}

/* 响应式 - PC 双栏布局（与订阅页面风格一致） */
@media (min-width: 880px) {
    .profile-container {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 40px 20px;
        background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
    }

    .profile-card {
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 900px;
        background: #1a1a1a;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.1);
        padding: 0;
        position: relative;
    }

    /* 返回按钮 - 与订阅页面一致 */
    .back-btn {
        position: absolute;
        top: 20px;
        left: 20px;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        color: #ffffff;
        font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .back-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .back-btn i {
        font-size: 14px;
    }

    /* 左侧栏 - 用户信息 */
    .profile-header {
        width: 320px;
        min-width: 320px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 72px 32px 48px;
        gap: 0;
        background: linear-gradient(180deg, rgba(255, 68, 99, 0.08) 0%, transparent 50%),
                    linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
        border-radius: 0;
        margin: 0;
        position: relative;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .profile-header::before,
    .profile-header::after {
        display: none;
    }

    .avatar {
        width: 100px;
        height: 100px;
        font-size: 44px;
        margin-bottom: 20px;
        box-shadow: 0 8px 32px rgba(255, 68, 99, 0.3);
        border: 3px solid rgba(255, 255, 255, 0.1);
    }

    .user-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .user-email {
        font-size: 16px;
        margin-bottom: 12px;
        max-width: 260px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .member-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .member-badge.premium {
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    }

    /* 右侧内容区包装器 */
    .profile-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        background: #222;
        min-height: 100%;
    }

    /* 订阅状态卡片 */
    .subscription-card {
        padding: 72px 32px 32px;
        background: transparent;
        border-radius: 0;
        margin: 0;
    }

    .subscription-header h3 {
        font-size: 18px;
        text-transform: none;
        letter-spacing: 0;
        color: #ffffff;
        margin-bottom: 24px;
        font-weight: 600;
    }

    .no-subscription {
        padding: 24px 0;
    }

    .no-sub-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
        background: rgba(255, 68, 99, 0.1);
        margin-bottom: 16px;
    }

    .no-subscription p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 24px;
    }

    .upgrade-btn {
        padding: 16px 40px;
        font-size: 16px;
        border-radius: 28px;
        box-shadow: 0 8px 24px rgba(255, 68, 99, 0.4);
    }

    .upgrade-btn:hover {
        box-shadow: 0 12px 32px rgba(255, 68, 99, 0.5);
    }

    .plan-info {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .plan-name {
        font-size: 20px;
    }

    .plan-name i {
        font-size: 18px;
    }

    .plan-status {
        padding: 5px 14px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .detail-item {
        padding: 14px 0;
    }

    .detail-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
    }

    .detail-value {
        font-size: 14px;
    }

    .pause-btn,
    .resume-btn,
    .resubscribe-btn,
    .cancel-btn {
        padding: 14px;
        font-size: 14px;
        border-radius: 12px;
    }

    /* 账户设置 */
    .account-section {
        margin: 0;
        padding: 0 32px 32px;
        flex: 1;
    }

    body.subscription-hidden .profile-content {
        justify-content: center;
    }

    body.subscription-hidden .account-section {
        flex: 0;
        padding: 32px;
    }

    .section-title {
        font-size: 18px;
        text-transform: none;
        letter-spacing: 0;
        color: #ffffff;
        margin-bottom: 16px;
        font-weight: 600;
    }

    .account-menu {
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 16px;
    }

    .menu-item {
        padding: 18px 20px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .menu-item:last-child {
        border-bottom: none;
    }

    .menu-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .menu-item i:first-child {
        width: 22px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.6);
    }

    .menu-item:hover i:first-child {
        color: #FF4463;
    }

    .menu-item i:last-child {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.3);
    }

    .logout-item {
        color: #FF4463;
    }

    .logout-item i:first-child {
        color: #FF4463;
    }

    /* 弹窗PC适配 */
    .modal-content {
        padding: 40px 32px;
        border-radius: 24px;
        background: #222;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    .password-modal {
        max-width: 420px;
    }

    .modal-content h3 {
        font-size: 20px;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .password-form input {
        padding: 15px 48px 15px 16px;
        font-size: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .password-form .submit-btn {
        padding: 16px;
        font-size: 15px;
        border-radius: 16px;
    }
}

/* 大屏 PC */
@media (min-width: 1200px) {
    .profile-container {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    }

    .profile-card {
        max-width: 960px;
    }

    .profile-header {
        width: 380px;
        min-width: 380px;
        padding: 72px 40px 56px;
    }

    .avatar {
        width: 110px;
        height: 110px;
        font-size: 48px;
    }

    .user-email {
        font-size: 17px;
    }

    .subscription-card {
        padding: 40px;
    }

    .subscription-header h3 {
        font-size: 20px;
    }

    .account-section {
        padding: 0 40px 40px;
    }

    .section-title {
        font-size: 20px;
    }

    .menu-item {
        padding: 20px 24px;
        font-size: 16px;
    }
}
