@font-face {
    font-family: Minecraft;
    src: url("./Images/Minecraft.otf") format("opentype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Minecraft;
    src: url("./Images/Minecraft-Bold.otf") format("opentype");
    font-weight: 700;
    font-display: swap;
}

:root {
    --white: #f2f3f5;
    --gray: #a6adb8;
    --gray-dark: #71717a;
    --green: #78a94b;
    --green-bright: #91c45c;
    --border: rgba(46, 50, 58, .85);
    --card: rgba(13, 15, 18, .68);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Minecraft, system-ui, sans-serif;
    color: var(--white);
    background:
        radial-gradient(
            1000px 560px at 50% -12%,
            rgba(22, 26, 32, .48),
            rgba(16, 18, 22, .66) 55%,
            rgba(13, 14, 17, .8)
        ),
        url("./Images/darkoakplanks.png");
    background-size: auto, 64px 64px;
    background-position: center top, top left;
    background-repeat: no-repeat, repeat;
    background-attachment: scroll, fixed;
    image-rendering: pixelated;
}

::selection {
    background: var(--green);
    color: #fff;
}

/* Header */

header {
    position: sticky;
    top: 0;
    z-index: 40;
    height: 58px;
    background: rgba(23, 25, 29, .42);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(38, 42, 48, .7);
}

.header-inner {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand h1 {
    font-size: 19px;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .75);
}

.brand span,
.hero h2 span,
.footer-brand h3 span {
    color: var(--green-bright);
}

.social-button,
.home-button {
    height: 33px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 6px;
    font: 700 10px Minecraft, sans-serif;
    text-decoration: none;
    transition: .2s ease;
}

.social-button i {
    font-size: 15px;
    line-height: 1;
}

.home-button i {
    font-size: 13px;
}

.social-button:hover,
.home-button:hover {
    background: rgba(120, 169, 75, .16);
    border-color: rgba(120, 169, 75, .45);
    transform: translateY(-1px);
}

.card:focus-visible,
.social-button:focus-visible,
.card-action:focus-visible {
    outline: 2px solid var(--green-bright);
    outline-offset: 3px;
}

/* XP Bar */

.xp-bar {
    position: sticky;
    top: 58px;
    left: 0;
    z-index: 39;
    width: 100%;
    height: 12px;
    pointer-events: none;
    background: url("./Images/xp-empty.png") repeat-x left center / auto 12px;
    image-rendering: pixelated;
}

.xp-fill {
    width: 0;
    height: 12px;
    overflow: hidden;
}

.xp-fill::before {
    content: "";
    display: block;
    width: 100vw;
    height: 12px;
    background: url("./Images/xp-fill.png") repeat-x left center / auto 12px;
}

/* Hero */

.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    padding: 110px 24px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, .055),
        rgba(255, 255, 255, .025) 30%,
        transparent 60%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-eyebrow {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .8);
}

.hero h2 {
    margin-bottom: 25px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, .85);
}

.hero p {
    max-width: 620px;
    margin: auto;
    color: rgba(242, 243, 245, .68);
    font-size: 14px;
    line-height: 1.9;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .7);
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.hero-button {
    min-width: 150px;
    height: 40px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: rgba(120, 169, 75, .78);
    border: 1px solid rgba(145, 196, 92, .45);
    font: 10px Minecraft, sans-serif;
    text-decoration: none;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .4);
    transition: .2s ease;
}

.hero-button:hover {
    background: rgba(145, 196, 92, .88);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .35);
    font-size: 7px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .7);
    white-space: nowrap;
    animation: scrollFloat 1.8s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 15px;
    color: var(--green-bright);
    animation: scrollArrow 1.8s ease-in-out infinite;
}

@keyframes scrollFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: .55;
    }
    50% {
        transform: translateX(-50%) translateY(5px);
        opacity: 1;
    }
}

@keyframes scrollArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Banner */

.coming-soon-banner {
    width: 100%;
    padding: 9px 15px;
    text-align: center;
    background: rgba(120, 169, 75, .14);
    border-bottom: 1px solid rgba(145, 196, 92, .3);
    color: var(--green-bright);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .7);
}

/* Main & Sections */

