.profile-page {
            
            --bg-deep: #020617;
            --card-bg: #0F172A;
            --input-bg: #111827;
            --primary: #22D3EE;
            --primary-hover: #38BDF8;
            --success: #22C55E;
            --warning: #F59E0B;
            --danger: #EF4444;
            --border: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 255, 255, 0.16);
            --title: #F8FAFC;
            --body-text: #CBD5E1;
            --muted: #94A3B8;
            --glass-bg: rgba(15, 23, 42, 0.65);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glow-blue: rgba(34, 211, 238, 0.35);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
            --shadow-glow: 0 0 32px rgba(34, 211, 238, 0.25);
            --radius-xs: 10px;
            --radius-sm: 14px;
            --radius-md: 18px;
            --radius-lg: 24px;
            --radius-xl: 28px;
            --radius-full: 50%;
            --input-height: 62px;
            --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            --font-mono: 'SF Mono', 'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
            --font-sans: 'Inter', 'SF Pro Display', 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
.profile-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
.profile-page {
            font-size: 17px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
.profile-page {
            font-family: var(--font-sans);
            background-color: var(--bg-deep);
            color: var(--body-text);
            min-height: 100vh;
            display: flex;
            line-height: 1.5;
            letter-spacing: -0.01em;
            overflow-x: hidden;
        }
.profile-page::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 200px 200px;
        }
.profile-sidebar-placeholder {
            width: 280px;
            min-width: 280px;
            height: 100vh;
            position: sticky;
            top: 0;
            left: 0;
            z-index: 10;
            background: rgba(2, 6, 23, 0.6);
            border-right: 1px solid var(--border);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
.profile-page {
            flex: 1;
            width: calc(100% - 280px);
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 56px;
            position: relative;
            z-index: 1;
            min-height: 100vh;
        }
.profile-page .card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 36px 44px;
            margin-bottom: 24px;
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(18px);
            animation: cardFadeIn 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
        }
.profile-page .card:hover {
            border-color: var(--border-hover);
            box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.04);
            transform: translateY(-2px);
        }
@keyframes cardFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.profile-page .card-hero {
            background: var(--glass-bg);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl);
            height: 210px;
            display: flex;
            align-items: center;
            padding: 28px 40px;
            gap: 32px;
            position: relative;
            overflow: visible;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }
.profile-page .card-hero::after {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 340px;
            height: 340px;
            background: radial-gradient(circle, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
.profile-page .avatar-wrapper {
            position: relative;
            flex-shrink: 0;
            cursor: pointer;
            z-index: 2;
        }
.profile-page .avatar-wrapper.is-uploading {
	pointer-events: none;
	opacity: 0.72;
}
.profile-page .avatar-ring {
            width: 116px;
            height: 116px;
            border-radius: var(--radius-full);
            background: conic-gradient(from 180deg, #22D3EE, #3B82F6, #8B5CF6, #22D3EE);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: ringPulse 4s ease-in-out infinite;
            position: relative;
        }
@keyframes ringPulse {
            0%,
            100% {
                filter: brightness(1);
            }
            50% {
                filter: brightness(1.2);
            }
        }
.profile-page .avatar-inner {
            width: 108px;
            height: 108px;
            border-radius: var(--radius-full);
            background: #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            font-weight: 700;
            color: #F8FAFC;
            letter-spacing: -0.02em;
            overflow: hidden;
            position: relative;
            border: 3px solid #0F172A;
        }
.profile-page .avatar-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
.profile-page .avatar-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            border-radius: var(--radius-full);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition-smooth);
            pointer-events: none;
            gap: 6px;
        }
.profile-page .avatar-wrapper:hover .avatar-overlay {
            opacity: 1;
        }
.profile-page .avatar-overlay svg {
            width: 24px;
            height: 24px;
            color: #fff;
        }
.profile-page .avatar-overlay span {
            font-size: 12px;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
.profile-page .avatar-upload-hint {
            font-size: 12px;
            color: var(--muted);
            text-align: center;
            margin-top: 8px;
            letter-spacing: 0.02em;
            z-index: 2;
            position: relative;
        }
.profile-page .hero-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 2;
            min-width: 0;
        }
.profile-page .hero-nickname {
            font-size: 26px;
            font-weight: 700;
            color: var(--title);
            letter-spacing: -0.03em;
            line-height: 1.2;
        }
.profile-page .hero-email {
            font-size: 15px;
            color: var(--muted);
            letter-spacing: 0.01em;
        }
.profile-page .hero-meta {
            display: flex;
            gap: 20px;
            font-size: 13px;
            color: var(--muted);
            letter-spacing: 0.02em;
            flex-wrap: wrap;
            margin-top: 4px;
        }
.profile-page .hero-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
.profile-page .hero-meta .meta-label {
            color: #64748B;
            font-weight: 500;
        }
.profile-page .hero-meta .meta-value {
            color: var(--body-text);
            font-weight: 500;
            font-family: var(--font-mono);
        }
.profile-page .security-score-area {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            z-index: 2;
            position: relative;
        }
.profile-page .score-ring-container {
            position: relative;
            width: 96px;
            height: 96px;
        }
.profile-page .score-ring-container svg {
            width: 96px;
            height: 96px;
            transform: rotate(-90deg);
        }
.profile-page .score-ring-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.08);
            stroke-width: 6;
        }
