/* Colors and Gradients */
:root {
    /* Primary Colors */
    --color-primary: #4361ee;
    --color-secondary: #7209b7;
    --color-dark: #1a1b25;
    --color-white: #ffffff;
    --color-black: #000000;

    /* Text Colors */
    --text-primary: #2b2d42;
    --text-secondary: #4f5d75;
    --text-light: #8d99ae;

    /* Background Colors */
    --bg-primary: #f8f9fd;
    --bg-secondary: #f1f4ff;
    --bg-white: #ffffff;
    --bg-light: #e9ecff;
    --bg-header: rgba(26, 27, 37, 0.97);
    --bg-header-scrolled: rgba(26, 27, 37, 0.99);

    /* Border Colors */
    --border-light: #e2e8ff;
    --border-input: #d4deff;

    /* Gradients */
    --gradient-primary: linear-gradient(90deg, #4361ee, #7209b7);
    --gradient-header: linear-gradient(90deg, transparent, #4361ee, #7209b7, transparent);
    --gradient-section: linear-gradient(to bottom, var(--color-white), var(--bg-secondary));
    --gradient-about: linear-gradient(135deg, #f1f4ff, var(--color-white));
    --gradient-skills: linear-gradient(145deg, var(--color-white), #e9ecff);
    --gradient-footer: linear-gradient(135deg, #1a1b25, #4361ee);

    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(67, 97, 238, 0.12);
    --shadow-md: 0 8px 30px rgba(67, 97, 238, 0.15);
    --shadow-lg: 0 15px 35px rgba(67, 97, 238, 0.2);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    scroll-behavior: smooth;
    position: relative;
    background: linear-gradient(135deg, #f8f9fd 0%, #e9ecff 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
.site-header {
    background-color: var(--bg-header);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    padding: 0.8rem 0;
    background-color: var(--bg-header-scrolled);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-logo .site-title {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.site-logo .site-title sup {
    font-size: 0.8rem;
    margin-left: 0.3rem;
    color: var(--color-primary);
}

.site-logo .site-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo .site-title:hover::after {
    transform: translateX(0);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 16px rgba(67,97,238,0.10);
    border-radius: 1.2rem;
    padding: 1.2rem 2rem;
}

.nav-menu .nav-item .nav-link {
    color: var(--color-primary);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 0.7rem;
}

.nav-menu .nav-item .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu .nav-item .nav-link:hover::before {
    width: 100%;
}

.nav-menu .nav-item .nav-link.active {
    color: var(--color-primary);
}

.nav-menu .nav-item .nav-link:hover, .nav-menu .nav-item .nav-link.active {
    background: var(--gradient-primary);
    color: #fff;
}

/* Mobile Menu Button */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle .toggle-bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-white);
    margin: 5px 0;
    transition: all 0.4s ease;
    border-radius: 3px;
}

.nav-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Sections */
.section {
    padding: 7rem 0 6rem 0;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.7);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    backdrop-filter: blur(8px);
    margin-bottom: 2.5rem;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-header);
    opacity: 0.4;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-primary);
    font-size: 2.7rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(67,97,238,0.08);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--gradient-about);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--color-white);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.4);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image:hover {
    transform: scale(1.08) rotate(8deg);
}

.about-description {
    flex: 1;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.tech-badge {
    background: var(--bg-light);
    color: var(--color-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Skills Section */
.skills-section {
    background: var(--gradient-about);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    text-align: center;
    padding: 2.5rem;
}

.skill-card {
    padding: 2rem;
    background: var(--gradient-skills);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(52, 152, 219, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card:hover::before {
    transform: translateX(100%);
}

.skill-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.skill-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card:hover .skill-icon {
    transform: scale(1.25);
    color: #2980b9;
}

.skill-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.skill-level {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Projects Section */
.projects-section {
    background: var(--gradient-about);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--color-white);
    color: var(--text-primary);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    padding: 1.5rem;
}

.project-card {
    background: rgba(255,255,255,0.85);
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px 0 rgba(67, 97, 238, 0.10);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-card:hover {
    box-shadow: 0 16px 48px 0 rgba(67, 97, 238, 0.18);
    transform: translateY(-4px) scale(1.02);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 600;
}

.project-date {
    font-size: 0.95rem;
    color: var(--text-light);
}

.project-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.project-tech-stack {
    margin-bottom: 0.5rem;
}

.tech-badge {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 0.6rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.95rem;
    margin-right: 0.5rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.project-stats {
    display: flex;
    gap: 1.2rem;
    color: var(--color-primary);
    font-size: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.project-links {
    margin-top: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.7rem;
    border-radius: 1.2rem;
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(67,97,238,0.10);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, #4361ee 0%, #7209b7 100%);
    color: #fff;
    border: none;
}

.btn-secondary {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover, .btn-secondary:hover {
    filter: brightness(1.08);
    box-shadow: 0 4px 16px rgba(67,97,238,0.18);
}

/* GitHub Section */
.github-section {
    background: var(--gradient-about);
}

.github-stats {
    max-width: 1000px;
    margin: 0 auto;
}

.contribution-graph {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stats-card {
    background: rgba(255,255,255,0.85);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(67, 97, 238, 0.10);
    transition: box-shadow 0.3s, transform 0.3s;
}

.stats-card:hover {
    box-shadow: 0 16px 48px 0 rgba(67, 97, 238, 0.18);
    transform: translateY(-4px) scale(1.02);
}

.stats-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

/* Contact Section */
.contact-section {
    background: var(--gradient-about);
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-input);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--color-white);
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.contact-links {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
}

/* Footer */
.site-footer {
    background: var(--gradient-footer);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Loading and Error States */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(52, 152, 219, 0.2);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: #e74c3c;
}

.error-text {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.btn-retry {
    background: #e74c3c;
    color: var(--color-white);
    padding: 0.8rem 2rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-header);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .profile-image {
        width: 220px;
        height: 220px;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-filters {
        flex-wrap: wrap;
    }

    .contact-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- Glassmorphism and Modern UI Enhancements --- */
.profile-card, .project-card, .stats-card {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px 0 rgba(67, 97, 238, 0.10);
    border: 1.5px solid rgba(67,97,238,0.08);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s, transform 0.3s;
}
.profile-card:hover, .project-card:hover, .stats-card:hover {
    box-shadow: 0 16px 48px 0 rgba(67, 97, 238, 0.18);
    transform: translateY(-4px) scale(1.02);
}
.btn, .btn-primary, .btn-secondary {
    font-family: inherit;
    font-size: 1.08rem;
    border-radius: 1.2rem;
    padding: 0.7rem 1.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(67,97,238,0.10);
}
.btn-primary {
    background: linear-gradient(90deg, #4361ee 0%, #7209b7 100%);
    color: #fff;
    border: none;
}
.btn-secondary {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-primary:hover, .btn-secondary:hover {
    filter: brightness(1.08);
    box-shadow: 0 4px 16px rgba(67,97,238,0.18);
}
.nav-menu {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 16px rgba(67,97,238,0.10);
    border-radius: 1.2rem;
    padding: 1.2rem 2rem;
}
.nav-menu .nav-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.15rem;
    border-radius: 0.7rem;
    transition: background 0.2s, color 0.2s;
}
.nav-menu .nav-link:hover, .nav-menu .nav-link.active {
    background: var(--gradient-primary);
    color: #fff;
}
/* --- Animations --- */
.section, .profile-card, .project-card, .stats-card {
    animation: fadeInUp 0.7s cubic-bezier(0.4,0,0.2,1);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- Dark Mode Preparation --- */
body.dark-mode {
    background: linear-gradient(135deg, #23243a 0%, #1a1b25 100%);
    color: #f8f9fd;
}
body.dark-mode .section, body.dark-mode .profile-card, body.dark-mode .project-card, body.dark-mode .stats-card {
    background: rgba(26,27,37,0.85);
    color: #f8f9fd;
    border: 1.5px solid rgba(67,97,238,0.18);
}
body.dark-mode .nav-menu {
    background: rgba(26,27,37,0.95);
}
body.dark-mode .btn-primary {
    background: linear-gradient(90deg, #7209b7 0%, #4361ee 100%);
}
body.dark-mode .btn-secondary {
    background: #23243a;
    color: #fff;
    border: 2px solid #4361ee;
}
/* --- GitHub Activity Section Enhancements --- */
.github-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-size: 2.3rem;
    color: #24292f;
}
.github-section .section-title .fab.fa-github {
    font-size: 2.1rem;
    color: #24292f;
    filter: drop-shadow(0 2px 8px #4361ee22);
}
.profile-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.92);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(67, 97, 238, 0.13);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    position: relative;
    overflow: visible;
    min-height: 220px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.7s cubic-bezier(0.4,0,0.2,1);
}
.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 4px 32px #4361ee33, 0 0 0 8px #e9ecff;
    z-index: 2;
    position: relative;
}
.profile-avatar::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 60% 40%, #4361ee33 0%, #7209b722 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.profile-card .profile-meta {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
}
.profile-meta h3 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #24292f;
    margin-bottom: 0.2rem;
}
.profile-meta p {
    color: #4f5d75;
    font-size: 1.13rem;
    margin-bottom: 0.3rem;
}
.profile-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 1.08rem;
    color: #4361ee;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.profile-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.btn.btn-primary {
    font-size: 1.15rem;
    padding: 0.9rem 2.2rem;
    border-radius: 1.5rem;
    background: linear-gradient(90deg, #7209b7 0%, #4361ee 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 4px 16px #7209b733;
    transition: box-shadow 0.2s, filter 0.2s;
}
.btn.btn-primary i.fab.fa-github {
    font-size: 1.3rem;
}
.btn.btn-primary:hover {
    filter: brightness(1.08) drop-shadow(0 2px 8px #7209b7cc);
    box-shadow: 0 8px 32px #4361ee33;
}
@media (max-width: 700px) {
    .profile-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1rem 1.2rem 1rem;
        min-height: unset;
    }
    .profile-avatar {
        width: 110px;
        height: 110px;
    }
    .profile-meta h3 {
        font-size: 1.4rem;
    }
}