.content {
    width: 100%;
    max-width: 1120px;
    margin: auto;
    padding: 40px 24px 110px;
}

.container {
    width: 100%;
}

.section,
.features-section {
    margin-bottom: 100px;
}

.section {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .65s ease, transform .65s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 14px;
}

.section-label {
    display: block;
    margin-bottom: 9px;
    color: var(--green-bright);
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section h3,
.section-title {
    font-size: 28px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .75);
}

.section-title {
    margin-bottom: 24px;
}

.section-intro {
    max-width: 720px;
    color: rgba(242, 243, 245, .6);
    font-size: 12px;
    line-height: 1.9;
}

/* Cards & Grids */

.card-grid,
.journey-grid,
.community-grid,
.social-grid,
.join-grid,
.creator-grid,
.featured-grid,
.features-grid,
.feature-grid,
.info-grid {
    margin-top: 30px;
    display: grid;
    gap: 12px;
}

.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}

.creator-grid,
.community-grid,
.join-grid,
.social-grid {
    grid-template-columns: repeat(2, 1fr);
}

.journey-grid {
    grid-template-columns: repeat(3, 1fr);
}

.info-grid {
    grid-template-columns: repeat(4, 1fr);
}

.featured-grid {
    grid-template-columns: 1.4fr 1fr;
}

.features-grid,
.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card,
.map-card,
.info-card,

.join-card {
    min-height: auto;
    min-width: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    background: var(--card);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: 
        border-color .15s ease,
        transform .15s ease,
        background .15s ease,
        box-shadow .15s ease;
}

.join-card:hover {
    background: rgba(8, 9, 11, .9);
    border-color: var(--green-bright);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px var(--green-bright),
        0 8px 20px rgba(0, 0, 0, .45);
}

.join-card > p {
    color: var(--gray);
    font-size: 10px;
    line-height: 1.65;
    margin: 0;
}

.community-card {
    min-height: 190px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: var(--card);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: .2s ease;
}

.community-card:hover {
    background: rgba(8, 9, 11, .9);
    border-color: var(--green-bright);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px var(--green-bright),
        0 8px 20px rgba(0, 0, 0, .45);
}

.community-card h4 {
    margin-bottom: 6px;
    font-size: 15px;
}

.community-card p {
    color: var(--gray);
    font-size: 10px;
    line-height: 1.65;
}

.social-card {
    background: var(--card);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid var(--border);
}

.card,
.social-card {
    min-width: 225px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    color: inherit;
    border-radius: 8px;
    text-decoration: none;
    transition:
        border-color .15s ease,
        transform .15s ease,
        background .15s ease,
        box-shadow .15s ease;
}

.social-card {
    min-height: 210px;
    padding: 22px;
    gap: 0;
}

.card:hover,
.social-card:hover {
    background: rgba(8, 9, 11, .9);
    border-color: var(--green-bright);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px var(--green-bright),
        0 8px 20px rgba(0, 0, 0, .45);
}

.feature-card {
    padding: 18px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    background: var(--card);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: 
        border-color .15s ease,
        transform .15s ease,
        background .15s ease,
        box-shadow .15s ease;
}

.feature-card:hover {
    background: rgba(8, 9, 11, .9);
    border-color: var(--green-bright);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px var(--green-bright),
        0 8px 20px rgba(0, 0, 0, .45);
}

.feature-card h3 {
    margin-bottom: 6px;
    font-size: 13px;
}

.feature-card p {
    color: var(--gray);
    font-size: 9px;
    line-height: 1.65;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px var(--green-bright), 0 10px 25px rgba(0, 0, 0, .45);
}

.card h4 {
    color: #f2f3f5;
    font-size: 15px;
    font-weight: 600;
}

.card p {
    color: var(--gray);
    font-size: 13.5px;
    line-height: 1.45;
}

.card-action {
    margin-top: 2px;
    color: var(--green-bright);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.card-action:hover {
    text-decoration: underline;
}

/* Icons */

.icon-chip,
.platform-icon,
.feature-icon,
.community-icon,
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 169, 75, .14);
    border: 1px solid rgba(120, 169, 75, .38);
    border-radius: 6px;
    color: var(--green-bright);
}