.profile-page .score-ring-fg {
            fill: none;
            stroke: #22D3EE;
            stroke-width: 6;
            stroke-linecap: round;
            transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
.profile-page .score-text {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
.profile-page .score-number {
            font-size: 30px;
            color: var(--title);
            letter-spacing: -0.03em;
            line-height: 1;
        }
.profile-page .score-label {
            font-size: 11px;
            color: #22D3EE;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 700;
        }
.profile-page .completion-area {
            flex-shrink: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 180px;
        }
.profile-page .completion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            letter-spacing: 0.03em;
        }
.profile-page .completion-title {
            color: var(--muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
.profile-page .completion-pct {
            color: #22D3EE;
            font-weight: 700;
            font-family: var(--font-mono);
            font-size: 13px;
        }
.profile-page .completion-bar {
            height: 7px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.06);
            overflow: hidden;
            position: relative;
        }
.profile-page .completion-bar-fill {
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(90deg, #22D3EE, #3B82F6);
            width: 80%;
            transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
.profile-page .completion-items {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 11px;
            letter-spacing: 0.02em;
        }
.profile-page .completion-item {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 500;
            white-space: nowrap;
        }
.profile-page .completion-item.done {
            background: rgba(34, 197, 94, 0.12);
            color: #22C55E;
        }
.profile-page .completion-item.pending {
            background: rgba(239, 68, 68, 0.1);
            color: #EF4444;
        }
.profile-page .completion-item svg {
            width: 12px;
            height: 12px;
            flex-shrink: 0;
        }
.profile-page .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 10px;
        }
.profile-page .section-header.card {
            background: transparent !important;
            border: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            padding: 0 0 14px 0 !important;
            margin: 0 0 12px 0 !important;
            overflow: visible !important;
            opacity: 1 !important;
            transform: none !important;
            animation: none !important;
            transition: none !important;
        }
.profile-page .section-header.card:hover {
            border-color: transparent !important;
            box-shadow: none !important;
            transform: none !important;
        }
.profile-page .section-title {
            font-size: 31px;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: 0;
            line-height: 1.2;
        }
.profile-page .section-subtitle {
            font-size: 16px;
            color: #CBD5E1;
            letter-spacing: 0;
            margin-top: 4px;
        }
.profile-page .last-updated {
            font-size: 13px;
            color: #CBD5E1;
            letter-spacing: 0;
            text-align: right;
            font-family: var(--font-sans);
            line-height: 1.55;
            white-space: nowrap;
        }
.profile-page .last-updated strong {
            color: #FFFFFF;
            font-weight: 700;
        }
.profile-page .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
.profile-page .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
.profile-page .form-group.full-width {
            grid-column: 1 / -1;
        }
.profile-page .form-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--body-text);
            letter-spacing: 0.02em;
            display: flex;
            align-items: center;
            gap: 6px;
        }
.profile-page .form-label .required-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #EF4444;
            flex-shrink: 0;
        }
