/* 
   Ultra Premium Profile Design 
   Designed for Ria Academy
*/
:root {
    --primary: #0ea5e9;
    --primary-glow: rgba(14, 165, 233, 0.4);
    --secondary: #3b82f6;
    --secondary-glow: rgba(59, 130, 246, 0.4);
    --accent: #f59e0b;
    --success: #10b981;
    --purple: #8b5cf6;
    --bg-base: #070b14;
    --bg-surface: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.65);
    --bg-card-hover: rgba(30, 41, 59, 0.8);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(14, 165, 233, 0.4);
    --glow: 0 0 40px rgba(14, 165, 233, 0.2);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --glass-blur: blur(20px);
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    background-image:
        radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.05), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(139, 92, 246, 0.05), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03), transparent 60%);
    background-attachment: fixed;
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

html[dir="ltr"] body, html[dir="ltr"] header { direction: ltr; }
html[dir="rtl"] body, html[dir="rtl"] header { direction: rtl; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

.profile-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.profile-hero {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(7, 11, 20, 0.9));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2.5rem;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.profile-hero-cover {
    height: 180px;
    background: linear-gradient(135deg, #0284c7, #3b82f6, #6d28d9);
    position: relative;
    overflow: hidden;
}

.profile-hero-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15), transparent 60%),
        url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M0 20 L40 20 M20 0 L20 40" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
}

.cover-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0,0,0,0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-hero-content {
    padding: 0 3rem 2.5rem 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: -65px;
    position: relative;
    z-index: 2;
    gap: 2rem;
    flex-wrap: wrap;
}

.profile-user-main {
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
}

.profile-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 35px; /* Squircle */
    border: 4px solid var(--bg-surface);
    background: linear-gradient(135deg, var(--primary), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), var(--glow);
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-avatar-wrapper:hover .profile-avatar {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(14, 165, 233, 0.4);
}

.avatar-camera-btn {
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-surface);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.profile-avatar-wrapper:hover .avatar-camera-btn {
    background: #0284c7;
    transform: scale(1.15) rotate(-10deg);
}

.status-dot-online {
    position: absolute;
    top: 5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--success);
    border: 4px solid var(--bg-surface);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
}

.profile-user-details {
    padding-bottom: 0.5rem;
}

.profile-eyebrow {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.online-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.user-name-title {
    font-size: 2.6rem;
    font-weight: 900;
    margin: 0 0 0.8rem 0;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.5px;
}

.verified-badge {
    color: var(--primary);
    font-size: 1.6rem;
    -webkit-text-fill-color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.5));
}

.user-meta-badges {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.meta-pill.role-pill {
    background: rgba(14, 165, 233, 0.1);
    color: #38bdf8;
    border-color: rgba(14, 165, 233, 0.3);
}

.meta-pill.tier-pill {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.3);
}

.profile-motivation {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    max-width: 500px;
    line-height: 1.5;
}

.profile-hero-side {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 260px;
}

.profile-level-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02), 0 10px 20px rgba(0,0,0,0.2);
}

.level-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 0.8rem;
}

.level-card-top i { color: var(--primary); }
.level-card-top strong { color: #fff; font-size: 1.1rem; }

.level-progress-track {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.level-progress-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--purple));
    border-radius: 10px;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: width 1s ease-out;
}

.level-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.level-card-meta span:first-child { color: var(--accent); font-weight: 800; }

.profile-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-profile-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-family: 'Tajawal', sans-serif;
}

.btn-profile-action.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.btn-profile-action.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(14, 165, 233, 0.5);
}

.btn-profile-action.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-profile-action.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.stat-card:hover::before {
    left: 150%;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 15px rgba(255,255,255,0.05);
}

.stat-icon.icon-blue { background: rgba(14, 165, 233, 0.1); color: var(--primary); text-shadow: 0 0 15px var(--primary-glow); border: 1px solid rgba(14, 165, 233, 0.2); }
.stat-icon.icon-purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); text-shadow: 0 0 15px rgba(139, 92, 246, 0.4); border: 1px solid rgba(139, 92, 246, 0.2); }
.stat-icon.icon-amber { background: rgba(245, 158, 11, 0.1); color: var(--accent); text-shadow: 0 0 15px rgba(245, 158, 11, 0.4); border: 1px solid rgba(245, 158, 11, 0.2); }
.stat-icon.icon-green { background: rgba(16, 185, 129, 0.1); color: var(--success); text-shadow: 0 0 15px rgba(16, 185, 129, 0.4); border: 1px solid rgba(16, 185, 129, 0.2); }