.icon-chip,
.platform-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
}

.platform-icon i {
    font-size: 19px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
}

.feature-icon i {
    font-size: 17px;
}

.icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-bright);
    font-size: 21px;
    line-height: 1;
    text-align: center;
}

.icon i {
    display: block;
    line-height: 1;
}

.social-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 7px;
    transition: .2s ease;
}

.social-icon i {
    font-size: 25px;
}

.social-card:hover .social-icon {
    background: rgba(120, 169, 75, .22);
    transform: scale(1.04);
}

.social-card h4 {
    margin-bottom: 8px;
    color: #f2f3f5;
    font-size: 18px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .65);
}

.social-card p {
    max-width: 470px;
    color: var(--gray);
    font-size: 12px;
    line-height: 1.65;
}

.social-link {
    margin-top: auto;
    padding-top: 20px;
    color: var(--green-bright);
    font-size: 11px;
    font-weight: 600;
}

.social-card:hover .social-link {
    text-decoration: underline;
}

/* Creators */

.creator-card {
    position: relative;
    min-height: 205px;
    overflow: hidden;
}

.creator-avatar {
    width: 52px;
    height: 52px;
    position: relative;
    display: grid;
    place-items: center;
    background: rgba(120, 169, 75, .1);
    border: 1px solid rgba(120, 169, 75, .25);
    border-radius: 6px;
    overflow: hidden;
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    image-rendering: pixelated;
    opacity: 0;
    transition: opacity .2s ease;
}

.creator-avatar.loaded img {
    opacity: 1;
}

.loading {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .45);
    font-size: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.creator-avatar.loaded .loading,
.creator-avatar.error .loading {
    display: none;
}

.retry {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    color: var(--green-bright);
    background: rgba(13, 15, 18, .85);
    border: 0;
    font: 7px Minecraft, sans-serif;
    cursor: pointer;
}

.creator-avatar.error .retry {
    display: flex;
}

.creator-role {
    color: var(--green-bright);
    font-size: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.creator-card h4 {
    font-size: 17px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .65);
}

/* Journey */

.journey-card {
    min-height: 190px;
}

.journey-year {
    color: var(--green-bright);
    font-size: 8px;
    letter-spacing: 1.5px;
}

/* Featured Content */

.featured-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    justify-content: flex-end;
    padding: 0;
}

.featured-main {
    padding: 0;
}

.featured-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: .75;
    transition: transform .3s ease, opacity .3s ease;
}

.featured-card:hover .featured-image img {
    opacity: .9;
}

.featured-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 9, 11, .96),
        rgba(8, 9, 11, .45) 45%,
        rgba(8, 9, 11, .05)
    );
    pointer-events: none;
}

.featured-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
}

.featured-tag {
    margin-bottom: 6px;
    color: var(--green-bright);
    font-size: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-card h4 {
    font-size: 18px;
    line-height: 1.3;
}

.featured-card p {
    margin-top: 6px;
}

/* Community & Features Elements */

.community-grid {
    align-items: stretch;
}

.community-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 7px;
}

.community-icon i {
    font-size: 22px;
}

.community-content {
    flex: 1;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
}

.platform-title h4 {
    margin-bottom: 5px;
    font-size: 16px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .65);
}

.platform-title span {
    color: var(--gray-dark);
    font-size: 9px;
}

.ip-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
}

.ip-label {
    display: block;
    margin-bottom: 6px;
    color: var(--gray-dark);
    font-size: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ip-copy {
    width: 100%;
    min-height: 38px;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 5px;
    font: 9px Minecraft, sans-serif;
    cursor: pointer;
    transition: .2s ease;
}

.ip-copy:hover {
    background: rgba(120, 169, 75, .12);
    border-color: rgba(120, 169, 75, .4);
}

.copy-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-icon {
    flex: 0 0 auto;
    color: var(--green-bright);
    font-size: 13px;
}

.community-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--green-bright);
    background: rgba(120, 169, 75, .08);
    border: 1px solid rgba(120, 169, 75, .3);
    border-radius: 6px;
    text-decoration: none;
    transition: .2s ease;
}

