:root {
    --bg: #020008;
    --bg-alt: #050014;
    --card-deep: rgba(4, 3, 20, 0.96);
    --glass: rgba(10, 10, 25, 0.85);
    --glass-soft: rgba(15, 23, 42, 0.65);

    --border-soft: rgba(88, 28, 135, 0.8);
    --border-strong: rgba(192, 132, 252, 0.9);

    --accent: #a855f7;
    --accent2: #7c3aed;
    --accent-blue: #38bdf8;

    --text: #e5e7eb;
    --text-muted: #6b7280;

    --danger: #f97373;
    --success: #22c55e;

    --radius-card: 20px;
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.95);
    --shadow-strong: 0 32px 80px rgba(0, 0, 0, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

/* Smooth Scroll für die Menü-Links */
html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 0% 0%, rgba(88, 28, 135, 0.45), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(30, 64, 175, 0.35), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(109, 40, 217, 0.4), transparent 55%),
        linear-gradient(145deg, #020008, #020010);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 90%, rgba(15, 23, 42, 0.7), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(24, 24, 37, 0.7), transparent 60%);
    opacity: 0.9;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============================
   FRAME / LAYER
   ============================ */

.app-frame {
    max-width: 1440px; /* etwas breiter als vorher */
    margin: 0 auto;
    padding: 2.2rem 1.5rem 2.6rem;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr); /* linke Sidebar ca. 5% breiter */
    gap: 1.6rem;
}

/* Mitte + rechte Sidebar */
.content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(280px, 1.1fr); /* Mitte + rechts breiter */
    gap: 1.4rem;
}

/* ============================
   SIDEBAR LINKS (Avatar + Nav + Social)
   ============================ */

.sidebar {
    border-radius: 22px;
    padding: 1.4rem 1.2rem 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(129, 140, 248, 0.25), transparent 60%),
        radial-gradient(circle at bottom right, rgba(88, 28, 135, 0.3), transparent 60%),
        var(--card-deep);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    position: relative;
    overflow: hidden;
}

.sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(15, 23, 42, 0.9);
    pointer-events: none;
}

/* Avatar */

.sidebar-avatar-ring {
    width: 130px;
    height: 130px;
    border-radius: 999px;
    padding: 3px;
    background:
        conic-gradient(
            from 160deg,
            rgba(168, 85, 247, 1),
            rgba(56, 189, 248, 1),
            rgba(236, 72, 153, 1),
            rgba(129, 140, 248, 1),
            rgba(168, 85, 247, 1)
        );
    box-shadow:
        0 0 40px rgba(168, 85, 247, 0.95),
        0 0 80px rgba(59, 130, 246, 0.9);
}

.sidebar-avatar-inner {
    border-radius: inherit;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(15, 23, 42, 0.7), transparent 60%),
        linear-gradient(145deg, #020617, #020010);
}

.sidebar-avatar-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name + Tagline */

.sidebar-name {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sidebar-name span {
    color: var(--accent);
}

.sidebar-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* Status */

.sidebar-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
    color: var(--text-muted);
}

.sidebar-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.98);
    box-shadow: 0 0 10px rgba(148, 163, 184, 0.9);
}

/* Nav */

.sidebar-nav {
    width: 100%;
    margin-top: 0.4rem;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    padding-top: 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.sidebar-nav a {
    display: block;
    padding: 0.35rem 0.55rem;
    border-radius: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(30, 64, 175, 0.9));
    color: var(--text);
    border: 1px solid rgba(129, 140, 248, 0.9);
}

/* Sidebar Socials */

.sidebar-socials {
    margin-top: auto;
    width: 100%;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    padding-top: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sidebar-socials span {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.sidebar-socials-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.sidebar-socials-links a {
    padding: 0.14rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(75, 85, 99, 0.9);
    font-size: 0.75rem;
    color: var(--text-muted);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 1));
}

/* ============================
   MAIN AREA (Mitte)
   ============================ */

.main-area {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Rechte Sidebar */

.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    align-self: flex-start;
}

/* Panels */

.panel {
    position: relative;
    border-radius: var(--radius-card);
    padding: 1rem 1.15rem 1.1rem;
    background: var(--glass-soft);
    border: 1px solid rgba(55, 48, 163, 0.85);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    overflow: hidden;
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(15, 23, 42, 0.9);
    pointer-events: none;
}