.stat-info .stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.4rem;
    font-family: monospace;
}

.stat-info .stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 700;
}

/* Tabs Navigation */
.profile-tabs-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.5);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 2.5rem;
    overflow-x: auto;
    backdrop-filter: var(--glass-blur);
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    background: var(--bg-card-hover);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
}
.tab-btn.active i {
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.tab-content-panel {
    display: none;
    animation: fadeScaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.tab-content-panel.active {
    display: block;
}

@keyframes fadeScaleUp {
    from { opacity: 0; transform: scale(0.98) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Grid & Cards */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.card-box {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.card-box:hover {
    border-color: rgba(255,255,255,0.15);
}

.card-header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.card-title-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.card-title-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(59, 130, 246, 0.15));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.card-title-group h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.card-title-group p {
    margin: 0.3rem 0 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Info Pairs */
.info-grid-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-pair {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-pair:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255,255,255,0.1);
    transform: translateX(-5px);
}

.info-pair-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-pair-label i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.info-pair-value {
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.1rem;
}

.user-bio-box {
    background: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Timeline & Badges */
.activity-timeline { display: flex; flex-direction: column; gap: 1.5rem; }
.activity-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.activity-icon-badge {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(14, 165, 233, 0.3);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.1);
}
.activity-content h5 { margin: 0 0 0.4rem 0; font-size: 1.1rem; font-weight: 800; }
.activity-content p { margin: 0 0 0.3rem 0; font-size: 0.95rem; color: var(--text-muted); }
.activity-time { font-size: 0.85rem; color: #64748b; font-weight: 600;}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.2rem;
}
.badge-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}
.badge-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.15);
}
.badge-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3)); }
.badge-title { font-size: 1rem; font-weight: 800; color: #f1f5f9; }

/* Forms */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.form-group-full { grid-column: span 2; }
.form-group { display: flex; flex-direction: column; gap: 0.6rem; }
.form-label { font-size: 1rem; font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 0.6rem; }
.form-control {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
    background: rgba(15, 23, 42, 0.9);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* Toggles */
.toggle-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}
.toggle-row:hover { background: rgba(30, 41, 59, 0.6); }
.toggle-info h6 { margin: 0 0 0.3rem 0; font-size: 1.1rem; font-weight: 800; color: #fff; }
.toggle-info p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

.switch-input { position: relative; display: inline-block; width: 56px; height: 30px; }
.switch-input input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.1); transition: .4s; border-radius: 34px;
}
.slider:before {
    position: absolute; content: ""; height: 22px; width: 22px; left: 4px; bottom: 4px;
    background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--primary); box-shadow: 0 0 15px var(--primary-glow); }
input:checked + .slider:before { transform: translateX(26px); }

/* Courses */
.courses-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.8rem; }
.course-mini-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden; transition: all 0.4s ease;
}
.course-mini-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(14, 165, 233, 0.15);
}
.course-card-body { padding: 1.6rem; }
.course-card-tag { font-size: 0.85rem; font-weight: 800; color: var(--primary); text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.course-card-title { font-size: 1.25rem; font-weight: 800; color: #fff; margin: 0 0 1.2rem 0; }
.course-progress-bar { height: 10px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; margin-bottom: 0.8rem; }
.course-progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 10px; box-shadow: 0 0 10px var(--primary-glow); }

/* Overlays & Modals */
.profile-loading-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 11, 20, 0.8); backdrop-filter: blur(10px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.profile-loading-overlay.active { opacity: 1; pointer-events: auto; }
.profile-loading-spinner {
    width: 60px; height: 60px;
    border: 4px solid rgba(255,255,255,0.1); border-top-color: var(--primary);
    border-radius: 50%; animation: spin 1s linear infinite;
    box-shadow: 0 0 20px var(--primary-glow);
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-2col { grid-template-columns: 1fr; }
    .card-box { grid-column: span 12 !important; padding: 2rem; }
    .profile-hero-content {
        flex-direction: column; align-items: center; text-align: center;
        margin-top: -70px; padding: 0 1.5rem 2rem 1.5rem;
    }
    .profile-user-main { flex-direction: column; align-items: center; gap: 1.5rem; }
    .user-meta-badges { justify-content: center; }
    .profile-eyebrow { justify-content: center; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group-full { grid-column: span 1; }
}

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
    .user-name-title { font-size: 2rem; }
    .profile-wrapper { padding: 1.5rem 1rem 4rem 1rem; }
    .profile-avatar { width: 120px; height: 120px; font-size: 2.5rem; border-radius: 30px; }
    .card-box { padding: 1.5rem; }
    .info-pair { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