.profile-page .form-input,
.profile-page .form-select {
            height: var(--input-height);
            border-radius: var(--radius-md);
            background: var(--input-bg);
            border: 1.5px solid rgba(255, 255, 255, 0.1);
            color: var(--title);
            font-size: 16px;
            padding: 0 20px;
            font-family: var(--font-sans);
            letter-spacing: 0.01em;
            transition: all var(--transition-smooth);
            outline: none;
            width: 100%;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
        }
.profile-page .form-input::placeholder {
            color: #64748B;
            letter-spacing: 0.02em;
        }
.profile-page .form-input:focus,
.profile-page .form-select:focus {
            border-color: #22D3EE;
            box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15), 0 0 24px rgba(34, 211, 238, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.4);
            background-color: #151e33;
        }
.profile-page .form-input.is-readonly,
.profile-page .form-input[readonly] {
            cursor: not-allowed;
            color: rgba(226, 232, 240, 0.72);
            background: rgba(15, 23, 42, 0.62);
        }
.profile-page .form-input.is-readonly:focus,
.profile-page .form-input[readonly]:focus {
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
            background: rgba(15, 23, 42, 0.62);
        }
.profile-page .form-select {
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            padding-right: 48px;
        }
.profile-page .form-select:focus,
.profile-page .form-select.is-open {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'%3E%3C/polyline%3E%3C/svg%3E");
        }
.profile-page .form-select option {
            background: #1e293b;
            color: #F8FAFC;
        }
.profile-page .password-input-wrap {
            position: relative;
        }
.profile-page .password-input-wrap .form-input {
            padding-right: 56px;
        }
.profile-page .eye-btn {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            border-radius: var(--radius-xs);
            color: #64748B;
            transition: color var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            outline: none;
        }
.profile-page .eye-btn:hover {
            color: #CBD5E1;
        }
.profile-page .password-strength-section {
            margin-top: 10px;
        }
.profile-page .strength-header {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            letter-spacing: 0.02em;
            margin-bottom: 8px;
        }
.profile-page .strength-label {
            color: var(--muted);
            font-weight: 500;
        }
.profile-page .strength-value {
            font-weight: 700;
            font-family: var(--font-mono);
            transition: color var(--transition-smooth);
        }
.profile-page .strength-bar {
            height: 7px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }
.profile-page .strength-bar-fill {
            height: 100%;
            border-radius: 4px;
            transition: width var(--transition-smooth), background var(--transition-smooth);
            width: 100%;
            background: #22C55E;
        }
.profile-page .requirements-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
            font-size: 13px;
            letter-spacing: 0.02em;
        }
.profile-page .requirement {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
        }
.profile-page .requirement.met {
            color: #22C55E;
        }
.profile-page .requirement.unmet {
            color: #64748B;
        }
.profile-page .requirement svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
.profile-page .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.02em;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--transition-spring);
            border: none;
            outline: none;
            font-family: var(--font-sans);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            user-select: none;
        }
.profile-page .btn:active {
            transform: scale(0.98);
        }
.profile-page .btn:disabled {
	cursor: not-allowed;
	opacity: 0.62;
	transform: none;
}
.profile-page .btn-primary {
            background: linear-gradient(135deg, #22D3EE 0%, #3B82F6 100%);
            color: #020617;
            box-shadow: 0 6px 20px rgba(34, 211, 238, 0.3);
            font-weight: 700;
        }
.profile-page .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 10px 32px rgba(34, 211, 238, 0.5);
        }
.profile-page .btn-ghost {
            background: transparent;
            color: var(--body-text);
            border: 1.5px solid rgba(255, 255, 255, 0.18);
        }
.profile-page .btn-ghost:hover {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-2px) scale(1.02);
        }
.profile-page .btn-sm {
            padding: 10px 20px;
            font-size: 13px;
            border-radius: var(--radius-xs);
            letter-spacing: 0.03em;
        }
.profile-page .btn-outline-primary {
            background: transparent;
            border: 1.5px solid #22D3EE;
            color: #22D3EE;
        }