.panel--live {
    background:
        radial-gradient(circle at top left, rgba(88, 28, 135, 0.42), transparent 60%),
        radial-gradient(circle at bottom right, rgba(30, 64, 175, 0.3), transparent 60%),
        var(--glass-soft);
    border-color: var(--border-strong);
}

/* Section Title */

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.section-title {
    margin: 0;
    font-size: 0.86rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(191, 219, 254, 0.96);
}

.section-title span {
    color: var(--accent);
}

.section-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* ABOUT */

.about-text {
    font-size: 0.88rem;
    color: #d1d5db;
    line-height: 1.6;
}

.about-text p {
    margin: 0 0 0.6rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-tags {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.about-tag {
    padding: 0.16rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
}

/* LAST RELEASE / MIX */

.release-main {
    font-size: 0.86rem;
    color: #d1d5db;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.release-name {
    font-weight: 600;
}

.release-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* LIVE */

.live-status-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
    color: var(--text-muted);
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.98);
    box-shadow: 0 0 10px rgba(148, 163, 184, 0.9);
}

.live-hint {
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* WE ARe oNe – Shows (rechte Sidebar) */

.weareone-wrapper {
    margin-top: 0.75rem;
}

.weareone-card {
    margin-top: 0.35rem;
    padding: 0.75rem 0.8rem;
    border-radius: 0.95rem;
    background:
        radial-gradient(circle at top left, rgba(192, 132, 252, 0.25), transparent 62%),
        linear-gradient(145deg, #020617, #020010);
    border: 1px solid rgba(192, 132, 252, 0.95);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.98),
        0 0 0 1px rgba(30, 64, 175, 0.9);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    font-size: 0.85rem;
}

.weareone-title {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(191, 219, 254, 0.96);
    margin-bottom: 0.3rem;
}

.wo-loading,
.wo-empty {
    font-size: 0.83rem;
    color: var(--text-muted);
}

.wo-list {
    margin-top: 0.45rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.wo-show {
    position: relative;
    border-radius: 0.9rem;
    padding: 0.55rem 0.6rem 0.6rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 65%),
        linear-gradient(135deg, #020617, #020012);
    border: 1px solid rgba(148, 163, 184, 0.85);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.95);
}

.wo-show::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid var(--wo-color, #facc15);
    opacity: 0.8;
    pointer-events: none;
}

.wo-show-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.wo-show-station {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.wo-show-icon-wrap {
    width: 28px;
    height: 28px;
    overflow: hidden;
    background: transparent;
    flex-shrink: 0;
}

.wo-show-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.wo-show-station-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wo-show-station-name {
    font-size: 0.82rem;
    font-weight: 600;
}

.wo-show-station-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.wo-show-body {
    font-size: 0.84rem;
}

.wo-show-title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.15rem;
}

.wo-show-style {
    font-weight: 400;
    color: var(--wo-color, #facc15);
}

/* SERVICES / SERVER (rechte Sidebar) */

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.86rem;
}

.service-item {
    border-radius: 0.9rem;
    padding: 0.65rem 0.75rem;
    background:
        linear-gradient(135deg, rgba(12, 10, 32, 0.98), rgba(8, 7, 26, 0.98));
    border: 1px solid rgba(55, 65, 81, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: center;
}

.service-name {
    font-weight: 600;
}

.service-host {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.service-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.service-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.16rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    font-size: 0.78rem;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 1));
}

.service-status-pill span.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.95);
}

.service-status-pill--online {
    border-color: rgba(34, 197, 94, 0.9);
    color: #bbf7d0;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.85);
}

.service-status-pill--online span.dot {
    background: var(--success);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.service-status-pill--offline {
    border-color: rgba(248, 113, 113, 0.9);
    color: #fecaca;
    box-shadow: 0 0 16px rgba(248, 113, 113, 0.85);
}

.service-status-pill--offline span.dot {
    background: var(--danger);
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.9);
}

/* Spezielles Styling für Ko-fi Service */

.service-item--kofi {
    border-color: rgba(192, 132, 252, 0.95);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.98),
        0 0 0 1px rgba(30, 64, 175, 0.9);
}

.service-item--kofi .service-status-pill {
    border-color: rgba(168, 85, 247, 0.9);
    box-shadow: 0 0 18px rgba(168, 85, 247, 0.9);
}

.service-kofi-usage {
    margin-top: 0.45rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.service-kofi-usage-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.25rem;
    color: rgba(191, 219, 254, 0.96);
}

