/* Enhanced GitHub README design with modern portfolio elements */
:root {
    /* GitHub Primer color system */
    --color-canvas-default: #ffffff;
    --color-canvas-subtle: #f6f8fa;
    --color-canvas-inset: #f6f8fa;
    --color-fg-default: #1f2328;
    --color-fg-muted: #656d76;
    --color-fg-subtle: #6e7781;
    --color-fg-on-emphasis: #ffffff;
    --color-border-default: #d0d7de;
    --color-border-muted: #d8dee4;
    --color-neutral-subtle: #afb8c133;
    --color-accent-fg: #0969da;
    --color-accent-emphasis: #0969da;
    --color-success-fg: #1a7f37;
    --color-danger-fg: #d1242f;
    --color-attention-fg: #9a6700;
    --color-done-fg: #8250df;
    --color-open-issue: #0969da;
    --color-open-issue-hover: #0550ae;

    /* Enhanced color palette */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-subtle: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --warm-accent: #F5E3D9;
    --profile-gradient: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);

    --color-btn-primary-bg: #0969da;
    --color-btn-primary-border: transparent;
    --color-btn-primary-text: #ffffff;
    --color-btn-primary-hover-bg: #0550ae;
    --color-btn-primary-selected-bg: #1a7f37;

    --color-btn-outline-bg: #f6f8fa;
    --color-btn-outline-border: #d0d7de;
    --color-btn-outline-text: #24292f;
    --color-btn-outline-hover-bg: #f3f4f6;
    --color-btn-outline-hover-border: #c7cdd4;
    --color-btn-outline-hover-text: #24292f;
    --color-btn-outline-disabled-text: #959da5;

    --color-btn-text: #24292f;
    --color-btn-hover-bg: #f3f4f6;

    --color-header-bg: rgba(255, 255, 255, 0.9);
    --color-header-text: #24292f;
    --color-header-logo: #ffffff;

    --color-bg-subtle: #f6f8fa;
    --color-bg-tertiary: #f6f8fa;

    --color-btn-danger-bg: #da3633;
    --color-btn-danger-hover-bg: #cb2431;

    /* Enhanced shadows */
    --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 12px rgba(140,149,159,0.15);
    --shadow-large: 0 8px 24px rgba(140,149,159,0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.2);

    /* Typography */
    --font-stack-system: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
    --font-stack-mono: ui-monospace,SFMono-Regular,"SF Mono",Consolas,"Liberation Mono",Menlo,monospace;
    --font-stack-serif: 'Italiana', 'Times New Roman', serif;

    /* Layout */
    --container-width: 1100px;
    --container-width-readme: 900px;
    --header-height: 70px;
    --border-radius-medium: 8px;
    --border-radius-large: 12px;
    --border-radius-xl: 16px;

    --markdown-line-height: 1.7;
    --markdown-font-size: 16px;

    /* Animation */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-stack-system);
    font-size: var(--markdown-font-size);
    line-height: var(--markdown-line-height);
    color: var(--color-fg-default);
    background: var(--profile-gradient);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Add subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(9, 105, 218, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(208, 215, 222, 0.3);
    height: var(--header-height);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-header-text);
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: var(--border-radius-large);
    transition: all var(--transition-base);
    position: relative;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-large);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.nav-logo:hover::before {
    opacity: 0.1;
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-text {
    color: var(--color-fg-default);
    font-family: var(--font-stack-mono);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--color-fg-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius-large);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-fg-default);
    background-color: var(--color-btn-hover-bg);
}

.nav-link:hover::after {
    width: 60%;
}

/* Main Content */
.main {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* Profile Header */
.profile-header {
    padding: 80px 0 60px;
    background: var(--profile-gradient);
    border-bottom: 1px solid var(--color-border-default);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.profile-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.profile-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.avatar {
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.avatar img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.8);
    padding: 3px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(208, 215, 222, 0.2);
    transition: all var(--transition-base);
}

.avatar:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(102, 126, 234, 0.3);
}

.avatar::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.avatar:hover::before {
    opacity: 0.1;
}

.profile-name {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--color-fg-default);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1f2328 0%, #0969da 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-username {
    font-size: 22px;
    color: var(--color-fg-muted);
    margin: 0 0 24px;
    font-family: var(--font-stack-mono);
    font-weight: 500;
}