.profile-page .btn-outline-primary:hover {
            background: rgba(34, 211, 238, 0.1);
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 20px rgba(34, 211, 238, 0.25);
        }
.profile-page .form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 14px;
            margin-top: 28px;
        }
.profile-page .security-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
.profile-page .security-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all var(--transition-smooth);
            cursor: default;
            position: relative;
            overflow: hidden;
        }
.profile-page .security-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
.profile-page .security-card-icon {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-xs);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
.profile-page .security-card-icon.email {
            background: rgba(34, 197, 94, 0.15);
            color: #22C55E;
        }
.profile-page .security-card-icon.password {
            background: rgba(34, 211, 238, 0.15);
            color: #22D3EE;
        }
.profile-page .security-card-icon.twofa {
            background: rgba(245, 158, 11, 0.15);
            color: #F59E0B;
        }
.profile-page .security-card-icon.login {
            background: rgba(139, 92, 246, 0.15);
            color: #8B5CF6;
        }
.profile-page .security-card-top {
            display: flex;
            align-items: center;
            gap: 14px;
        }
.profile-page .security-card-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--title);
            letter-spacing: -0.01em;
            line-height: 1.3;
        }
.profile-page .security-card-info .status {
            font-size: 13px;
            letter-spacing: 0.02em;
            font-weight: 600;
        }
.profile-page .status-verified {
            color: #22C55E;
        }
.profile-page .status-updated {
            color: #22D3EE;
        }
.profile-page .status-disabled {
            color: #F59E0B;
        }
.profile-page .status-active {
            color: #8B5CF6;
        }
.profile-page .security-card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--muted);
            letter-spacing: 0.02em;
            margin-top: auto;
        }
.profile-page .timeline {
            position: relative;
            padding-left: 32px;
        }
.profile-page .timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 6px;
            bottom: 6px;
            width: 2px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 1px;
        }
.profile-page .timeline-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 16px 18px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
            position: relative;
            cursor: default;
            margin-bottom: 4px;
        }
.profile-page .timeline-item:hover {
            background: rgba(255, 255, 255, 0.03);
        }
.profile-page .timeline-dot {
            position: absolute;
            left: -27px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #1e293b;
            border: 2.5px solid rgba(255, 255, 255, 0.25);
            flex-shrink: 0;
            z-index: 2;
            transition: all var(--transition-smooth);
        }
.profile-page .timeline-item:hover .timeline-dot {
            border-color: #22D3EE;
            background: #22D3EE;
            box-shadow: 0 0 16px rgba(34, 211, 238, 0.6);
        }
.profile-page .timeline-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 0;
        }
.profile-page .timeline-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--title);
            letter-spacing: -0.01em;
        }
.profile-page .timeline-detail {
            font-size: 13px;
            color: var(--muted);
            letter-spacing: 0.02em;
        }
.profile-page .timeline-time {
            font-size: 13px;
            color: var(--muted);
            letter-spacing: 0.03em;
            font-family: var(--font-mono);
            white-space: nowrap;
            flex-shrink: 0;
        }
.profile-page .toast-container {
            position: fixed;
            bottom: 36px;
            right: 36px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 12px;
            pointer-events: none;
        }
.profile-page .toast {
            background: #0F172A;
            border: 1px solid rgba(34, 197, 94, 0.5);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(34, 197, 94, 0.15);
            pointer-events: auto;
            animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            min-width: 320px;
            max-width: 460px;
        }
.profile-page .toast.removing {
            animation: toastOut 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
@keyframes toastIn {
            from {
                opacity: 0;
                transform: translateX(80px) translateY(20px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1);
            }
        }
@keyframes toastOut {
            from {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1);
            }
            to {
                opacity: 0;
                transform: translateX(60px) translateY(10px) scale(0.85);
            }
        }
.profile-page .toast-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            color: #22C55E;
        }
.profile-page .toast-text {
            font-size: 15px;
            font-weight: 600;
            color: #F8FAFC;
            letter-spacing: 0.01em;
        }