.service-kofi-usage ul {
    margin: 0 0 0.5rem;
    padding-left: 1.1rem;
}

.service-kofi-usage li {
    margin: 0.1rem 0;
}

.service-kofi-supporters {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.service-kofi-supporters ul {
    margin: 0;
    padding-left: 1.1rem;
}

.service-kofi-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(192, 132, 252, 0.95);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(30, 64, 175, 1));
    color: var(--text);
    text-decoration: none;
}

.service-kofi-button:hover {
    text-decoration: none;
    filter: brightness(1.08);
}

/* Ko-fi Support Panel */

.kofi-panel-body {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.85rem;
}

.kofi-panel-usage ul,
.kofi-supporter-list {
    margin: 0.2rem 0 0;
    padding-left: 1.1rem;
}

.kofi-panel-subtitle {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(191, 219, 254, 0.96);
}

.kofi-supporter-list {
    list-style: none;
    margin: 0.4rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.kofi-supporter-item {
    padding: 0.4rem 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 55%);
}

.kofi-supporter-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.kofi-supporter-name {
    font-weight: 500;
}

.kofi-supporter-amount {
    font-size: 0.8rem;
    opacity: 0.85;
}

.kofi-supporter-message {
    margin-top: 0.15rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.kofi-panel-empty {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.kofi-panel-cta {
    margin-top: 0.3rem;
}


/* UPCOMING EVENTS */

.events-list {
    list-style: none;
    padding: 0;
    margin: 0.2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.event-item {
    border-radius: 0.9rem;
    padding: 0.55rem 0.7rem;
    background:
        linear-gradient(135deg, rgba(12, 10, 32, 0.96), rgba(8, 7, 26, 0.98));
    border: 1px solid rgba(75, 85, 99, 0.95);
    font-size: 0.84rem;
    color: #d1d5db;
}

.event-title {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.event-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.event-info {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* KONTAKT */

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.contact-text {
    flex: 1.7;
    min-width: 240px;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.contact-list {
    flex: 1.3;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.contact-item {
    border-radius: 0.9rem;
    background:
        linear-gradient(135deg, rgba(10, 10, 30, 0.98), rgba(9, 9, 26, 0.99));
    border: 1px solid rgba(75, 85, 99, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contact-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.6rem 0.75rem;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(191, 219, 254, 0.95);
}

.contact-handle {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.contact-arrow {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FOOTER */

.footer-bar {
    margin-top: 1.4rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-left span {
    color: var(--accent);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* IMPRESSUM-POPUP */

.impressum-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.impressum-overlay.active {
    display: flex;
}

.impressum-modal {
    width: min(480px, 90%);
    border-radius: 18px;
    padding: 1rem 1.1rem 1.1rem;
    background:
        radial-gradient(circle at top left, rgba(129, 140, 248, 0.25), transparent 60%),
        linear-gradient(145deg, #020617, #020010);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
}

.impressum-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.impressum-header h2 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(191, 219, 254, 0.96);
}

.impressum-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
}

.impressum-close:hover {
    color: var(--text);
}

.impressum-body {
    font-size: 0.86rem;
    color: var(--text);
}

.impressum-body p {
    margin: 0 0 0.6rem;
}

/* Versteckter Admin-Login Button */

.admin-login {
    position: fixed;
    bottom: 10px;
    right: 12px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    border: 1px solid rgba(148, 163, 184, 0.5);
    opacity: 0.15;
    cursor: pointer;
    z-index: 999;
}

.admin-login:hover {
    opacity: 0.8;
    background: rgba(148, 163, 184, 0.3);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .app-frame {
        grid-template-columns: minmax(0, 1fr);
    }

    .content-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .sidebar {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .sidebar-avatar-ring {
        width: 90px;
        height: 90px;
    }

    .sidebar-name,
    .sidebar-tagline,
    .sidebar-status {
        text-align: left;
    }

    .sidebar-nav,
    .sidebar-socials {
        border-top: none;
    }

    .sidebar-nav,
    .sidebar-socials {
        padding-top: 0.2rem;
    }

    .sidebar-socials {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .app-frame {
        padding-inline: 1.1rem;
    }

    .sidebar {
        flex-direction: column;
        align-items: center;
    }

    .sidebar-nav {
        border-top: 1px solid rgba(31, 41, 55, 0.9);
    }
}