.profile-bio {
    max-width: 600px;
    margin: 0 auto 24px;
    color: var(--color-fg-muted);
    line-height: 1.6;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.profile-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-fg-muted);
}

.profile-stat svg {
    width: 16px;
    height: 16px;
}

.profile-stat-value {
    color: var(--color-fg-default);
    font-weight: 500;
}

.profile-link {
    color: var(--color-accent-fg);
    text-decoration: none;
}

.profile-link:hover {
    text-decoration: underline;
}

/* README Sections */
.readme-section {
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border-default);
}

.readme-section:last-of-type {
    border-bottom: none;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-fg-default);
    border-bottom: 1px solid var(--color-border-default);
    padding-bottom: 16px;
}

.section-title svg {
    width: 20px;
    height: 20px;
}

.readme-content {
    max-width: var(--container-width-readme);
    margin: 0 auto;
}

/* Markdown Styles */
.readme-content h1,
.readme-content h2,
.readme-content h3 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.readme-content h1 {
    font-size: 2em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid var(--color-border-muted);
}

.readme-content h2 {
    font-size: 1.5em;
    padding-bottom: 0.3em;
}

.readme-content h3 {
    font-size: 1.25em;
}

.readme-content p {
    margin-top: 0;
    margin-bottom: 16px;
}

.readme-content ul,
.readme-content ol {
    padding-left: 32px;
    margin-bottom: 16px;
}

.readme-content li {
    margin-bottom: 4px;
}

.readme-content a {
    color: var(--color-accent-fg);
    text-decoration: none;
}

.readme-content a:hover {
    text-decoration: underline;
}

.readme-content strong {
    font-weight: 600;
}

.readme-content code {
    background-color: var(--color-neutral-subtle);
    padding: 2px 4px;
    border-radius: var(--border-radius-medium);
    font-family: var(--font-stack-mono);
    font-size: 85%;
    color: var(--color-fg-default);
}

/* Skills */
.skill-categories {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.skill-category h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-fg-default);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background-color: var(--color-canvas-subtle);
    color: var(--color-fg-default);
    padding: 4px 8px;
    border-radius: var(--border-radius-medium);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--color-border-default);
    transition: background-color 0.2s;
}

.skill-tag:hover {
    background-color: var(--color-bg-subtle);
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.timeline-item {
    padding: 16px 0;
    border-left: 2px solid var(--color-border-default);
    padding-left: 24px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 20px;
    width: 8px;
    height: 8px;
    background-color: var(--color-canvas-default);
    border: 2px solid var(--color-border-default);
    border-radius: 50%;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.timeline-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--color-fg-default);
}

.timeline-date {
    background-color: var(--color-canvas-subtle);
    color: var(--color-fg-default);
    padding: 4px 8px;
    border-radius: var(--border-radius-medium);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.timeline-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-fg-default);
    margin: 0 0 8px;
}

/* Projects */
.project-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.project-item {
    border: 1px solid var(--color-border-default);
    border-radius: var(--border-radius-large);
    padding: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.project-item:hover {
    border-color: var(--color-border-muted);
    box-shadow: var(--color-shadow-medium);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.project-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.project-header a {
    color: var(--color-accent-fg);
    text-decoration: none;
}

.project-header a:hover {
    text-decoration: underline;
}

.project-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge {
    padding: 3px 6px;
    border-radius: var(--border-radius-medium);
    font-size: 10px;
    font-weight: 500;
    font-family: var(--font-stack-mono);
}

.badge-primary {
    background-color: var(--color-neutral-subtle);
    color: var(--color-fg-default);
    border: 1px solid var(--color-border-default);
}

.badge-secondary {
    background-color: var(--color-neutral-subtle);
    color: var(--color-fg-default);
    border: 1px solid var(--color-border-default);
}

.badge-success {
    background-color: rgba(26, 127, 55, 0.1);
    color: var(--color-success-fg);
    border: 1px solid var(--color-success-fg);
}

.badge-accent {
    background-color: rgba(146, 103, 0, 0.1);
    color: var(--color-attention-fg);
    border: 1px solid var(--color-attention-fg);
}

.badge-info {
    background-color: rgba(9, 105, 218, 0.1);
    color: var(--color-accent-fg);
    border: 1px solid var(--color-accent-fg);
}

/* Contributions */
.contribution-stats {
    background-color: var(--color-canvas-subtle);
    border: 1px solid var(--color-border-default);
    border-radius: var(--border-radius-large);
    padding: 16px;
    margin-bottom: 24px;
    text-align: center;
}

.contribution-graph {
    font-family: var(--font-stack-mono);
    font-size: 14px;
    color: var(--color-fg-muted);
}

/* Contact */
.contact-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-fg-default);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-medium);
    border: 1px solid var(--color-border-default);
    transition: all 0.2s;
}