.map-button,
.community-link {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 9px;
}

.map-button {
    font-family: Minecraft, sans-serif;
}

.map-button:hover,
.community-link:hover {
    background: rgba(120, 169, 75, .18);
    transform: translateY(-1px);
}

/* Info Cards */

.info-card {
    padding: 16px;
    border-radius: 8px;
}

.info-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-dark);
    font-size: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-card strong {
    color: var(--green-bright);
    font-size: 13px;
    line-height: 1.4;
}

/* Footer */

footer {
    width: 100%;
    background:
        linear-gradient(
            to bottom,
            rgba(7, 9, 11, .82),
            rgba(7, 9, 11, .96)
        ),
        url("./Images/darkoakplanks.png");
    background-size: auto, 64px 64px;
    background-position: center, top left;
    background-repeat: no-repeat, repeat;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-inner {
    max-width: 1120px;
    margin: auto;
    padding: 55px 24px 45px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    margin-bottom: 12px;
    font-size: 22px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .75);
}

.footer-brand p {
    color: var(--gray-dark);
    font-size: 10px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-column h4 {
    margin-bottom: 7px;
    color: #fff;
    font-size: 11px;
}

.footer-column a {
    color: var(--gray-dark);
    font-size: 9px;
    text-decoration: none;
    transition: .15s ease;
}

.footer-column a:hover {
    color: var(--green-bright);
    transform: translateX(2px);
}

.footer-bottom {
    max-width: 1120px;
    margin: auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-bottom p {
    color: var(--gray-dark);
    font-size: 8px;
}

.footer-bottom span {
    color: rgba(145, 196, 92, .78);
}

.footer-bottom i {
    margin-left: 5px;
    color: var(--green-bright);
}

/* Responsive Styles */

@media (max-width: 850px) {
    .journey-grid,
    .community-grid,
    .social-grid,
    .featured-grid,
    .join-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    header {
        height: 54px;
    }

    .header-inner {
        padding: 0 15px;
    }

    .brand h1 {
        font-size: 15px;
    }

    .social-button,
    .home-button {
        height: 30px;
        padding: 0 10px;
        font-size: 8px;
    }

    .social-button i {
        font-size: 13px;
    }

    .home-button i {
        font-size: 12px;
    }

    .xp-bar {
        position: sticky; /* Keeps it naturally attached below the header */
        top: 58px;       /* Locks to the bottom edge of the sticky header */
        z-index: 39;
        width: 100%;
        height: 12px;
        pointer-events: none;
        background: url("./Images/xp-empty.png") repeat-x left center / auto 12px;
        image-rendering: pixelated;
    }   

    .xp-fill,
    .xp-fill::before {
        height: 10px;
    }

    .xp-fill::before {
        background-size: auto 10px;
    }

    .hero {
        min-height: calc(100vh - 66px);
        padding: 80px 18px;
    }

    .hero h2 {
        font-size: clamp(36px, 12vw, 55px);
    }

    .hero p {
        font-size: 11px;
    }

    .content {
        padding: 25px 15px 70px;
    }

    .section,
    .features-section {
        margin-bottom: 65px;
    }

    .section h3,
    .section-title {
        font-size: 22px;
    }

    .section-intro {
        font-size: 10px;
    }

    .creator-grid,
    .features-grid,
    .feature-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .card {
        min-width: 0;
    }

    .social-card {
        min-height: 195px;
        padding: 18px;
    }

    .social-card h4 {
        font-size: 16px;
    }

    .social-card p {
        font-size: 11px;
    }

    .map-preview {
        min-height: 280px;
    }

    .map-info,

    .footer-inner {
        padding: 40px 20px;
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 18px 20px;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .server-page .xp-bar {
        top: 89px;
    }

    @media (max-width: 650px) {
    .server-page .xp-bar {
        top: 85px;
    }
}

/* Server Page Specific Overrides */
.server-page header {
    position: sticky;
    top: 31px; /* Offset sticky header below banner on server page */
}

.server-page .xp-bar {
    top: 89px; /* Keeps XP bar locked under header on server page */
}

@media (max-width: 650px) {
    .server-page .xp-bar {
        top: 85px;
    }
}
}