:root {
    --bg-color: #1e1f22;
    --card-bg: rgba(17, 18, 20, 0.4); /* Way more transparent main window */
    --card-border: rgba(255, 255, 255, 0.05);
    --banner-bg: #000000;
    --text-primary: #f2f3f5;
    --text-muted: #b5bac1;
    --text-link: #00a8fc;
    --btn-bg: #4e5058;
    --btn-hover: #6d6f78;
    --avatar-border: #111214;
    --status-online: #23a559;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow: hidden;
}

/* Super Clean Page Background */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: #1e1f22;
}

/* Subtle Animated Stars */
#stars, #stars2, #stars3 {
    background: transparent;
    border-radius: 50%;
}

#stars {
    width: 1px; height: 1px;
    box-shadow: 10vw 20vh #FFF, 20vw 50vh #FFF, 30vw 80vh #FFF, 40vw 10vh #FFF, 50vw 90vh #FFF, 60vw 30vh #FFF, 70vw 60vh #FFF, 80vw 20vh #FFF, 90vw 70vh #FFF, 15vw 15vh #FFF, 25vw 85vh #FFF, 35vw 35vh #FFF, 45vw 75vh #FFF, 55vw 5vh #FFF, 65vw 95vh #FFF, 75vw 45vh #FFF, 85vw 65vh #FFF, 95vw 25vh #FFF, 5vw 40vh #FFF, 95vw 90vh #FFF;
    animation: animStar 80s linear infinite;
    opacity: 0.6;
}

#stars2 {
    width: 2px; height: 2px;
    box-shadow: 18vw 34vh #FFF, 38vw 14vh #FFF, 58vw 54vh #FFF, 78vw 94vh #FFF, 98vw 74vh #FFF, 14vw 84vh #FFF, 44vw 24vh #FFF, 64vw 64vh #FFF, 84vw 4vh #FFF, 4vw 44vh #FFF, 28vw 68vh #FFF, 48vw 8vh #FFF;
    animation: animStar 120s linear infinite;
    opacity: 0.5;
}

#stars3 {
    width: 3px; height: 3px;
    box-shadow: 11vw 77vh #FFF, 33vw 33vh #FFF, 55vw 99vh #FFF, 77vw 11vh #FFF, 99vw 55vh #FFF, 22vw 88vh #FFF, 66vw 22vh #FFF;
    animation: animStar 180s linear infinite;
    opacity: 0.3;
}

@keyframes animStar {
    from { transform: translateY(0px); }
    to { transform: translateY(-100vh); }
}

/* Main Content Area */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 10;
    gap: 16px;
}

/* Discord Profile Card */
.discord-card {
    background: linear-gradient(135deg, rgba(10, 10, 12, 0.6), rgba(60, 60, 65, 0.3), rgba(25, 25, 28, 0.4), rgba(5, 5, 5, 0.7));
    background-size: 400% 400%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--card-border);
    animation: profilePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, animateBg 12s ease infinite;
    transform-origin: center;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
    will-change: transform;
}

.discord-card:hover {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.85);
}

@keyframes profilePop {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes animateBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Banner Section */
.banner {
    position: relative;
    height: 120px;
    background: var(--banner-bg);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Banner Image */
.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Body Section */
.card-body {
    position: relative;
    padding: 16px;
}

/* Avatar Layout */
.avatar-wrapper {
    position: absolute;
    top: -46px; /* Halfway over the banner */
    left: 16px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 6px solid var(--avatar-border);
    background: #000;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #2b2d31;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
}

/* Status Indicator */
.status-indicator {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--avatar-border);
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-inner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--status-online);
}

/* Profile Info Header */
.profile-header {
    margin-top: 50px; /* Space for the overlapping avatar */
    margin-bottom: 12px;
}

.display-name {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}

.username-row {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dot { margin: 0 6px; font-size: 10px; }
.pronouns { font-style: italic; }

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 4px;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    transition: background-color 0.2s;
}

.btn-primary {
    flex: 1;
    background-color: var(--btn-bg);
    gap: 8px;
}

.btn-primary:hover { background-color: var(--btn-hover); }

.btn-success {
    background-color: #23a559;
}
.btn-success:hover {
    background-color: #1b8546;
}

.btn-secondary {
    width: 32px;
    background-color: var(--btn-bg);
}

.btn-secondary:hover { background-color: var(--btn-hover); }

/* Links Section */
.bio-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.discord-link {
    color: var(--text-link);
    text-decoration: none;
    font-size: 0.875rem;
}

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

/* Details Section */
.details-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.details-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-top: 6px;
    margin-bottom: 2px;
}

.details-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Roles */
.roles-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.role-pill {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 500;
}

.role-pill:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.role-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}


.btn-transparent {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 0;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.btn-transparent:hover { color: var(--text-primary); }

.plus-icon {
    font-size: 1.2rem;
    font-weight: 400;
}

.details-note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-muted);
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: #2b2d31;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 24px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.06);
    transform: scale(1);
    transition: transform 0.2s ease;
}

.modal-overlay.hidden .modal-content {
    transform: scale(0.95);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}
.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    margin-bottom: 16px;
    padding-right: 42px;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-primary);
}

.info-list p {
    margin-bottom: 8px; font-size: 0.95rem; color: var(--text-primary);
}
.info-list strong { color: var(--text-muted); }

#message-form textarea, #contact-form input, #contact-form textarea, #purchase-form input, #purchase-form textarea {
    width: 100%;
    background: rgba(17, 18, 20, 0.75);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 12px 13px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