.contact-link:hover {
    background-color: var(--color-btn-hover-bg);
    border-color: var(--color-border-muted);
    text-decoration: none;
}

.contact-link svg {
    width: 16px;
    height: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Add animation classes */
.profile-content {
    animation: fadeInUp 0.8s ease;
}

.avatar {
    animation: scaleIn 0.8s ease 0.2s both;
}

.profile-name {
    animation: fadeInUp 0.8s ease 0.3s both;
}

.profile-username {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.profile-bio {
    animation: fadeInUp 0.8s ease 0.5s both;
}

.profile-stats {
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Enhanced section animations */
.readme-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.readme-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    .nav-right {
        gap: 8px;
    }

    .nav-link:not(:last-child) {
        display: none;
    }

    .profile-stats {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-item {
        padding-left: 16px;
    }

    .project-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .contact-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-link {
        width: 100%;
    }

    .skill-tags {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .profile-header {
        padding: 24px 0;
    }

    .profile-name {
        font-size: 28px;
    }

    .profile-username {
        font-size: 18px;
    }

    .readme-section {
        padding: 24px 0;
    }

    .section-title {
        font-size: 20px;
    }
}
/* Enhanced Profile Elements */
.profile-badges-top {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.profile-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
}

.expert-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.expert-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Expertise Highlights */
.expertise-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    max-width: 600px;
    margin: 32px auto 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-large);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(208, 215, 222, 0.3);
    transition: all var(--transition-base);
}

.expertise-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.expertise-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.expertise-item strong {
    display: block;
    color: var(--color-fg-default);
    font-size: 14px;
    line-height: 1.2;
}

.expertise-item span {
    color: var(--color-fg-muted);
    font-size: 12px;
}

/* About Section Enhancements */
.about-intro {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 24px;
    border-radius: var(--border-radius-large);
    border-left: 4px solid var(--color-accent-fg);
    margin-bottom: 32px;
}

.education-item {
    background: var(--color-bg-subtle);
    padding: 20px;
    border-radius: var(--border-radius-medium);
    margin-bottom: 24px;
    border-left: 3px solid var(--color-success-fg);
}

.education-item h4 {
    margin: 0 0 8px;
    color: var(--color-fg-default);
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.expertise-card {
    background: white;
    padding: 24px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-border-default);
    transition: all var(--transition-base);
}

.expertise-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.expertise-card-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.expertise-card h4 {
    margin: 0 0 16px;
    color: var(--color-fg-default);
    font-size: 18px;
}

.expertise-card ul {
    margin: 0;
    padding-left: 20px;
}

.expertise-card li {
    margin-bottom: 8px;
    color: var(--color-fg-muted);
}

/* Skills Section */
.skill-category.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 20px;
    border-radius: var(--border-radius-large);
    border: 2px solid rgba(102, 126, 234, 0.2);
    margin-bottom: 20px;
}

.featured-icon {
    font-size: 20px;
    margin-right: 8px;
}

.skill-tag.expert-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

/* Timeline Enhancements */
.timeline-item.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 32px;
    border-radius: var(--border-radius-large);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    margin-bottom: 32px;
}

.timeline-item.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-large);
    z-index: -1;
    opacity: 0.1;
}

.featured-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 12px;
}

.timeline-company {
    margin: 8px 0 16px;
}

.timeline-company a {
    color: var(--color-accent-fg);
    text-decoration: none;
    font-weight: 500;
}

.timeline-company a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expertise-highlights {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item.featured {
        padding: 24px;
    }
    
    .profile-badges-top {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        margin-bottom: 8px;
    }
}