.profile-page .toast-close {
            margin-left: auto;
            background: none;
            border: none;
            color: #64748B;
            cursor: pointer;
            padding: 6px;
            border-radius: 6px;
            transition: color var(--transition-fast);
            flex-shrink: 0;
        }
.profile-page .toast-close:hover {
            color: #CBD5E1;
        }
.profile-page .hidden-file-input {
            display: none;
        }
@media (max-width: 1400px) {
.profile-page {
                max-width: 100%;
                padding: 40px 40px;
            }

        
}
@media (max-width: 1100px) {
.profile-page .card-hero {
                height: auto;
                flex-wrap: wrap;
                gap: 24px;
                padding: 28px 32px;
            }
.profile-page .security-score-area {
                order: 1;
            }
.profile-page .completion-area {
                order: 2;
                min-width: 100%;
            }
.profile-page .form-grid {
                gap: 18px;
            }

        
}
@media (max-width: 900px) {
.profile-sidebar-placeholder {
                width: 0;
                min-width: 0;
                border-right: none;
                overflow: hidden;
            }
.profile-page {
                width: 100%;
                padding: 28px 20px;
                max-width: 100%;
            }
.profile-page .card-hero {
                flex-direction: column;
                align-items: flex-start;
                height: auto;
                padding: 24px;
                gap: 20px;
            }
.profile-page .hero-info {
                text-align: left;
            }
.profile-page .security-score-area {
                position: relative;
                align-self: flex-start;
            }
.profile-page .completion-area {
                min-width: 100%;
            }
.profile-page .form-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
.profile-page .security-grid {
                grid-template-columns: 1fr;
            }
.profile-page .section-header {
                flex-direction: column;
                gap: 6px;
            }
.profile-page .last-updated {
                text-align: left;
            }
.profile-page .form-actions {
                flex-direction: column-reverse;
                gap: 10px;
            }
.profile-page .form-actions .btn {
                width: 100%;
                justify-content: center;
            }
.profile-page .timeline-time {
                font-size: 11px;
            }
.profile-page .card {
                padding: 24px 20px;
            }

        
}
@media (max-width: 480px) {
.profile-page .card {
                padding: 20px 16px;
                border-radius: var(--radius-lg);
            }
.profile-page .card-hero {
                border-radius: var(--radius-lg);
                padding: 20px;
            }
.profile-page .hero-nickname {
                font-size: 20px;
            }
.profile-page .hero-meta {
                font-size: 12px;
                gap: 10px;
            }
.profile-page .section-title {
                font-size: 24px;
            }
.profile-page .score-ring-container {
                width: 76px;
                height: 76px;
            }
.profile-page .score-ring-container svg {
                width: 76px;
                height: 76px;
            }
.profile-page .score-number {
                font-size: 24px;
            }
.profile-page .avatar-ring {
                width: 88px;
                height: 88px;
            }
.profile-page .avatar-inner {
                width: 80px;
                height: 80px;
                font-size: 28px;
            }
.profile-page .security-card {
                height: auto;
                min-height: 110px;
            }
.profile-page .timeline {
                padding-left: 24px;
            }
.profile-page .timeline-dot {
                left: -19px;
                width: 12px;
                height: 12px;
            }
.profile-page .timeline::before {
                left: 4px;
            }
.profile-page .toast-container {
                right: 14px;
                bottom: 20px;
                left: 14px;
            }
.profile-page .toast {
                min-width: auto;
                max-width: 100%;
            }

        
}

    
.profile-page {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	min-height: auto;
	display: block;
	box-sizing: border-box;
	padding: 28px 36px 40px;
	background: transparent;
	overflow-x: hidden;
}

.profile-page::before {
	content: none;
}

.profile-sidebar-placeholder {
	display: none;
}

.profile-page .card {
	max-width: 100%;
	will-change: transform, opacity;
}

.profile-page .hero-info,
.profile-page .completion-area,
.profile-page .form-group,
.profile-page .form-input,
.profile-page .form-select {
	min-width: 0;
}

@media (max-width: 900px) {
	.profile-page {
		padding: 18px 14px 28px;
	}
}