#message-form textarea, #contact-form textarea, #purchase-form textarea {
    height: 100px;
    resize: none;
}
#message-form textarea:focus, #contact-form input:focus, #contact-form textarea:focus, #purchase-form input:focus, #purchase-form textarea:focus {
    outline: none;
    border-color: #5865F2;
    background: rgba(20, 21, 24, 0.95);
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.18);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: #23a559;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Connections */
.connections-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 12px;
}

.connection-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 6px 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background-color 0.2s;
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
}

.connection-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.connection-icon {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    margin-right: 8px;
    transition: fill 0.2s;
}

.connection-name {
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: auto;
}

.external-icon {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.2s;
}

.connection-item:hover .connection-icon {
    fill: var(--text-primary);
}
.connection-item:hover .external-icon {
    opacity: 1;
}

/* Side Panel */
.side-panel {
    position: absolute;
    left: calc(50% + 230px); /* Just outside the card */
    top: 50%;
    transform: translateY(-50%) translateX(0);
    background: #111214;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.side-panel.hidden {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
    pointer-events: none;
}
.side-panel-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.side-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-panel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.side-panel-btn:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: #5865F2;
}

/* Custom Music Player & Volume */
.custom-music-player, .volume-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-music-player:hover, .volume-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.5);
}
.custom-music-player {
    flex: 1;
    flex-direction: column;
    gap: 16px;
}
.volume-container {
    width: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 0;
}
.volume-slider-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.custom-music-player.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}
.player-main {
    display: flex;
    align-items: center;
    gap: 12px;
}
.album-art {
    width: 48px;
    height: 48px;
    background: #2b2d31;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
}
.track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.track-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}
.track-artist {
    color: var(--text-muted);
    font-size: 0.8rem;
}
.player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.player-play-btn {
    background: var(--text-primary);
    border: none;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.1s, background-color 0.2s;
}
.player-play-btn:hover { background: white; transform: scale(1.05); }
.player-play-btn:active { transform: scale(0.95); }

/* Volume Slider */
.volume-slider {
    -webkit-appearance: none;
    width: 70px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: background 0.2s;
    transform: rotate(-90deg);
}
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-primary);
    cursor: pointer;
    transition: transform 0.1s;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
}
.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.player-timeline {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.player-progress {
    height: 100%;
    background: var(--text-primary);
    border-radius: 3px;
    width: 0%;
    pointer-events: none;
}

/* Snowflakes */
#snow-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.5s ease;
}
#snow-container.hidden {
    opacity: 0;
}
.snowflake {
    position: absolute;
    top: -10px;
    background: white;
    border-radius: 50%;
    animation: fall linear infinite;
}
@keyframes fall {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

/* Shop */
.modal-subtitle {
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.shop-modal {
    max-width: 430px;
}

.shop-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 6px;
}

.shop-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    flex-direction: column;
    gap: 9px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.shop-item:hover {
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(255, 255, 255, 0.14);
}

.shop-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.shop-item-title {
    min-width: 0;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.shop-tag {
    flex: 0 0 auto;
    color: white;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.74rem;
    line-height: 1;
    font-weight: 700;
}

.tag-price { background: #23a559; }
.tag-custom { background: #5865F2; }

.shop-item-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.btn-shop-action {
    width: 100%;
    min-height: 32px;
    height: auto;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.84rem;
    text-decoration: none;
    margin-top: 2px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--text-muted);
}

.btn-full-width {
    width: 100%;
    min-height: 40px;
    margin-top: 4px;
}

.invite-link {
    text-decoration: none;
    margin-top: 12px;
}

.status-msg-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 24px;
    background: rgba(35, 165, 89, 0.05);
    border: 1px solid rgba(35, 165, 89, 0.2);
    border-radius: 8px;
    animation: fadeInSlideUp 0.4s ease-out forwards;
}

.status-text-content {
    text-align: center;
    margin-top: 16px;
}

.status-msg-title {
    color: var(--status-online);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.status-msg-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.success-animation {
    width: 60px;
    height: 60px;
}

.checkmark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: var(--status-online);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--status-online);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--status-online);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}
@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px rgba(35, 165, 89, 0.1);
    }
}

.purchase-item-title {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.purchase-item-price {
    font-size: 0.9rem;
    color: #23a559;
    margin-bottom: 16px;
    font-weight: 800;
}

.player-wrapper {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    max-width: 440px;
    align-items: stretch;
}

.album-art-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.modal-form .btn-primary {
    flex: 0 0 auto;
}

body.modal-open {
    overflow: hidden;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    body, html {
        overflow-y: auto;
    }
    .content {
        height: auto;
        min-height: 100vh;
        padding: 24px 16px;
        justify-content: flex-start;
    }
    .discord-card {
        max-width: 100%;
    }
    .player-wrapper {
        max-width: 100%;
    }
    .action-buttons {
        flex-wrap: wrap;
    }
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
        padding: 20px;
        width: 100%;
    }
    .shop-list {
        max-height: unset;
        padding-right: 0;
    }
    .modal-overlay {
        padding: 12px;
        align-items: flex-start;
    }
    .shop-tag {
        padding: 3px 8px;
    }
}

/* Fix for short screens (landscape mobile) */
@media (max-height: 700px) {
    body, html {
        overflow-y: auto;
    }
    .content {
        height: auto;
        min-height: 100vh;
        padding: 24px 16px;
    }
}
