:root {
    --gaming-bg: #040711;
    --gaming-panel: rgba(8, 13, 28, .78);
    --gaming-panel-solid: #0b1020;
    --gaming-text: #f4ead8;
    --gaming-muted: #a8b0c4;
    --gaming-gold: #f7c35f;
    --gaming-gold-2: #d78a2d;
    --gaming-blue: #38bdf8;
    --gaming-violet: #8b5cf6;
    --gaming-red: #ef4444;
    --gaming-green: #22c55e;
    --gaming-border: rgba(247, 195, 95, .28);
    --gaming-blue-border: rgba(56, 189, 248, .26);
    --gaming-shadow: 0 24px 80px rgba(0, 0, 0, .45);
    --crimson-primary: #DC143C;
    --crimson-bright: #F03A58;
    --crimson-deep: #8F102B;
    --crimson-dark: #530918;
    --obsidian: #07070A;
    --surface-dark: #0E0B0F;
    --surface-card: #171016;
    --surface-elevated: #21151D;
    --text-primary: #F6F0F2;
    --text-secondary: #C6B8BE;
    --text-muted: #8F8187;
    --online: #45D99A;
    --offline: #F0526E;
    --crimson-soft: #EE5A70;
    --crimson-news-deep: #970D2C;
    --crimson-news-dark: #5D091A;
    --page-background: #09070A;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-crimson: rgba(220, 20, 60, 0.24);
}

.landing-dashboard-page {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 28px;
    box-sizing: border-box;
    color: #FFF7FA;
    background:
        radial-gradient(circle at 18% 6%, rgba(220, 20, 60, .15), transparent 26rem),
        radial-gradient(circle at 82% 12%, rgba(214, 173, 100, .1), transparent 24rem),
        linear-gradient(180deg, #08070A 0%, #120b10 48%, #08070A 100%);
    overflow: hidden;
    position: relative;
}

.landing-dashboard-page *,
.landing-dashboard-page *::before,
.landing-dashboard-page *::after {
    box-sizing: border-box;
}

.landing-dashboard-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(214, 173, 100, .09), transparent 42%),
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
    background-size: auto, 72px 72px, 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 88%);
}

.landing-dashboard-page::after {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: 0;
    height: 210px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(8, 7, 10, .96), rgba(23, 12, 18, .86));
    clip-path: polygon(0 58%, 8% 42%, 18% 60%, 29% 30%, 42% 64%, 55% 38%, 68% 62%, 78% 44%, 90% 64%, 100% 50%, 100% 100%, 0 100%);
    opacity: .72;
}

.landing-dashboard-page > * {
    position: relative;
    z-index: 1;
}

.landing-dashboard-page h1,
.landing-dashboard-page h2,
.landing-dashboard-page h3,
.landing-dashboard-page p {
    margin-top: 0;
}

.landing-dashboard-page h1 {
    margin-bottom: 14px;
    color: var(--app-color, #D6AD64);
    font-size: clamp(2.65rem, 7vw, 5.7rem);
    font-weight: 950;
    line-height: .88;
    letter-spacing: -.065em;
    text-transform: uppercase;
    text-shadow: 0 0 34px rgba(220, 20, 60, .28), 0 22px 70px rgba(0,0,0,.82);
    word-break: break-word;
}

.landing-dashboard-page h2 {
    color: #FFF7FA;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 950;
    letter-spacing: -.04em;
}

.landing-dashboard-page h3,
.landing-dashboard-page strong,
.landing-dashboard-page a {
    word-break: break-word;
}

.landing-dashboard-page p,
.landing-dashboard-page small,
.landing-dashboard-page .text-muted {
    color: #C9BBC1 !important;
}

.landing-dashboard-page .realm-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 32px;
    min-width: 0;
    min-height: 0;
    padding: 48px;
    border: 1px solid rgba(220, 20, 60, 0.22);
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(220, 20, 60, 0.15), transparent 40%),
        linear-gradient(130deg, rgba(29, 18, 25, 0.98), rgba(9, 7, 10, 0.98)),
        var(--hero-bg);
    background-position: center;
    background-size: cover;
    box-shadow: 0 30px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.045);
    overflow: hidden;
    position: relative;
}

.landing-dashboard-page .realm-hero::before,
.landing-dashboard-page .realm-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.landing-dashboard-page .realm-hero::before {
    inset: 18px;
    border: 1px solid rgba(214,173,100,.18);
    border-radius: 16px;
}

.landing-dashboard-page .realm-hero::after {
    right: 34px;
    top: 30px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(214,173,100,.16);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(220,20,60,.12), transparent 64%);
}

.landing-dashboard-page .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .34;
}

.landing-dashboard-page .realm-hero__content,
.landing-dashboard-page .realm-hero__visual {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.landing-dashboard-page .realm-hero__eyebrow,
.landing-dashboard-page .realm-section-header span,
.landing-dashboard-page .realm-status-item span,
.landing-dashboard-page .realm-feature-zone article > span,
.landing-dashboard-page .realm-news-card small,
.landing-dashboard-page .realm-event-panel > span,
.landing-dashboard-page .realm-panel__eyebrow,
.landing-dashboard-page .server-stat__label {
    color: #D6AD64;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.landing-dashboard-page .realm-hero__content > p {
    max-width: 660px;
    margin-bottom: 18px;
    color: #C9BBC1;
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.72;
}

.landing-dashboard-page .realm-hero__logo {
    display: block;
    max-width: 100%;
    margin: 14px 0;
}

.landing-dashboard-page .realm-timer {
    display: inline-grid;
    gap: 2px;
    margin-bottom: 18px;
    padding: 10px 13px;
    border: 1px solid rgba(214,173,100,.24);
    border-radius: 14px;
    background: rgba(9,7,10,.58);
}

.landing-dashboard-page .realm-timer strong {
    color: #FFF7FA;
}

.landing-dashboard-page .realm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-dashboard-page .realm-btn {
    display: inline-grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    color: #FFF7FA;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.landing-dashboard-page .realm-btn:hover,
.landing-dashboard-page .realm-btn:focus-visible {
    transform: translateY(-1px);
    color: #FFF7FA;
    text-decoration: none;
}

.landing-dashboard-page .realm-btn--primary {
    border-color: rgba(244,63,94,.5);
    background: linear-gradient(135deg, #DC143C, #8f1230);
    box-shadow: 0 0 28px rgba(220,20,60,.18);
}

.landing-dashboard-page .realm-btn--download {
    border-color: rgba(214,173,100,.38);
    background: linear-gradient(135deg, rgba(214,173,100,.16), rgba(9,7,10,.72));
}

.landing-dashboard-page .realm-btn--login {
    background: rgba(255,255,255,.045);
}

.landing-dashboard-page .landing-btn__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(214,173,100,.24);
    border-radius: 12px;
    color: #D6AD64;
    background: rgba(9,7,10,.54);
}

.landing-dashboard-page .landing-btn__title,
.landing-dashboard-page .landing-btn__subtitle {
    display: block;
}

.landing-dashboard-page .landing-btn__title {
    color: #FFF7FA;
    font-weight: 950;
}

.landing-dashboard-page .landing-btn__subtitle {
    color: #C9BBC1;
    font-size: .78rem;
    font-weight: 800;
}

.landing-dashboard-page .realm-hero__visual {
    display: grid;
    place-items: center;
    min-height: 330px;
    border: 1px solid rgba(214,173,100,.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(29,21,26,.55), rgba(9,7,10,.78));
    overflow: hidden;
}

.landing-dashboard-page .realm-hero__visual img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.04);
}

.landing-dashboard-page .realm-hero__visual span {
    color: rgba(214,173,100,.32);
    font-size: 8rem;
}

.landing-dashboard-page .realm-status-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin: 18px 0;
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 14px;
    background: rgba(220, 20, 60, 0.14);
}

.landing-dashboard-page .realm-status-item {
    min-width: 0;
    padding: 15px 16px;
    background: #141015;
}

.landing-dashboard-page .realm-status-item strong {
    display: block;
    color: #FFF7FA;
    font-size: 1.08rem;
    font-weight: 950;
    word-break: break-word;
}

.landing-dashboard-page .realm-status-item strong::before,
.landing-dashboard-page .status-badge i {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 999px;
    background: #91848A;
    box-shadow: 0 0 12px rgba(145,132,138,.32);
}

.landing-dashboard-page .realm-status-item.is-online strong::before,
.landing-dashboard-page .status-badge--online i {
    background: #45D99A;
    box-shadow: 0 0 12px rgba(69,217,154,.45);
}

.landing-dashboard-page .realm-status-item.is-offline strong::before,
.landing-dashboard-page .status-badge--offline i {
    background: #F43F5E;
    box-shadow: 0 0 12px rgba(244,63,94,.45);
}

.landing-dashboard-page .realm-feature-zone {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.landing-dashboard-page .realm-feature-zone article,
.landing-dashboard-page .realm-widget-panel,
.landing-dashboard-page .realm-news,
.landing-dashboard-page .realm-ranking-panel,
.landing-dashboard-page .realm-event-panel {
    min-width: 0;
    border: 1px solid rgba(220,20,60,.2);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(20,16,21,.98), rgba(29,21,26,.9));
    box-shadow: 0 18px 48px rgba(0,0,0,.28);
}

.landing-dashboard-page .realm-feature-zone article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
}

.landing-dashboard-page .realm-feature-zone article > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(214,173,100,.26);
    border-radius: 13px;
    background: rgba(9,7,10,.58);
    font-size: 1rem;
    letter-spacing: 0;
}

.landing-dashboard-page .realm-feature-zone h3 {
    margin-bottom: 2px;
    color: #FFF7FA;
    font-size: .98rem;
    font-weight: 950;
}

.landing-dashboard-page .realm-feature-zone p {
    margin-bottom: 0;
}

.landing-dashboard-page .realm-information-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
    align-items: start;
    gap: 20px;
}

.landing-dashboard-page .realm-news,
.landing-dashboard-page .realm-ranking-panel,
.landing-dashboard-page .realm-event-panel {
    padding: 18px;
}

.landing-dashboard-page .realm-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    margin-bottom: 14px;
}

.landing-dashboard-page .realm-section-header h2,
.landing-dashboard-page .realm-section-header p {
    margin-bottom: 0;
}

.landing-dashboard-page .realm-section-header a,
.landing-dashboard-page .realm-news-card__link,
.landing-dashboard-page .realm-empty a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D6AD64;
    font-weight: 900;
    text-decoration: none;
}

.landing-dashboard-page .realm-news__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
    gap: 12px;
}

.landing-dashboard-page .realm-news-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: #1D151A;
}

.landing-dashboard-page .realm-news-card--featured {
    grid-row: span 2;
    grid-template-columns: 1fr;
}

.landing-dashboard-page .realm-news-card__media {
    display: block;
    min-height: 126px;
    background: radial-gradient(circle, rgba(220,20,60,.18), rgba(9,7,10,.9));
    overflow: hidden;
}

.landing-dashboard-page .realm-news-card--featured .realm-news-card__media {
    min-height: 250px;
}

.landing-dashboard-page .realm-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-dashboard-page .realm-news-card__media span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    color: #F43F5E;
    font-size: 2rem;
}

.landing-dashboard-page .realm-news-card__body {
    min-width: 0;
    padding: 14px;
}

.landing-dashboard-page .realm-news-card h3 {
    margin: 4px 0 8px;
    font-size: 1rem;
    font-weight: 950;
}

.landing-dashboard-page .realm-news-card--featured h3 {
    font-size: 1.35rem;
}

.landing-dashboard-page .realm-news-card h3 a {
    color: #FFF7FA;
    text-decoration: none;
}

.landing-dashboard-page .realm-news-card p {
    margin-bottom: 10px;
}

.landing-dashboard-page .realm-empty {
    grid-column: 1 / -1;
    min-width: 0;
    padding: 18px;
    border: 1px dashed rgba(220,20,60,.26);
    border-radius: 14px;
    background: rgba(9,7,10,.52);
}

.landing-dashboard-page .realm-quick-access {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.landing-dashboard-page .realm-widget-panel {
    padding: 14px;
}

.landing-dashboard-page .realm-panel__ornament,
.landing-dashboard-page .server-monitor__summary {
    display: none;
}

.landing-dashboard-page .realm-panel__header,
.landing-dashboard-page .realm-panel__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
    margin-bottom: 10px;
}

.landing-dashboard-page .realm-panel__heading {
    justify-content: flex-start;
    margin-bottom: 0;
}

.landing-dashboard-page .realm-panel__icon,
.landing-dashboard-page .quick-command__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border: 1px solid rgba(214,173,100,.24);
    border-radius: 12px;
    color: #D6AD64;
    background: rgba(9,7,10,.58);
}

.landing-dashboard-page .realm-panel__title {
    margin: 0;
    color: #FFF7FA;
    font-size: 1rem;
    font-weight: 950;
}

.landing-dashboard-page .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #C9BBC1;
    font-size: .78rem;
    font-weight: 900;
}

.landing-dashboard-page .server-monitor__stats,
.landing-dashboard-page .quick-command__grid,
.landing-dashboard-page .gm-roster__list {
    display: grid;
    gap: 8px;
}

.landing-dashboard-page .server-stat,
.landing-dashboard-page .quick-command__item,
.landing-dashboard-page .gm-member,
.landing-dashboard-page .landing-widget-row {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: #1D151A;
    color: #FFF7FA;
    text-decoration: none;
}

.landing-dashboard-page .server-stat__icon,
.landing-dashboard-page .gm-member__avatar {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    color: #D6AD64;
    background: rgba(9,7,10,.58);
}

.landing-dashboard-page .server-stat__content,
.landing-dashboard-page .quick-command__content,
.landing-dashboard-page .gm-member__identity {
    min-width: 0;
}

.landing-dashboard-page .server-stat__value,
.landing-dashboard-page .quick-command__content strong,
.landing-dashboard-page .quick-command__content small,
.landing-dashboard-page .gm-member__name {
    display: block;
    word-break: break-word;
}

.landing-dashboard-page .quick-command__arrow {
    color: #F43F5E;
}

.landing-dashboard-page .gm-member {
    grid-template-columns: 34px minmax(0, 1fr) auto;
}

.landing-dashboard-page .gm-roster__count,
.landing-dashboard-page .landing-kicker {
    color: #D6AD64;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.landing-dashboard-page .landing-widget-row {
    grid-template-columns: minmax(0, 1fr) auto;
}

.landing-dashboard-page .gaming-topspender-table-wrap {
    overflow: auto;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: #1D151A;
}

.landing-dashboard-page .gaming-topspender-table {
    width: 100%;
    border-collapse: collapse;
    color: #FFF7FA;
}

.landing-dashboard-page .gaming-topspender-table th,
.landing-dashboard-page .gaming-topspender-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    text-align: left;
    word-break: break-word;
}

.landing-dashboard-page .gaming-topspender-table th {
    color: #D6AD64;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.landing-dashboard-page .realm-ranking-panel,
.landing-dashboard-page .realm-event-panel {
    margin-top: 18px;
}

.landing-dashboard-page .realm-event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.landing-dashboard-page .realm-event-grid article {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: #1D151A;
}

@media (max-width: 991px) {
    .landing-dashboard-page .realm-hero,
    .landing-dashboard-page .realm-information-layout {
        grid-template-columns: 1fr;
    }

    .landing-dashboard-page .realm-status-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-dashboard-page .realm-feature-zone,
    .landing-dashboard-page .realm-event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-dashboard-page .realm-news__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .landing-dashboard-page {
        padding: 14px;
    }

    .landing-dashboard-page .realm-hero {
        padding: 24px 18px;
    }

    .landing-dashboard-page .realm-status-strip,
    .landing-dashboard-page .realm-feature-zone,
    .landing-dashboard-page .realm-event-grid {
        grid-template-columns: 1fr;
    }

    .landing-dashboard-page .realm-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .landing-dashboard-page .realm-hero__actions a,
    .landing-dashboard-page .realm-hero__actions button {
        width: 100%;
    }

    .landing-dashboard-page .realm-hero__visual {
        min-height: 220px;
    }

    .landing-dashboard-page .realm-section-header {
        display: grid;
    }

    .landing-dashboard-page .realm-news-card,
    .landing-dashboard-page .server-stat,
    .landing-dashboard-page .quick-command__item,
    .landing-dashboard-page .gm-member {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .landing-dashboard-page .quick-command__arrow,
    .landing-dashboard-page .gm-member__presence {
        grid-column: 2;
    }
}

.landing-dashboard-page {
    width: 100%;
    max-width: 1500px;
    min-width: 0;
    margin: 0 auto;
    padding: 18px;
    box-sizing: border-box;
    background: #070609;
}

.landing-dashboard-page .realm-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 580px;
    overflow: hidden;
    padding: 56px;
    border: 1px solid rgba(220, 20, 60, .24);
    border-radius: 22px;
    isolation: isolate;
    background: #070609;
}

.landing-dashboard-page .realm-hero__media {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: radial-gradient(circle at 72% 20%, rgba(220, 20, 60, .22), #070609 62%);
}

.landing-dashboard-page .realm-hero__media img,
.landing-dashboard-page .realm-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.landing-dashboard-page .realm-hero__media img {
    opacity: .86;
}

.landing-dashboard-page .realm-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(6, 5, 8, 0.96) 0%, rgba(6, 5, 8, 0.78) 38%, rgba(6, 5, 8, 0.20) 72%, rgba(6, 5, 8, 0.10) 100%),
        linear-gradient(0deg, rgba(6, 5, 8, 0.76), transparent 55%);
}

.landing-dashboard-page .realm-hero::before {
    inset: 22px;
    z-index: -1;
    border-color: rgba(214, 173, 100, .22);
    background: linear-gradient(90deg, rgba(214, 173, 100, .12), transparent 18%, transparent 82%, rgba(220, 20, 60, .12));
}

.landing-dashboard-page .realm-hero::after {
    right: 34px;
    top: 34px;
    width: 220px;
    height: 220px;
    border-color: rgba(214, 173, 100, .18);
    opacity: .8;
}

.landing-dashboard-page .realm-hero__content {
    position: relative;
    z-index: 1;
    width: min(650px, 100%);
}

.landing-dashboard-page .realm-hero__content > p {
    margin-bottom: 20px;
    color: #C9BBC1;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.75;
}

.landing-dashboard-page .realm-hero__status {
    position: absolute;
    right: 34px;
    bottom: 34px;
    z-index: 2;
    min-width: 220px;
    padding: 14px 16px;
    border: 1px solid rgba(214, 173, 100, .26);
    border-radius: 16px;
    background: rgba(18, 13, 18, .82);
    box-shadow: 0 18px 44px rgba(0,0,0,.34);
    backdrop-filter: blur(10px);
}

.landing-dashboard-page .realm-hero__status span,
.landing-dashboard-page .realm-hero__status strong,
.landing-dashboard-page .realm-hero__status small {
    display: block;
    word-break: break-word;
}

.landing-dashboard-page .realm-hero__status span {
    color: #D6AD64;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.landing-dashboard-page .realm-hero__status strong {
    color: #FFF7FA;
    font-size: 1.2rem;
    font-weight: 950;
}

.landing-dashboard-page .realm-hero__status strong::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 999px;
    background: #91848A;
}

.landing-dashboard-page .realm-hero__status.is-online strong::before {
    background: #45D99A;
    box-shadow: 0 0 16px rgba(69,217,154,.5);
}

.landing-dashboard-page .realm-hero__status.is-offline strong::before {
    background: #F43F5E;
    box-shadow: 0 0 16px rgba(244,63,94,.5);
}

.landing-dashboard-page .realm-status-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 18px 0;
    border-color: rgba(214, 173, 100, .16);
    background: rgba(214, 173, 100, .12);
}

.landing-dashboard-page .realm-status-item {
    background: linear-gradient(180deg, #141015, #120D12);
}

.landing-dashboard-page .realm-feature-zone {
    display: none;
}

.landing-dashboard-page .realm-feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(220, 20, 60, .18);
    border-radius: 16px;
    background: rgba(220, 20, 60, .12);
}

.landing-dashboard-page .realm-feature-strip article {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 13px 15px;
    background: #120D12;
}

.landing-dashboard-page .realm-feature-strip article > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(214, 173, 100, .24);
    border-radius: 12px;
    color: #D6AD64;
    background: #1A1218;
}

.landing-dashboard-page .realm-feature-strip h3 {
    margin-bottom: 2px;
    color: #FFF7FA;
    font-size: .96rem;
    font-weight: 950;
}

.landing-dashboard-page .realm-feature-strip p {
    margin-bottom: 0;
    color: #C9BBC1;
}

.landing-dashboard-page .realm-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.4fr);
    align-items: start;
    gap: 20px;
}

.landing-dashboard-page .realm-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    min-width: 0;
}

.landing-dashboard-page .realm-information-layout {
    display: contents;
}

.landing-dashboard-page .realm-news-section,
.landing-dashboard-page .realm-information-deck,
.landing-dashboard-page .realm-top-spender,
.landing-dashboard-page .realm-event-panel {
    min-width: 0;
}

.landing-dashboard-page .realm-news-section,
.landing-dashboard-page .realm-top-spender {
    width: 100%;
    min-width: 0;
}

.landing-dashboard-page .realm-news-section,
.landing-dashboard-page .realm-top-spender,
.landing-dashboard-page .realm-event-panel {
    padding: 20px;
    border: 1px solid rgba(220,20,60,.2);
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 0%, rgba(220,20,60,.12), transparent 34%),
        linear-gradient(145deg, rgba(18,13,18,.98), rgba(10,8,11,.98));
    box-shadow: 0 20px 54px rgba(0,0,0,.3);
}

.landing-dashboard-page .realm-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
    margin-bottom: 16px;
}

.landing-dashboard-page .realm-section-heading span,
.landing-dashboard-page .realm-section-heading .landing-kicker {
    color: #D6AD64;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.landing-dashboard-page .realm-section-heading h2,
.landing-dashboard-page .realm-section-heading p {
    margin-bottom: 0;
}

.landing-dashboard-page .realm-section-heading a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #D6AD64;
    font-weight: 900;
    text-decoration: none;
}

.landing-dashboard-page .realm-news__grid {
    display: none;
}

.landing-dashboard-page .realm-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 12px;
    align-items: stretch;
}

.landing-dashboard-page .realm-news-grid--single {
    grid-template-columns: 1fr;
}

.landing-dashboard-page .realm-news-card {
    position: relative;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: #1A1218;
}

.landing-dashboard-page .realm-news-card--featured {
    grid-row: span 2;
    grid-template-columns: 1fr;
}

.landing-dashboard-page .realm-news-grid--single .realm-news-card--featured {
    grid-row: auto;
}

.landing-dashboard-page .realm-news-card__media {
    position: relative;
    min-height: 118px;
    overflow: hidden;
    background: radial-gradient(circle, rgba(220,20,60,.2), #120D12 72%);
}

.landing-dashboard-page .realm-news-card--featured .realm-news-card__media {
    min-height: 310px;
}

.landing-dashboard-page .realm-news-grid--single .realm-news-card--featured .realm-news-card__media {
    min-height: 360px;
}

.landing-dashboard-page .realm-news-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(7,6,9,.82));
    pointer-events: none;
}

.landing-dashboard-page .realm-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.landing-dashboard-page .realm-news-card:hover .realm-news-card__media img {
    transform: scale(1.035);
}

.landing-dashboard-page .realm-news-card__body {
    min-width: 0;
    padding: 14px;
}

.landing-dashboard-page .realm-news-card--featured .realm-news-card__body {
    padding: 16px;
}

.landing-dashboard-page .realm-news-card h3 {
    margin: 5px 0 8px;
    color: #FFF7FA;
    font-size: 1rem;
    font-weight: 950;
    line-height: 1.25;
}

.landing-dashboard-page .realm-news-card--featured h3 {
    font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.landing-dashboard-page .realm-news-card h3 a {
    color: #FFF7FA;
    text-decoration: none;
}

.landing-dashboard-page .realm-news-card p {
    margin-bottom: 10px;
}

.landing-dashboard-page .realm-news-card__link {
    color: #D6AD64;
    font-weight: 900;
    text-decoration: none;
}

.landing-dashboard-page .realm-information-deck {
    display: grid;
    gap: 12px;
}

.landing-dashboard-page .realm-widget-panel {
    padding: 14px;
    border: 1px solid rgba(220,20,60,.18);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(18,13,18,.96), rgba(26,18,24,.9));
    box-shadow: 0 16px 42px rgba(0,0,0,.24);
}

.landing-dashboard-page .server-monitor__stats {
    grid-template-columns: 1fr;
}

.landing-dashboard-page .quick-command__grid,
.landing-dashboard-page .gm-roster__list,
.landing-dashboard-page .server-monitor__stats {
    display: grid;
    gap: 8px;
}

.landing-dashboard-page .quick-command__item,
.landing-dashboard-page .server-stat,
.landing-dashboard-page .gm-member {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    padding: 10px;
    border-color: rgba(255,255,255,.075);
    background: rgba(26,18,24,.86);
}

.landing-dashboard-page .realm-top-spender {
    margin-top: 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(220,20,60,.18), transparent 30%),
        linear-gradient(145deg, rgba(18,13,18,.98), rgba(12,8,12,.98));
}

.landing-dashboard-page .gaming-topspender-table-wrap {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    background: #1A1218;
    border-color: rgba(214,173,100,.14);
}

.landing-dashboard-page .gaming-topspender-table {
    width: 100%;
    min-width: 560px;
}

.landing-dashboard-page .gaming-topspender-table th {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(220,20,60,.1);
}

.landing-dashboard-page .gaming-topspender-table td {
    padding-top: 11px;
    padding-bottom: 11px;
}

.landing-dashboard-page .gaming-topspender-table tbody tr:hover td {
    background: rgba(220,20,60,.08);
}

.landing-dashboard-page .gaming-topspender-table tbody tr.is-top-rank td {
    background: linear-gradient(90deg, rgba(220,20,60,.16), rgba(214,173,100,.07));
}

.landing-dashboard-page .gaming-topspender-table tbody tr.is-top-rank-1 td {
    background: linear-gradient(90deg, rgba(214,173,100,.18), rgba(220,20,60,.12));
}

.landing-dashboard-page .gaming-rank-badge,
.landing-dashboard-page .gaming-amount-badge,
.landing-dashboard-page .gaming-period-badge {
    color: #FFF7FA;
    border: 1px solid rgba(214,173,100,.2);
    border-radius: 999px;
    background: rgba(214,173,100,.09);
    padding: 5px 9px;
    font-weight: 900;
}

.landing-dashboard-page .realm-event-panel {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .landing-dashboard-page .realm-content-layout {
        grid-template-columns: 1fr;
    }

    .landing-dashboard-page .realm-status-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-dashboard-page .realm-feature-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-dashboard-page .realm-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .landing-dashboard-page {
        padding: 12px;
    }

    .landing-dashboard-page .realm-hero {
        min-height: 520px;
        align-items: flex-end;
        padding: 28px 20px;
    }

    .landing-dashboard-page .realm-hero__status {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 16px;
    }

    .landing-dashboard-page .realm-status-strip,
    .landing-dashboard-page .realm-feature-strip {
        grid-template-columns: 1fr;
    }

    .landing-dashboard-page .realm-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .landing-dashboard-page .realm-hero__actions a,
    .landing-dashboard-page .realm-hero__actions button {
        width: 100%;
    }

    .landing-dashboard-page .realm-news-grid {
        grid-template-columns: 1fr;
    }

    .landing-dashboard-page .realm-news-card,
    .landing-dashboard-page .realm-news-card--featured {
        grid-template-columns: 1fr;
    }

    .landing-dashboard-page .realm-news-card__media,
    .landing-dashboard-page .realm-news-card--featured .realm-news-card__media,
    .landing-dashboard-page .realm-news-grid--single .realm-news-card--featured .realm-news-card__media {
        min-height: 210px;
    }

    .landing-dashboard-page .realm-section-heading {
        display: grid;
    }
}

html.dark,
body.landing-body {
    color-scheme: dark;
    background:
        radial-gradient(circle at 18% 6%, rgba(56, 189, 248, .16), transparent 28rem),
        radial-gradient(circle at 82% 14%, rgba(247, 195, 95, .14), transparent 26rem),
        linear-gradient(180deg, #050711 0%, #090b17 46%, #05060b 100%);
    color: var(--gaming-text);
}

body.landing-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 82%);
}

.news-shell {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.news-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(7rem, 12vw, 10rem) 0 clamp(3.25rem, 7vw, 5rem);
    background-image:
        linear-gradient(180deg, rgba(7, 7, 10, .68), rgba(7, 7, 10, .9)),
        radial-gradient(circle at 50% 20%, rgba(220, 20, 60, .24), transparent 28rem),
        var(--page-bg, linear-gradient(135deg, #10070d, #07070a 62%, #160912));
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid rgba(220, 20, 60, .22);
}

.news-hero::before,
.news-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.news-hero::before {
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .72), transparent 32%, transparent 68%, rgba(0, 0, 0, .72)),
        repeating-linear-gradient(135deg, rgba(246, 240, 242, .035) 0 1px, transparent 1px 18px);
    opacity: .72;
}

.news-hero::after {
    left: -8%;
    right: -8%;
    bottom: -1px;
    z-index: -1;
    height: 36%;
    background: linear-gradient(135deg, rgba(8, 6, 9, .96), rgba(16, 8, 13, .92));
    clip-path: polygon(0 58%, 9% 45%, 18% 62%, 29% 34%, 41% 64%, 52% 38%, 64% 61%, 75% 43%, 86% 63%, 95% 49%, 100% 56%, 100% 100%, 0 100%);
    opacity: .9;
}

.news-hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.news-hero__backdrop span {
    position: absolute;
    border-radius: 999px;
    background: rgba(240, 58, 88, .62);
    box-shadow: 0 0 24px rgba(220, 20, 60, .44);
    opacity: .36;
}

.news-hero__backdrop span:nth-child(1) { top: 26%; left: 14%; width: 3px; height: 3px; }
.news-hero__backdrop span:nth-child(2) { top: 18%; right: 22%; width: 2px; height: 2px; }
.news-hero__backdrop span:nth-child(3) { bottom: 34%; right: 40%; width: 4px; height: 4px; }

.news-hero__content {
    position: relative;
    max-width: 860px;
}

.news-hero__content::before {
    content: "";
    position: absolute;
    left: 0;
    top: -22px;
    width: 72px;
    height: 72px;
    transform: rotate(45deg);
    border: 1px solid rgba(240, 58, 88, .34);
    background: rgba(83, 9, 24, .14);
    pointer-events: none;
}

.news-hero__eyebrow,
.news-empty__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--crimson-bright);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.news-hero__eyebrow-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(240, 58, 88, .42);
    border-radius: 12px;
    background: rgba(83, 9, 24, .34);
}

.news-hero__title {
    margin: 16px 0 0;
    color: var(--text-primary);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 950;
    line-height: .92;
    letter-spacing: -.055em;
    text-transform: uppercase;
    text-shadow: 0 0 34px rgba(220, 20, 60, .32), 0 22px 60px rgba(0, 0, 0, .82);
}

.news-hero__description {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.75;
}

.news-breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: rgba(7, 7, 10, .54);
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 800;
}

.news-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-secondary);
}

.news-breadcrumb a:hover,
.news-breadcrumb a:focus-visible { color: var(--crimson-soft); }
.news-breadcrumb strong { color: var(--text-primary); }

.news-page {
    position: relative;
    isolation: isolate;
    padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(4rem, 8vw, 7rem);
    background-image:
        linear-gradient(180deg, rgba(9, 7, 10, .96), rgba(9, 7, 10, .9)),
        radial-gradient(circle at 12% 8%, rgba(220, 20, 60, .18), transparent 22rem),
        radial-gradient(circle at 88% 24%, rgba(240, 58, 88, .12), transparent 24rem),
        var(--section-bg, linear-gradient(145deg, #07070a, #100c10 52%, #09070a));
    background-position: center;
    background-size: cover;
}

.news-page__backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 92%);
}

.featured-chronicle,
.news-archive {
    position: relative;
}

.featured-chronicle {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.featured-chronicle__card,
.news-archive {
    overflow: hidden;
    border: 1px solid var(--border-crimson);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(220, 20, 60, .09), transparent 34%),
        linear-gradient(145deg, rgba(24, 17, 23, .96), rgba(7, 7, 10, .96));
    box-shadow: 0 28px 84px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.featured-chronicle__card {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(360px, .92fr);
}

.featured-chronicle__media {
    position: relative;
    display: block;
    min-height: 380px;
    overflow: hidden;
    background: radial-gradient(circle, rgba(220, 20, 60, .22), rgba(7, 7, 10, .96));
}

.featured-chronicle__media img,
.news-chronicle-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.featured-chronicle__card:hover .featured-chronicle__media img,
.news-chronicle-card:hover .news-chronicle-card__media img { transform: scale(1.04); }

.featured-chronicle__overlay,
.news-chronicle-card__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 22%, rgba(7, 7, 10, .82));
    pointer-events: none;
}

.featured-chronicle__fallback,
.news-chronicle-card__fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    color: var(--crimson-bright);
    font-size: 3rem;
}

.featured-chronicle__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: clamp(1.5rem, 3vw, 2.6rem);
}

.featured-chronicle__content::before,
.news-archive::before,
.news-chronicle-card::before,
.news-empty::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    border: 1px solid rgba(240, 58, 88, .68);
    background: var(--surface-elevated);
    pointer-events: none;
}

.featured-chronicle__content::before { top: 18px; right: 18px; }
.news-archive::before { top: 18px; left: 18px; }
.news-chronicle-card::before { top: 12px; right: 12px; z-index: 2; }
.news-empty::before { top: 16px; right: 16px; }

.featured-chronicle__meta,
.news-chronicle-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-chronicle__meta span {
    padding: 6px 10px;
    border: 1px solid rgba(240, 58, 88, .38);
    border-radius: 999px;
    color: var(--text-primary);
    background: rgba(220, 20, 60, .18);
}

.featured-chronicle__meta time,
.news-chronicle-card__meta time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-variant-numeric: tabular-nums;
}

.featured-chronicle__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

.featured-chronicle__title a,
.news-chronicle-card__title a { color: var(--text-primary); transition: color .18s ease; }
.featured-chronicle__title a:hover,
.featured-chronicle__title a:focus-visible,
.news-chronicle-card__title a:hover,
.news-chronicle-card__title a:focus-visible { color: var(--crimson-soft); }

.featured-chronicle__content p,
.news-chronicle-card__body p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.featured-chronicle__action,
.news-chronicle-card__action,
.news-empty__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 15px;
    border: 1px solid rgba(240, 58, 88, .44);
    border-radius: 999px;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(220, 20, 60, .92), rgba(93, 9, 26, .92));
    box-shadow: 0 0 24px rgba(220, 20, 60, .18);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.featured-chronicle__action,
.news-chronicle-card__action { align-self: flex-start; }
.featured-chronicle__action:hover,
.news-chronicle-card__action:hover,
.news-empty__action:hover { transform: translateY(-2px); border-color: var(--crimson-bright); box-shadow: 0 0 34px rgba(220, 20, 60, .32); }
.featured-chronicle__action:focus-visible,
.news-chronicle-card__action:focus-visible,
.news-empty__action:focus-visible,
.news-filter a:focus-visible,
.news-chronicle-card__media:focus-visible { outline: 2px solid var(--crimson-bright); outline-offset: 3px; }

.news-archive {
    padding: clamp(1rem, 2.5vw, 1.6rem);
}

.news-archive__header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    padding: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 22px;
    background: rgba(7, 7, 10, .48);
}

.news-archive__heading h2 {
    margin: 8px 0 0;
    color: var(--text-primary);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.news-archive__heading p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--text-secondary);
    line-height: 1.65;
}

.news-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 520px;
}

.news-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    color: var(--text-muted);
    background: rgba(16, 12, 16, .78);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.news-filter a:hover,
.news-filter a.is-active {
    color: var(--text-primary);
    border-color: rgba(240, 58, 88, .64);
    background: linear-gradient(135deg, rgba(220, 20, 60, .88), rgba(93, 9, 26, .8));
    box-shadow: 0 0 24px rgba(220, 20, 60, .22);
}

.chronicle-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.chronicle-grid[aria-busy="true"] {
    opacity: .62;
    pointer-events: none;
}

.news-chronicle-card {
    position: relative;
    overflow: hidden;
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid rgba(220, 20, 60, .2);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(31, 20, 27, .98), rgba(13, 10, 14, .98));
    box-shadow: 0 18px 45px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .03);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.news-chronicle-card[hidden] { display: none; }
.news-chronicle-card:hover { transform: translateY(-4px); border-color: rgba(220, 20, 60, .45); box-shadow: 0 24px 55px rgba(0, 0, 0, .4), 0 12px 28px rgba(220, 20, 60, .09); }

.news-chronicle-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle, rgba(220, 20, 60, .2), rgba(7, 7, 10, .94));
}

.news-chronicle-card__category {
    position: absolute;
    left: 13px;
    bottom: 13px;
    z-index: 1;
    max-width: calc(100% - 26px);
    overflow: hidden;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    color: var(--text-primary);
    background: rgba(220, 20, 60, .88);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.news-chronicle-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
}

.news-chronicle-card__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-chronicle-card__body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-chronicle-card__footer { margin-top: auto; }
.news-chronicle-card__action { min-height: 40px; padding: 9px 12px; background: rgba(7, 7, 10, .42); }
.news-chronicle-card__action:hover { background: linear-gradient(135deg, rgba(220, 20, 60, .88), rgba(93, 9, 26, .82)); }

.news-empty {
    position: relative;
    grid-column: 1 / -1;
    overflow: hidden;
    min-height: 250px;
    display: grid;
    place-items: center;
    padding: 34px;
    border: 1px solid rgba(220, 20, 60, .24);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 0%, rgba(220, 20, 60, .2), transparent 20rem),
        linear-gradient(145deg, rgba(33, 22, 29, .92), rgba(7, 7, 10, .92));
    text-align: center;
}

.news-empty__ornament {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 18px);
}

.news-empty__icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 14px;
    border: 1px solid rgba(240, 58, 88, .42);
    border-radius: 20px;
    color: var(--crimson-bright);
    background: rgba(83, 9, 24, .28);
    font-size: 1.8rem;
}

.news-empty h2 { position: relative; margin: 8px 0 0; color: var(--text-primary); font-size: clamp(24px, 4vw, 38px); }
.news-empty p { position: relative; max-width: 560px; margin: 10px auto 18px; color: var(--text-secondary); }
.news-empty__action { position: relative; }

.news-pagination {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.news-pagination:empty { display: none; }
.news-pagination button,
.news-pagination a,
.news-pagination span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    color: var(--text-secondary);
    background: rgba(16, 12, 16, .72);
    font-weight: 800;
}

.news-pagination button:not(:disabled):hover,
.news-pagination a:hover,
.news-pagination .active span,
.news-pagination [aria-current="page"] span,
.news-pagination span[aria-current="page"] {
    color: var(--text-primary);
    border-color: rgba(240, 58, 88, .6);
    background: linear-gradient(135deg, rgba(220, 20, 60, .86), rgba(93, 9, 26, .82));
}

.news-pagination button:disabled,
.news-pagination .disabled span { opacity: .45; cursor: not-allowed; }

.download-shell {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.download-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(300px, 38vw, 430px);
    display: flex;
    align-items: center;
    padding: clamp(6.5rem, 10vw, 8.5rem) 0 clamp(2.8rem, 6vw, 4rem);
    background-image:
        linear-gradient(180deg, rgba(7, 7, 10, .64), rgba(7, 7, 10, .9)),
        radial-gradient(circle at 22% 28%, rgba(220, 20, 60, .3), transparent 25rem),
        var(--page-bg, linear-gradient(135deg, #12070d, #07070a 58%, #170812));
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid rgba(220, 20, 60, .24);
}

.download-hero::before,
.download-hero::after,
.download-page__backdrop,
.download-hero__backdrop,
.download-hero__ornament {
    pointer-events: none;
}

.download-hero::before,
.download-hero::after {
    content: "";
    position: absolute;
}

.download-hero::before {
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .74), transparent 34%, transparent 68%, rgba(0, 0, 0, .68)),
        repeating-linear-gradient(135deg, rgba(246, 240, 242, .035) 0 1px, transparent 1px 20px);
}

.download-hero::after {
    left: -8%;
    right: -8%;
    bottom: -1px;
    z-index: -1;
    height: 34%;
    background: linear-gradient(135deg, rgba(8, 6, 9, .98), rgba(16, 8, 13, .94));
    clip-path: polygon(0 58%, 10% 44%, 21% 62%, 32% 34%, 43% 63%, 56% 38%, 68% 61%, 79% 43%, 91% 62%, 100% 52%, 100% 100%, 0 100%);
}

.download-hero__backdrop,
.download-hero__ornament {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.download-hero__backdrop span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: rgba(240, 58, 88, .75);
    box-shadow: 0 0 24px rgba(220, 20, 60, .54);
    opacity: .45;
}

.download-hero__backdrop span:nth-child(1) { top: 24%; left: 16%; }
.download-hero__backdrop span:nth-child(2) { top: 20%; right: 22%; width: 2px; height: 2px; }
.download-hero__backdrop span:nth-child(3) { bottom: 36%; right: 42%; width: 4px; height: 4px; }

.download-hero__ornament {
    background:
        radial-gradient(circle at 74% 44%, rgba(240, 58, 88, .18), transparent 17rem),
        radial-gradient(circle at 74% 44%, rgba(198, 184, 190, .08), transparent 28rem);
}

.download-hero__content {
    position: relative;
    max-width: 820px;
}

.download-hero__content::before {
    content: "";
    position: absolute;
    left: 0;
    top: -20px;
    width: 68px;
    height: 68px;
    transform: rotate(45deg);
    border: 1px solid rgba(240, 58, 88, .34);
    background: rgba(83, 9, 24, .13);
    pointer-events: none;
}

.download-hero__eyebrow,
.client-download__label,
.download-section-heading__eyebrow,
.download-file-card__type,
.download-empty__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--crimson-bright);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.download-hero__eyebrow-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(240, 58, 88, .42);
    border-radius: 12px;
    background: rgba(83, 9, 24, .34);
}

.download-hero__title {
    margin: 16px 0 0;
    color: var(--text-primary);
    font-size: clamp(40px, 7vw, 78px);
    font-weight: 950;
    line-height: .92;
    letter-spacing: -.055em;
    text-transform: uppercase;
    text-shadow: 0 0 34px rgba(220, 20, 60, .34), 0 22px 60px rgba(0, 0, 0, .84);
}

.download-hero__description {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.75;
}

.download-page {
    position: relative;
    isolation: isolate;
    padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(4rem, 8vw, 7rem);
    background-image:
        linear-gradient(180deg, rgba(9, 7, 10, .97), rgba(9, 7, 10, .92)),
        radial-gradient(circle at 14% 8%, rgba(220, 20, 60, .18), transparent 22rem),
        radial-gradient(circle at 88% 20%, rgba(240, 58, 88, .12), transparent 24rem),
        linear-gradient(145deg, #07070a, #100c10 54%, #09070a);
}

.download-page__backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .78), transparent 92%);
}

.client-download,
.download-options,
.download-information {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-crimson);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(220, 20, 60, .09), transparent 34%),
        linear-gradient(145deg, rgba(24, 17, 23, .97), rgba(7, 7, 10, .96));
    box-shadow: 0 28px 84px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.client-download {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 3vw, 2.4rem);
    align-items: center;
    margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.client-download::before,
.download-options::before,
.download-information::before,
.download-file-card::before,
.download-empty::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    border: 1px solid rgba(240, 58, 88, .68);
    background: var(--surface-elevated);
    pointer-events: none;
}

.client-download::before { top: 18px; left: 18px; }
.download-options::before,
.download-information::before { top: 18px; right: 18px; }
.download-file-card::before { right: 12px; top: 12px; z-index: 2; }
.download-empty::before { right: 16px; top: 16px; }

.client-download__visual {
    position: relative;
    display: grid;
    min-height: 300px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 40%, rgba(220, 20, 60, .22), transparent 14rem),
        linear-gradient(145deg, rgba(16, 12, 16, .88), rgba(7, 7, 10, .82));
}

.client-download__visual-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(220, 20, 60, .24);
    filter: blur(30px);
    pointer-events: none;
}

.client-download__seal {
    position: absolute;
    display: grid;
    place-items: center;
    width: 150px;
    height: 150px;
    transform: rotate(45deg);
    border: 1px solid rgba(240, 58, 88, .24);
    color: rgba(240, 58, 88, .2);
    font-size: 3.6rem;
}

.client-download__seal i { transform: rotate(-45deg); }
.client-download__visual img { position: relative; z-index: 1; width: min(120px, 34vw); height: auto; filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .62)) drop-shadow(0 0 26px rgba(220, 20, 60, .28)); }

.client-download__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.client-download__title,
.download-section-heading h2,
.download-empty h2 {
    margin: 0;
    color: var(--text-primary);
    text-shadow: 0 0 28px rgba(220, 20, 60, .24);
}

.client-download__title {
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.06;
    letter-spacing: -.035em;
}

.client-download__description,
.download-section-heading p,
.download-file-card__body p,
.download-info-card p,
.download-empty p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.client-download__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.client-info-item {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    background: rgba(7, 7, 10, .48);
}

.client-info-item__label {
    display: block;
    color: var(--text-muted);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.client-info-item__value {
    display: block;
    overflow-wrap: anywhere;
    margin-top: 4px;
    color: var(--text-primary);
}

.client-download__actions,
.download-file-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-button,
.download-file-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    border-radius: 14px;
    font-weight: 900;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.download-button img,
.download-file-card__icon img,
.download-file-card__action img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.download-button--primary {
    min-height: 62px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 93, 120, .45);
    color: #fff;
    background: linear-gradient(135deg, var(--crimson-bright), #b90e35);
    box-shadow: 0 16px 34px rgba(220, 20, 60, .22), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.download-button--secondary,
.download-file-card__action {
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .09);
    color: var(--text-primary);
    background: rgba(7, 7, 10, .5);
}

.download-button span,
.download-button strong,
.download-button small {
    display: block;
}

.download-button small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .72);
    font-size: .75rem;
}

.download-button:hover,
.download-file-card__action:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 58, 88, .62);
    box-shadow: 0 18px 34px rgba(220, 20, 60, .18);
}

.download-button:active,
.download-file-card__action:active { transform: translateY(-1px); }
.download-button:focus-visible,
.download-file-card__action:focus-visible { outline: 2px solid var(--crimson-bright); outline-offset: 3px; }

.download-options,
.download-information {
    padding: clamp(1rem, 2.5vw, 1.6rem);
}

.download-information {
    margin-top: clamp(1.6rem, 4vw, 2.6rem);
}

.download-section-heading {
    position: relative;
    z-index: 1;
    padding: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 22px;
    background: rgba(7, 7, 10, .48);
}

.download-section-heading h2 {
    margin-top: 8px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.download-section-heading p {
    max-width: 780px;
    margin-top: 10px;
}

.download-files-grid,
.download-info-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.download-files-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-file-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(220, 20, 60, .2);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(31, 20, 27, .98), rgba(13, 10, 14, .98));
    box-shadow: 0 18px 45px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .03);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.download-file-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 20, 60, .45);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .4), 0 12px 28px rgba(220, 20, 60, .09);
}

.download-file-card__icon,
.download-info-card__icon,
.download-empty__icon {
    display: grid;
    place-items: center;
    border: 1px solid rgba(240, 58, 88, .32);
    color: var(--crimson-bright);
    background: rgba(83, 9, 24, .22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.download-file-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
}

.download-file-card__body {
    min-width: 0;
}

.download-file-card__title {
    margin: 6px 0 0;
    overflow-wrap: anywhere;
    color: var(--text-primary);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.25;
}

.download-file-card__body p {
    margin-top: 8px;
}

.download-file-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.download-file-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 999px;
    color: var(--text-secondary);
    background: rgba(7, 7, 10, .46);
    font-size: .78rem;
    font-weight: 800;
}

.download-file-card__actions {
    grid-column: 1 / -1;
    padding-top: 4px;
}

.download-file-card__action--mirror:hover,
.download-button--secondary:hover {
    background: rgba(83, 9, 24, .42);
}

.download-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-info-card {
    display: flex;
    gap: 13px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    background: rgba(7, 7, 10, .46);
}

.download-info-card__icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
}

.download-info-card h3 {
    margin: 0 0 6px;
    color: var(--text-primary);
    font-size: 1rem;
}

.download-empty {
    position: relative;
    grid-column: 1 / -1;
    overflow: hidden;
    display: grid;
    place-items: center;
    min-height: 230px;
    padding: 32px;
    border: 1px solid rgba(220, 20, 60, .24);
    border-radius: 22px;
    background: radial-gradient(circle at 50% 0%, rgba(220, 20, 60, .2), transparent 20rem), linear-gradient(145deg, rgba(33, 22, 29, .92), rgba(7, 7, 10, .92));
    text-align: center;
}

.download-empty__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 14px;
    border-radius: 20px;
    font-size: 1.8rem;
}

.download-empty h2 {
    margin-top: 8px;
    font-size: clamp(24px, 4vw, 38px);
}

.download-empty p {
    max-width: 560px;
    margin-top: 10px;
}

.landing-content-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
    width: min(1600px, 100%);
    margin: 0 auto;
}

.landing-content-layout__sidebar {
    display: grid;
    gap: 16px;
}

.chronicle-section,
.realm-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(220, 20, 60, .34);
    background:
        linear-gradient(135deg, rgba(240, 58, 88, .08), transparent 28%),
        linear-gradient(180deg, rgba(23, 16, 22, .96), rgba(7, 7, 10, .94));
    box-shadow: 0 26px 80px rgba(0, 0, 0, .52), inset 0 1px 0 rgba(246, 240, 242, .06);
    backdrop-filter: blur(18px);
}

.chronicle-section::before,
.realm-panel::before,
.chronicle-section::after,
.realm-panel::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    border: 1px solid rgba(240, 58, 88, .7);
    background: var(--surface-elevated);
    pointer-events: none;
}

.chronicle-section::before,
.realm-panel::before { top: 14px; left: 14px; }
.chronicle-section::after,
.realm-panel::after { right: 14px; bottom: 14px; }

.chronicle-section { border-radius: 32px; padding: clamp(18px, 2.4vw, 30px); }
.realm-panel { border-radius: 24px; padding: 16px; }

.chronicle-section__ornament,
.realm-panel__ornament {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 0%, rgba(220, 20, 60, .28), transparent 18rem),
        linear-gradient(90deg, transparent, rgba(198, 184, 190, .07), transparent);
    opacity: .75;
}

.chronicle-section__header,
.realm-panel__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.chronicle-section__header { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(198, 184, 190, .12); }
.section-kicker,
.realm-panel__eyebrow,
.chronicle-empty__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--crimson-bright);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.chronicle-section__heading h2,
.realm-panel__title,
.chronicle-empty h3 {
    margin: 0;
    color: var(--text-primary);
    text-shadow: 0 0 24px rgba(220, 20, 60, .26);
}

.chronicle-section__heading h2 { margin-top: 8px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: .95; text-transform: uppercase; }
.chronicle-section__heading p,
.chronicle-empty p { margin: 10px 0 0; color: var(--text-secondary); }

.chronicle-section__all,
.chronicle-card__link,
.chronicle-empty__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(240, 58, 88, .42);
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(220, 20, 60, .22), rgba(83, 9, 24, .34));
    box-shadow: 0 0 24px rgba(220, 20, 60, .14);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.chronicle-section__all,
.chronicle-empty__action { min-width: 118px; padding: 11px 15px; border-radius: 999px; font-weight: 900; }
.chronicle-section__all:hover,
.chronicle-card__link:hover,
.chronicle-empty__action:hover { transform: translateY(-2px); border-color: var(--crimson-bright); box-shadow: 0 0 34px rgba(220, 20, 60, .28); }

.chronicle-section__content { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.chronicle-card { display: grid; grid-template-rows: auto 1fr; overflow: hidden; border: 1px solid rgba(198, 184, 190, .12); border-radius: 24px; background: rgba(14, 11, 15, .82); transition: transform .18s ease, border-color .18s ease; }
.chronicle-card--featured { grid-column: 1 / -1; grid-template-columns: minmax(280px, .95fr) 1fr; grid-template-rows: none; }
.chronicle-card:hover { transform: translateY(-3px); border-color: rgba(240, 58, 88, .5); }
.chronicle-card__media { position: relative; min-height: 210px; overflow: hidden; background: radial-gradient(circle, rgba(220, 20, 60, .22), rgba(7, 7, 10, .95)); }
.chronicle-card:not(.chronicle-card--featured) .chronicle-card__media { min-height: 160px; }
.chronicle-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.chronicle-card:hover .chronicle-card__media img { transform: scale(1.045); }
.chronicle-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; min-height: inherit; color: var(--crimson-bright); font-size: 2.2rem; }
.chronicle-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 26%, rgba(7, 7, 10, .86)); }
.chronicle-card__meta { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--text-primary); }
.chronicle-card__meta strong { max-width: 58%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 5px 9px; border-radius: 999px; background: rgba(220, 20, 60, .88); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.chronicle-card__meta small { display: inline-flex; align-items: center; gap: 6px; color: var(--text-secondary); font-weight: 800; }
.chronicle-card__body { display: flex; flex-direction: column; gap: 12px; padding: 20px; }
.chronicle-card__body h3 { margin: 0; color: var(--text-primary); font-size: 1.32rem; line-height: 1.15; }
.chronicle-card--featured .chronicle-card__body h3 { font-size: clamp(1.65rem, 2.6vw, 2.35rem); }
.chronicle-card__body p { margin: 0; color: var(--text-secondary); line-height: 1.65; }
.chronicle-card__link { margin-top: auto; align-self: flex-start; padding: 9px 12px; border-radius: 999px; font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.chronicle-empty { grid-column: 1 / -1; min-height: 205px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 20px; padding: 24px; border: 1px solid rgba(240, 58, 88, .28); border-radius: 26px; background: linear-gradient(135deg, rgba(33, 21, 29, .92), rgba(14, 11, 15, .9)); }
.chronicle-empty__visual { position: relative; display: grid; place-items: center; width: 92px; height: 92px; }
.chronicle-empty__glow { position: absolute; inset: 0; border-radius: 50%; background: rgba(220, 20, 60, .2); filter: blur(16px); }
.chronicle-empty__icon { position: relative; display: grid; place-items: center; width: 68px; height: 68px; border: 1px solid rgba(240, 58, 88, .42); border-radius: 18px; color: var(--crimson-bright); background: rgba(7, 7, 10, .72); font-size: 1.8rem; transform: rotate(45deg); }
.chronicle-empty__icon i { transform: rotate(-45deg); }

.realm-panel__heading { display: flex; align-items: center; min-width: 0; gap: 11px; }
.realm-panel__icon { display: grid; flex: 0 0 auto; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(240, 58, 88, .4); border-radius: 14px; color: var(--crimson-bright); background: rgba(83, 9, 24, .32); box-shadow: inset 0 0 18px rgba(220, 20, 60, .12); }
.realm-panel__title { font-size: 1rem; text-transform: uppercase; }
.server-monitor__summary { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; margin: 16px 0; padding: 14px; border: 1px solid rgba(198, 184, 190, .12); border-radius: 18px; background: rgba(7, 7, 10, .5); }
.server-monitor__pulse { width: 14px; height: 14px; border-radius: 50%; background: var(--offline); box-shadow: 0 0 0 7px rgba(240, 82, 110, .12), 0 0 24px rgba(240, 82, 110, .6); }
.server-monitor__pulse.is-online { background: var(--online); box-shadow: 0 0 0 7px rgba(69, 217, 154, .12), 0 0 24px rgba(69, 217, 154, .55); }
.server-monitor__summary-label,
.server-stat__label { display: block; color: var(--text-muted); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.server-monitor__summary strong { color: var(--text-primary); font-size: 1.15rem; }
.server-monitor__stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.server-stat { display: flex; align-items: center; gap: 10px; min-width: 0; padding: 11px; border: 1px solid rgba(198, 184, 190, .11); border-radius: 16px; background: rgba(33, 21, 29, .72); }
.server-stat--wide { grid-column: 1 / -1; }
.server-stat__icon { display: grid; flex: 0 0 auto; place-items: center; width: 34px; height: 34px; border-radius: 12px; color: var(--crimson-bright); background: rgba(220, 20, 60, .12); }
.server-stat__content { min-width: 0; }
.server-stat__value { display: block; overflow: hidden; color: var(--text-primary); text-overflow: ellipsis; white-space: nowrap; }
.server-stat__value--time { font-size: .88rem; }
.status-badge { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; padding: 7px 9px; border-radius: 999px; font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.status-badge i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-badge--online { color: var(--online); background: rgba(69, 217, 154, .12); border: 1px solid rgba(69, 217, 154, .28); }
.status-badge--offline { color: var(--offline); background: rgba(240, 82, 110, .12); border: 1px solid rgba(240, 82, 110, .28); }

.gm-roster__count { flex: 0 0 auto; color: var(--text-muted); font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.gm-roster__list { position: relative; z-index: 1; display: grid; gap: 9px; margin-top: 15px; }
.gm-member { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 10px; border: 1px solid rgba(198, 184, 190, .11); border-radius: 16px; background: rgba(33, 21, 29, .7); transition: transform .18s ease, border-color .18s ease; }
.gm-member:hover { transform: translateX(3px); border-color: rgba(240, 58, 88, .42); }
.gm-member__avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 15px; color: #e5c06d; background: linear-gradient(135deg, rgba(220, 20, 60, .18), rgba(7, 7, 10, .72)); border: 1px solid rgba(229, 192, 109, .22); }
.gm-member__identity { min-width: 0; }
.gm-member__name { display: block; overflow: hidden; color: var(--text-primary); text-overflow: ellipsis; white-space: nowrap; }
.gm-member__presence { justify-self: end; }

.quick-command__grid { position: relative; z-index: 1; display: grid; gap: 9px; margin-top: 15px; }
.quick-command__item { display: grid; grid-template-columns: 42px minmax(0, 1fr) 28px; align-items: center; gap: 10px; padding: 10px; border: 1px solid rgba(198, 184, 190, .11); border-radius: 16px; background: rgba(14, 11, 15, .7); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.quick-command__item:hover { transform: translateY(-2px); border-color: rgba(240, 58, 88, .5); background: rgba(83, 9, 24, .38); }
.quick-command__item:focus-visible { outline: 2px solid var(--crimson-bright); outline-offset: 3px; }
.quick-command__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; color: var(--crimson-bright); background: rgba(220, 20, 60, .12); }
.quick-command__content { min-width: 0; }
.quick-command__content strong,
.quick-command__content small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.quick-command__content strong { color: var(--text-primary); }
.quick-command__content small { margin-top: 2px; color: var(--text-muted); font-size: .74rem; }
.quick-command__arrow { display: grid; place-items: center; color: var(--text-muted); transition: transform .18s ease, color .18s ease; }
.quick-command__item:hover .quick-command__arrow { color: var(--crimson-bright); transform: translateX(3px); }

.landing-shell {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -12%, rgba(139, 92, 246, .16), transparent 32rem),
        linear-gradient(180deg, rgba(3, 6, 18, .55), rgba(3, 6, 18, .94));
}

.landing-navbar {
    background: linear-gradient(180deg, rgba(3, 6, 18, .82), rgba(3, 6, 18, .2));
    border-bottom: 1px solid rgba(247, 195, 95, .12);
}

.landing-navbar.is-scrolled,
.landing-menu-open .landing-navbar {
    background: rgba(3, 6, 18, .9);
    border-color: var(--gaming-border);
    box-shadow: 0 16px 55px rgba(0, 0, 0, .38);
}

.landing-brand,
.landing-nav-link,
.landing-auth-links a,
.landing-auth-links button {
    color: #f1e7d5;
}

.landing-brand span {
    text-shadow: 0 0 18px rgba(247, 195, 95, .32);
}

.landing-nav-link {
    border: 1px solid transparent;
    border-radius: 999px;
}

.landing-nav-link:hover {
    color: var(--gaming-gold);
    background: rgba(247, 195, 95, .08);
    border-color: rgba(247, 195, 95, .2);
    box-shadow: 0 0 22px rgba(247, 195, 95, .12);
}

.landing-auth-links__primary,
.landing-btn--primary,
.landing-filter button.is-active,
.landing-pagination button:not(:disabled):hover {
    background: linear-gradient(135deg, #ffe7a3 0%, var(--gaming-gold) 36%, var(--gaming-gold-2) 100%);
    color: #160c02 !important;
    border-color: rgba(255, 231, 163, .76);
    box-shadow: 0 0 26px rgba(247, 195, 95, .36), inset 0 1px 0 rgba(255, 255, 255, .38);
}

.landing-hero,
.landing-page-hero {
    min-height: clamp(520px, 70vh, 820px);
    background-image:
        radial-gradient(circle at 50% 42%, rgba(247, 195, 95, .16), transparent 24rem),
        linear-gradient(180deg, rgba(2, 5, 14, .22), rgba(2, 5, 14, .86)),
        var(--hero-bg, var(--page-bg, linear-gradient(135deg, #071426, #170b1f 54%, #08070c)));
    border: 0;
    box-shadow: inset 0 -180px 160px rgba(0, 0, 0, .92);
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .72), transparent 30%, transparent 70%, rgba(0, 0, 0, .72)),
        radial-gradient(ellipse at 50% 100%, rgba(56, 189, 248, .2), transparent 42%);
}

.landing-hero::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -24%;
    height: 44%;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(247, 195, 95, .26), transparent 64%);
    filter: blur(10px);
    animation: gamingGlowPulse 5s ease-in-out infinite alternate;
}

.landing-hero--small {
    min-height: clamp(360px, 48vh, 560px);
}

.landing-hero__content,
.landing-page-hero > div {
    z-index: 2;
    transform: translateY(1.5rem);
}

.landing-logo {
    filter: drop-shadow(0 22px 38px rgba(0, 0, 0, .75)) drop-shadow(0 0 28px rgba(247, 195, 95, .28));
}

.landing-hero h1,
.landing-page-hero h1 {
    letter-spacing: -.055em;
    text-shadow: 0 0 34px rgba(247, 195, 95, .28), 0 20px 60px rgba(0, 0, 0, .9);
}

.landing-lead,
.landing-page-hero p:not(.landing-kicker) {
    color: #d7dceb;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .82);
}

.landing-btn {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gaming-border);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.landing-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
    transition: transform .55s ease;
}

.landing-btn:hover {
    transform: translateY(-2px);
}

.landing-btn:hover::before {
    transform: translateX(120%);
}

.landing-btn--ghost {
    background: linear-gradient(180deg, rgba(15, 23, 42, .76), rgba(3, 7, 18, .84));
    border-color: var(--gaming-blue-border);
    color: #eaf6ff;
    box-shadow: 0 0 22px rgba(56, 189, 248, .14);
}

.landing-btn--ghost:hover {
    border-color: rgba(56, 189, 248, .54);
    box-shadow: 0 0 34px rgba(56, 189, 248, .24);
}

.landing-bg-section {
    padding: clamp(2rem, 4vw, 4rem) 1rem clamp(4rem, 7vw, 7rem);
    background-image:
        linear-gradient(180deg, rgba(3, 6, 18, .88), rgba(3, 6, 18, .74) 38%, rgba(3, 6, 18, .92)),
        radial-gradient(circle at 18% 16%, rgba(56, 189, 248, .2), transparent 22rem),
        radial-gradient(circle at 88% 42%, rgba(247, 195, 95, .14), transparent 24rem),
        var(--section-bg, linear-gradient(135deg, #071426, #12091c));
}

.landing-news-panel,
.landing-event-panel,
.landing-widget,
.landing-panel,
.landing-feature,
.landing-stat,
.landing-download-card,
.landing-news-card,
.landing-article,
.landing-featured-news,
.landing-mini-news {
    background: linear-gradient(180deg, rgba(11, 16, 32, .86), rgba(4, 7, 17, .92));
    border: 1px solid var(--gaming-border);
    box-shadow: var(--gaming-shadow), inset 0 1px 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(18px);
}

.landing-news-panel,
.landing-event-panel,
.landing-widget {
    position: relative;
    overflow: hidden;
}

.landing-news-panel::before,
.landing-event-panel::before,
.landing-widget::before,
.landing-download-card::before,
.landing-news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 18% 0%, rgba(247, 195, 95, .16), transparent 18rem), radial-gradient(circle at 100% 12%, rgba(56, 189, 248, .12), transparent 16rem);
    opacity: .8;
}

.landing-panel__head,
.landing-download-card__body,
.landing-news-card__content,
.landing-article__content,
.landing-widget-row,
.landing-featured-news > div,
.landing-mini-news > div {
    position: relative;
    z-index: 1;
}

.landing-kicker {
    color: var(--gaming-gold);
    text-shadow: 0 0 16px rgba(247, 195, 95, .28);
}

.landing-section h2,
.landing-panel h2,
.landing-panel__head h2,
.landing-download-card h2,
.landing-news-card h2,
.landing-featured-news h3,
.landing-mini-news h3 {
    color: #fff7e8;
}

.landing-panel__head a,
.landing-read-more,
.landing-back-link,
.landing-news-card h2 a {
    color: var(--gaming-gold);
    transition: color .16s ease, text-shadow .16s ease;
}

.landing-panel__head a:hover,
.landing-read-more:hover,
.landing-back-link:hover,
.landing-news-card h2 a:hover {
    color: #ffe7a3;
    text-shadow: 0 0 18px rgba(247, 195, 95, .36);
}

.landing-widget-row {
    border-color: rgba(255, 255, 255, .08);
}

.landing-widget-row span,
.landing-download-card p,
.landing-news-card p,
.landing-featured-news p,
.landing-mini-news p,
.landing-article__content,
.landing-muted {
    color: var(--gaming-muted);
}

.landing-featured-news,
.landing-mini-news,
.landing-download-card,
.landing-news-card {
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.landing-featured-news:hover,
.landing-mini-news:hover,
.landing-download-card:hover,
.landing-news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 195, 95, .5);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .52), 0 0 44px rgba(247, 195, 95, .14);
}

.landing-news-card__image,
.landing-featured-news a:first-child,
.landing-mini-news > img,
.landing-article__image {
    background: linear-gradient(135deg, rgba(56, 189, 248, .12), rgba(247, 195, 95, .1));
}

.landing-news-card__image img,
.landing-featured-news img,
.landing-mini-news img,
.landing-article__image {
    transition: transform .45s ease, filter .45s ease;
}

.landing-news-card:hover .landing-news-card__image img,
.landing-featured-news:hover img,
.landing-mini-news:hover img {
    transform: scale(1.045);
    filter: saturate(1.12) contrast(1.05);
}

.landing-news-meta span,
.landing-news span,
.landing-featured-news span,
.landing-mini-news span,
.landing-file-meta {
    background: linear-gradient(135deg, #ffe7a3, var(--gaming-gold));
    color: #160c02;
    border: 1px solid rgba(255, 231, 163, .5);
    box-shadow: 0 0 18px rgba(247, 195, 95, .18);
}

.landing-download-card__icon {
    background: radial-gradient(circle at 30% 22%, #fff4c7, var(--gaming-gold) 42%, var(--gaming-gold-2));
    box-shadow: 0 0 28px rgba(247, 195, 95, .3);
}

.landing-download-card__actions {
    position: relative;
    z-index: 1;
}

.landing-filter button,
.landing-pagination button {
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.landing-filter button:hover,
.landing-pagination button:not(:disabled):hover {
    transform: translateY(-2px);
}

.landing-pagination button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.landing-empty {
    border-color: var(--gaming-blue-border);
    background: rgba(8, 13, 28, .72);
    box-shadow: 0 0 38px rgba(56, 189, 248, .08);
}

.landing-article-wrap {
    position: relative;
    z-index: 1;
}

.landing-article {
    border-color: rgba(247, 195, 95, .34);
}

.landing-article__content h1,
.landing-article__content h2,
.landing-article__content h3,
.landing-article__content strong {
    color: #fff7e8;
}

.landing-article__content a {
    color: var(--gaming-blue);
}

.landing-footer {
    background: linear-gradient(180deg, rgba(3, 6, 18, .9), #02040a);
    border-top: 1px solid var(--gaming-border);
    box-shadow: 0 -20px 70px rgba(0, 0, 0, .35);
}

.landing-footer__links a:hover {
    color: var(--gaming-gold);
}

.landing-discord__button {
    box-shadow: 0 0 36px rgba(139, 92, 246, .38), 0 18px 44px rgba(0, 0, 0, .36);
}

.landing-home-body .landing-navbar {
    background: linear-gradient(180deg, rgba(4, 8, 20, .76), rgba(4, 8, 20, .24)) !important;
    border-bottom: 1px solid rgba(255, 220, 147, .2);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .22), inset 0 -1px 0 rgba(104, 191, 255, .12);
    backdrop-filter: blur(18px);
}

.landing-home-body .landing-navbar.is-scrolled,
.landing-home-body.landing-menu-open .landing-navbar {
    background: linear-gradient(180deg, rgba(5, 9, 22, .94), rgba(8, 12, 28, .9)) !important;
    border-color: rgba(255, 220, 147, .32);
    box-shadow: 0 18px 58px rgba(0, 0, 0, .48), 0 0 36px rgba(84, 175, 255, .09);
}

.landing-home-body .gaming-brand {
    gap: .75rem;
    letter-spacing: .12em;
    text-shadow: 0 0 24px rgba(247, 195, 95, .42);
}

.landing-home-body .gaming-brand img {
    filter: drop-shadow(0 0 18px rgba(247, 195, 95, .32));
}

.landing-home-body .landing-nav-link,
.landing-home-body .landing-auth-links a,
.landing-home-body .landing-auth-links button {
    color: #f8ecd3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
}

.landing-home-body .landing-nav-link {
    padding: .48rem .78rem;
    border: 1px solid rgba(255, 220, 147, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.landing-home-body .landing-nav-link:hover {
    color: #ffe8a8;
    border-color: rgba(255, 220, 147, .36);
    background: linear-gradient(180deg, rgba(247, 195, 95, .15), rgba(56, 189, 248, .06));
    box-shadow: 0 0 26px rgba(247, 195, 95, .16), inset 0 1px 0 rgba(255, 255, 255, .14);
}

.landing-home-body .gaming-play-now,
.pw-hero .landing-btn--primary {
    border: 1px solid rgba(255, 238, 181, .78);
    background: linear-gradient(135deg, #fff0b8 0%, #f6c75f 36%, #b76523 100%);
    color: #1b0e04 !important;
    box-shadow: 0 0 30px rgba(247, 195, 95, .36), 0 14px 34px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .55);
}

.pw-hero {
    min-height: clamp(720px, 92vh, 980px);
    isolation: isolate;
    padding-top: clamp(7rem, 10vw, 10rem);
    background-image:
        radial-gradient(circle at 50% 20%, rgba(255, 239, 181, .22), transparent 16rem),
        radial-gradient(circle at 76% 34%, rgba(78, 190, 255, .2), transparent 24rem),
        linear-gradient(180deg, rgba(3, 8, 20, .15), rgba(3, 8, 20, .66) 48%, rgba(3, 5, 13, .96) 100%),
        var(--hero-bg, linear-gradient(145deg, #07182c 0%, #162038 40%, #241227 70%, #060812 100%));
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 -220px 180px rgba(2, 4, 10, .96);
}

.pw-hero::before {
    background:
        linear-gradient(90deg, rgba(2, 4, 10, .84), rgba(2, 4, 10, .2) 24%, rgba(2, 4, 10, .18) 72%, rgba(2, 4, 10, .86)),
        linear-gradient(180deg, rgba(7, 15, 34, .28), rgba(3, 6, 15, .9)),
        radial-gradient(ellipse at 50% 72%, rgba(106, 205, 255, .18), transparent 42%);
}

.pw-hero__mountains {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 42%;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 0%, rgba(6, 10, 20, .16) 18%, rgba(3, 5, 11, .92) 100%),
        radial-gradient(ellipse at 20% 92%, rgba(47, 74, 91, .72), transparent 24%),
        radial-gradient(ellipse at 55% 92%, rgba(30, 46, 64, .84), transparent 32%),
        radial-gradient(ellipse at 84% 94%, rgba(51, 59, 79, .76), transparent 28%);
    clip-path: polygon(0 52%, 8% 46%, 16% 58%, 26% 31%, 37% 61%, 50% 22%, 63% 57%, 75% 35%, 88% 62%, 100% 46%, 100% 100%, 0 100%);
    opacity: .9;
}

.pw-hero__celestial {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.pw-hero__celestial span:first-child {
    position: absolute;
    top: 14%;
    left: 50%;
    width: min(42vw, 520px);
    aspect-ratio: 1;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 226, 153, .2);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 241, 189, .28), rgba(247, 195, 95, .08) 26%, transparent 62%);
    filter: blur(.2px);
    animation: pwFloat 8s ease-in-out infinite alternate;
}

.pw-hero__celestial span:last-child {
    position: absolute;
    top: 22%;
    left: 50%;
    width: 2px;
    height: 52%;
    background: linear-gradient(180deg, transparent, rgba(255, 240, 190, .78), rgba(84, 194, 255, .2), transparent);
    box-shadow: 0 0 38px rgba(255, 230, 170, .6);
}

.pw-hero__mist span {
    background: radial-gradient(ellipse at center, rgba(226, 244, 255, .2), transparent 64%);
    filter: blur(18px);
    animation: pwMistDrift 9s ease-in-out infinite alternate;
}

.pw-hero .landing-hero__content {
    max-width: 920px;
    transform: translateY(0);
    animation: pwHeroReveal .75s ease-out both;
}

.pw-hero__eyebrow {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin: 0 0 1.1rem;
    color: #f5d996;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .24em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(247, 195, 95, .36);
}

.pw-hero__eyebrow span {
    padding: .42rem .75rem;
    border: 1px solid rgba(255, 220, 147, .22);
    border-radius: 999px;
    background: rgba(5, 11, 24, .52);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.pw-hero .gaming-hero__title {
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    letter-spacing: -.06em;
    background: linear-gradient(180deg, #fffaf0 0%, #ffe49b 34%, var(--app-color, #fbbf24) 62%, #bf6f25 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 34px rgba(247, 195, 95, .28), 0 24px 70px rgba(0, 0, 0, .92);
}

.pw-hero .landing-logo {
    width: min(78vw, 420px);
    filter: drop-shadow(0 24px 42px rgba(0, 0, 0, .82)) drop-shadow(0 0 34px rgba(247, 195, 95, .36));
}

.pw-hero .landing-timer {
    border-color: rgba(255, 226, 153, .38);
    background: linear-gradient(180deg, rgba(8, 16, 34, .72), rgba(3, 7, 18, .78));
    box-shadow: 0 0 38px rgba(247, 195, 95, .2), inset 0 1px 0 rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.pw-hero .landing-btn {
    min-width: 190px;
    padding: 1rem 1.45rem;
    border-radius: 999px;
    letter-spacing: .11em;
}

.pw-hero .landing-btn--ghost {
    border-color: rgba(115, 213, 255, .34);
    background: linear-gradient(180deg, rgba(11, 23, 48, .76), rgba(4, 8, 20, .88));
    color: #edf8ff;
    box-shadow: 0 0 28px rgba(84, 194, 255, .16), inset 0 1px 0 rgba(255, 255, 255, .08);
}

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

@keyframes pwFloat {
    from { opacity: .58; transform: translateX(-50%) translateY(0) scale(.98); }
    to { opacity: .9; transform: translateX(-50%) translateY(-12px) scale(1.02); }
}

@keyframes pwMistDrift {
    from { opacity: .34; transform: translateX(-18px); }
    to { opacity: .72; transform: translateX(18px); }
}

@media (max-width: 900px) {
    .landing-home-body .landing-nav-menu {
        border-right: 1px solid rgba(255, 220, 147, .2);
        background: linear-gradient(180deg, rgba(5, 9, 22, .98), rgba(8, 13, 30, .96));
        box-shadow: 18px 0 48px rgba(0, 0, 0, .42);
    }

    .pw-hero {
        min-height: 660px;
        padding-inline: 1rem;
    }
}

@media (max-width: 575.98px) {
    .pw-hero {
        min-height: 620px;
        padding-top: 6rem;
    }

    .pw-hero__eyebrow {
        gap: .35rem;
        font-size: .62rem;
        letter-spacing: .16em;
    }

    .pw-hero .landing-actions {
        width: 100%;
    }

    .pw-hero .landing-btn {
        width: min(100%, 310px);
        min-width: 0;
    }
}

.text-green,
.text-success {
    color: var(--gaming-green) !important;
}

.text-red,
.text-danger {
    color: var(--gaming-red) !important;
}

@keyframes gamingGlowPulse {
    from { opacity: .45; transform: scale(.96); }
    to { opacity: .9; transform: scale(1.04); }
}

@media (max-width: 991.98px) {
    .landing-bg-section {
        background-attachment: scroll;
    }

    .landing-navbar__inner {
        height: 60px;
    }

    .landing-hero,
    .landing-page-hero {
        min-height: 560px;
    }
}

@media (max-width: 575.98px) {
    .landing-hero,
    .landing-page-hero {
        min-height: 500px;
    }

    .landing-hero h1,
    .landing-page-hero h1 {
        font-size: clamp(2.6rem, 15vw, 4.6rem);
    }

    .landing-bg-section {
        padding-inline: .75rem;
    }

    .landing-news-panel,
    .landing-event-panel,
    .landing-widget,
    .landing-download-card,
    .landing-news-card,
    .landing-article {
        border-radius: 18px;
    }

    .landing-filter button,
    .landing-pagination button {
        min-width: auto;
        padding: .6rem .8rem;
        font-size: .75rem;
    }
}

@media (max-width: 991.98px) {
    .landing-hero.pw-hero {
        min-height: 660px;
    }
}

@media (max-width: 575.98px) {
    .landing-hero.pw-hero {
        min-height: 620px;
    }
}

/* Dark Celestial MMORPG Portal: scoped to landing Home only. */
.landing-home-body {
    --portal-obsidian: #03040a;
    --portal-navy: #060d1e;
    --portal-indigo: #111736;
    --portal-violet: #1a102b;
    --portal-gold: #c9a15b;
    --portal-gold-soft: #efd28b;
    --portal-cyan: #7dd8ff;
    --portal-blue: #4f9dd4;
    --portal-text: #f4ead8;
    --portal-muted: #aab8ce;
}

.landing-home-body .landing-main {
    overflow-x: clip;
}

.landing-home-body .landing-shell {
    background:
        radial-gradient(circle at 50% -16%, rgba(78, 113, 196, .12), transparent 34rem),
        linear-gradient(180deg, #02030a 0%, #060914 46%, #03040a 100%);
}

.landing-home-body .landing-navbar {
    top: .9rem;
    left: 50%;
    right: auto;
    width: min(1180px, calc(100% - 2rem));
    transform: translateX(-50%);
    border: 1px solid rgba(239, 210, 139, .16);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(10, 15, 31, .74), rgba(4, 7, 17, .58)) !important;
    box-shadow: 0 20px 64px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .07);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.landing-home-body .landing-navbar::after {
    content: "";
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 210, 139, .64), rgba(142, 76, 255, .28), transparent);
    box-shadow: 0 0 18px rgba(201, 161, 91, .22);
}

.landing-home-body .landing-navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(201, 161, 91, .18), rgba(125, 216, 255, .1), transparent);
    opacity: .72;
}

.landing-home-body .landing-navbar.is-scrolled,
.landing-home-body.landing-menu-open .landing-navbar {
    background:
        linear-gradient(180deg, rgba(8, 12, 27, .92), rgba(4, 7, 17, .86)) !important;
    border-color: rgba(239, 210, 139, .24);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .58), 0 0 38px rgba(79, 157, 212, .08), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.landing-home-body .landing-navbar__inner {
    height: 66px;
    max-width: none;
    padding: 0 .85rem;
}

.landing-home-body .gaming-brand {
    min-height: 48px;
    padding: .28rem .88rem .28rem .38rem;
    border: 1px solid rgba(239, 210, 139, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    letter-spacing: .16em;
}

.landing-home-body .gaming-brand img {
    max-width: 96px;
    max-height: 48px;
    filter: drop-shadow(0 0 18px rgba(239, 210, 139, .26));
}

.landing-home-body .gaming-brand__name {
    color: #f6edda;
    font-size: .9rem;
    text-shadow: 0 0 22px rgba(201, 161, 91, .34);
}

.landing-home-body .landing-nav-link {
    min-height: 40px;
    padding: .42rem .68rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: #d9e3f2;
    font-size: .76rem;
    letter-spacing: .12em;
    text-shadow: none;
}

.landing-home-body .landing-nav-link i,
.landing-home-body .landing-auth-links i,
.pw-hero .landing-btn i {
    display: inline-grid;
    width: 1.9rem;
    height: 1.9rem;
    place-items: center;
    border: 1px solid rgba(239, 210, 139, .16);
    border-radius: 50%;
    background: rgba(5, 9, 22, .72);
    color: var(--portal-gold-soft);
    box-shadow: 0 0 18px rgba(125, 216, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.landing-home-body .landing-nav-link:hover {
    color: #fff7e8;
    border-color: rgba(239, 210, 139, .22);
    background: rgba(239, 210, 139, .07);
    box-shadow: 0 0 24px rgba(201, 161, 91, .12);
}

.landing-home-body .landing-auth-links {
    gap: .45rem;
}

.landing-home-body .landing-auth-links a,
.landing-home-body .landing-auth-links button {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    min-height: 42px;
    padding: .42rem .72rem;
    border: 1px solid rgba(125, 216, 255, .18);
    border-radius: 999px;
    background: rgba(6, 11, 27, .54);
    color: #dbeafe;
    font-size: .76rem;
    letter-spacing: .1em;
    text-shadow: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.landing-home-body .landing-auth-links a:hover,
.landing-home-body .landing-auth-links button:hover {
    transform: translateY(-1px);
    border-color: rgba(125, 216, 255, .32);
    background: rgba(125, 216, 255, .08);
    box-shadow: 0 0 24px rgba(125, 216, 255, .12);
}

.landing-home-body .gaming-play-now {
    border-color: rgba(239, 210, 139, .42) !important;
    background:
        linear-gradient(180deg, rgba(239, 210, 139, .2), rgba(82, 56, 22, .18)),
        rgba(8, 12, 26, .72) !important;
    color: #fff2cf !important;
    box-shadow: 0 0 28px rgba(201, 161, 91, .18), inset 0 1px 0 rgba(255, 255, 255, .1) !important;
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100svh !important;
    margin: 0 !important;
    padding: clamp(6rem, 10vh, 7.5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vh, 5rem) !important;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    background-image:
        linear-gradient(180deg, rgba(2, 3, 10, .22), rgba(2, 3, 10, .72) 56%, rgba(2, 3, 10, .97) 100%),
        radial-gradient(circle at 50% 38%, rgba(125, 216, 255, .13), transparent 20rem),
        radial-gradient(circle at 50% 50%, rgba(201, 161, 91, .08), transparent 26rem),
        radial-gradient(circle at 18% 22%, rgba(56, 69, 138, .2), transparent 26rem),
        radial-gradient(circle at 82% 20%, rgba(65, 37, 90, .22), transparent 25rem),
        var(--hero-bg, linear-gradient(145deg, #02030a 0%, #071126 42%, #130e25 72%, #03040a 100%)) !important;
    background-position: center;
    background-size: cover;
    border: 0;
    box-shadow: inset 0 -220px 160px rgba(2, 3, 10, .96), inset 0 120px 110px rgba(2, 3, 10, .48);
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero::before,
.landing-hero.gaming-hero.gaming-hero--home.pw-hero::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    pointer-events: none;
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero::before {
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 48%, transparent 0 26%, rgba(2, 3, 10, .22) 48%, rgba(2, 3, 10, .76) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .62), transparent 28%, transparent 72%, rgba(0, 0, 0, .62));
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero::after {
    inset: auto -12% -12%;
    z-index: 1;
    height: 38%;
    background: radial-gradient(ellipse at center, rgba(9, 18, 37, .94), rgba(2, 3, 10, .98) 58%, transparent 72%);
    filter: blur(2px);
    animation: none;
}

.pw-hero__sky,
.pw-hero__mist,
.pw-hero__mountains,
.pw-hero__celestial,
.pw-hero__frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pw-hero__sky {
    z-index: 1;
    overflow: hidden;
}

.pw-hero__sky span {
    position: absolute;
    border-radius: 999px;
    background: rgba(224, 242, 254, .68);
    box-shadow: 0 0 14px rgba(125, 216, 255, .62);
    opacity: .38;
}

.pw-hero__sky span:nth-child(1) { top: 22%; left: 18%; width: 2px; height: 2px; }
.pw-hero__sky span:nth-child(2) { top: 31%; right: 21%; width: 3px; height: 3px; }
.pw-hero__sky span:nth-child(3) { top: 18%; right: 38%; width: 2px; height: 2px; }

.pw-hero__mist {
    z-index: 2;
    opacity: .44;
}

.pw-hero__mist span {
    position: absolute;
    width: 44vw;
    height: 18vh;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(189, 218, 234, .16), transparent 68%);
    filter: blur(22px);
    animation: portalMist 12s ease-in-out infinite alternate;
}

.pw-hero__mist span:nth-child(1) { left: -9%; top: 34%; }
.pw-hero__mist span:nth-child(2) { right: -10%; top: 48%; animation-delay: -4s; }
.pw-hero__mist span:nth-child(3) { left: 26%; bottom: 17%; animation-delay: -8s; }

.pw-hero__mountains {
    inset: auto 0 0;
    z-index: 3;
    height: 34%;
    background:
        linear-gradient(180deg, transparent, rgba(3, 5, 12, .58) 44%, rgba(2, 3, 8, .98)),
        linear-gradient(135deg, rgba(8, 16, 31, .9), rgba(3, 5, 12, .98));
    clip-path: polygon(0 64%, 9% 48%, 17% 61%, 27% 34%, 38% 64%, 50% 29%, 61% 62%, 72% 41%, 84% 66%, 94% 52%, 100% 60%, 100% 100%, 0 100%);
    opacity: .96;
}

.pw-hero__celestial {
    z-index: 2;
    display: grid;
    place-items: center;
}

.pw-hero__celestial span:first-child {
    position: absolute;
    width: min(64vw, 740px);
    aspect-ratio: 1;
    border: 1px solid rgba(239, 210, 139, .16);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(125, 216, 255, .12), transparent 30%),
        conic-gradient(from 90deg, transparent, rgba(239, 210, 139, .18), transparent 28%, rgba(125, 216, 255, .12), transparent 62%, rgba(239, 210, 139, .12), transparent);
    mask-image: radial-gradient(circle, transparent 0 47%, #000 48% 51%, transparent 52%);
    opacity: .8;
    animation: portalRing 18s linear infinite;
}

.pw-hero__celestial span:nth-child(2) {
    position: absolute;
    width: min(40vw, 430px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 210, 139, .2), rgba(125, 216, 255, .08) 38%, transparent 66%);
    filter: blur(2px);
    opacity: .66;
}

.pw-hero__celestial span:nth-child(3) {
    position: absolute;
    width: 1px;
    height: min(54vh, 520px);
    background: linear-gradient(180deg, transparent, rgba(239, 210, 139, .42), rgba(125, 216, 255, .24), transparent);
    box-shadow: 0 0 28px rgba(125, 216, 255, .32);
    opacity: .64;
}

.pw-hero__frame {
    z-index: 4;
    inset: clamp(6rem, 11vh, 8rem) clamp(1rem, 6vw, 5rem) clamp(2rem, 6vh, 4rem);
    border: 1px solid rgba(239, 210, 139, .1);
    border-radius: clamp(28px, 5vw, 56px);
    box-shadow: inset 0 0 70px rgba(125, 216, 255, .035), 0 0 0 1px rgba(125, 216, 255, .035);
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-hero__content.gaming-hero__content {
    position: relative;
    z-index: 5;
    display: flex !important;
    width: min(860px, 100%) !important;
    max-width: 860px !important;
    min-height: auto;
    margin: 0 auto !important;
    padding: clamp(1.2rem, 4vw, 2.4rem) !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(.8rem, 1.8vw, 1.15rem);
    transform: none !important;
    text-align: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    animation: portalReveal .8s ease-out both;
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-hero__content.gaming-hero__content::before,
.landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-hero__content.gaming-hero__content::after {
    content: "";
    width: min(420px, 72vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 210, 139, .56), rgba(125, 216, 255, .24), transparent);
    box-shadow: 0 0 18px rgba(201, 161, 91, .16);
}

.pw-hero__crest {
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: -.2rem;
    border: 1px solid rgba(239, 210, 139, .34);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 20%, rgba(239, 210, 139, .18), transparent 58%),
        rgba(4, 8, 20, .68);
    color: var(--portal-gold-soft);
    box-shadow: 0 0 34px rgba(201, 161, 91, .2), 0 0 24px rgba(142, 76, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.pw-hero__realm-title {
    margin: -.35rem 0 0;
    color: #d8c58c;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.6vw, 2rem);
    font-weight: 700;
    letter-spacing: .42em;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(201, 161, 91, .24);
}

.pw-hero__description {
    max-width: 650px;
    margin: 0 auto;
    color: #c4d0e2;
    font-size: clamp(.96rem, 1.6vw, 1.12rem);
    line-height: 1.75;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .72);
}

.pw-hero__eyebrow {
    gap: .55rem;
    margin: 0;
    color: #d9c791;
    font-size: clamp(.62rem, 1vw, .78rem);
    letter-spacing: .28em;
    text-shadow: 0 0 18px rgba(201, 161, 91, .28);
}

.pw-hero__eyebrow span {
    padding: .36rem .72rem;
    border: 1px solid rgba(239, 210, 139, .16);
    border-radius: 999px;
    background: rgba(3, 7, 18, .42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero .gaming-hero__title {
    margin: 0 !important;
    font-size: clamp(3.4rem, 10vw, 9.4rem) !important;
    font-weight: 950;
    line-height: .84;
    letter-spacing: -.075em;
    background: linear-gradient(180deg, #fffaf0 0%, #e7d5a4 36%, var(--app-color, #c9a15b) 62%, #8b6b37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    text-shadow: 0 0 26px rgba(201, 161, 91, .24), 0 28px 68px rgba(0, 0, 0, .94) !important;
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-logo.gaming-hero__logo {
    width: auto !important;
    max-width: min(74vw, 410px) !important;
    max-height: min(32vh, 260px) !important;
    margin: 0 auto !important;
    object-fit: contain;
    filter: drop-shadow(0 30px 48px rgba(0, 0, 0, .88)) drop-shadow(0 0 28px rgba(201, 161, 91, .24)) !important;
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-timer {
    margin: .1rem auto 0 !important;
    padding: .74rem 1.35rem;
    border: 1px solid rgba(125, 216, 255, .18) !important;
    border-radius: 999px;
    background: rgba(4, 8, 20, .62) !important;
    box-shadow: 0 0 24px rgba(125, 216, 255, .1), inset 0 1px 0 rgba(255, 255, 255, .07) !important;
    backdrop-filter: blur(14px);
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-timer span {
    color: #d9c791;
}

.landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-actions.gaming-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    gap: .8rem;
    width: 100%;
    margin-top: .35rem;
}

.pw-hero .landing-btn {
    min-width: 178px;
    min-height: 52px;
    padding: .84rem 1.22rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, filter .18s ease;
}

.pw-hero .landing-btn::before {
    display: none;
}

.pw-hero .landing-btn--primary {
    border: 1px solid rgba(239, 210, 139, .5) !important;
    background:
        linear-gradient(180deg, rgba(239, 210, 139, .2), rgba(81, 56, 24, .18)),
        linear-gradient(135deg, rgba(10, 14, 29, .92), rgba(6, 9, 20, .96)) !important;
    color: #fff0c7 !important;
    box-shadow: 0 0 34px rgba(201, 161, 91, .22), inset 0 1px 0 rgba(255, 255, 255, .1) !important;
}

.pw-hero .landing-btn--ghost {
    border: 1px solid rgba(125, 216, 255, .22) !important;
    background: rgba(5, 10, 24, .6) !important;
    color: #dcecff !important;
    box-shadow: 0 0 24px rgba(125, 216, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .06) !important;
}

.pw-hero .landing-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.pw-server-highlights {
    position: absolute;
    left: 50%;
    bottom: clamp(1.65rem, 4vh, 3rem);
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(900px, calc(100% - 2rem));
    transform: translateX(-50%);
    overflow: hidden;
    border: 1px solid rgba(239, 210, 139, .2);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(8, 12, 27, .62), rgba(3, 6, 15, .76));
    box-shadow: 0 22px 62px rgba(0, 0, 0, .44), inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(18px);
}

.pw-server-highlights div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .58rem;
    min-height: 64px;
    padding: .8rem .9rem;
    color: #e7d9b9;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pw-server-highlights div + div {
    border-left: 1px solid rgba(239, 210, 139, .12);
}

.pw-server-highlights i {
    color: var(--portal-gold-soft);
    text-shadow: 0 0 18px rgba(201, 161, 91, .34), 0 0 18px rgba(142, 76, 255, .16);
}

.pw-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: .7rem;
    z-index: 7;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transform: translateX(-50%);
    color: #aeb8cf;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .82;
}

.pw-scroll-indicator i {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 30px;
    border: 1px solid rgba(239, 210, 139, .34);
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(142, 76, 255, .16);
}

.pw-scroll-indicator i::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: var(--portal-gold-soft);
    transform: translateX(-50%);
    animation: portalScroll 1.55s ease-in-out infinite;
}

.pw-hero .landing-btn--primary:hover {
    border-color: rgba(239, 210, 139, .72) !important;
    box-shadow: 0 0 42px rgba(201, 161, 91, .3), 0 18px 34px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .14) !important;
}

.pw-hero .landing-btn--ghost:hover {
    border-color: rgba(125, 216, 255, .42) !important;
    box-shadow: 0 0 34px rgba(125, 216, 255, .16), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
}

@keyframes portalReveal {
    from { opacity: 0; transform: translateY(18px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes portalRing {
    to { transform: rotate(360deg); }
}

@keyframes portalMist {
    from { transform: translateX(-24px); opacity: .28; }
    to { transform: translateX(24px); opacity: .62; }
}

@keyframes portalScroll {
    0% { opacity: 0; transform: translate(-50%, 0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

.landing-home-body .landing-bg-section {
    background-image:
        linear-gradient(180deg, rgba(2, 3, 10, .98), rgba(7, 10, 25, .88) 38%, rgba(2, 3, 10, .96)),
        radial-gradient(circle at 12% 10%, rgba(142, 76, 255, .14), transparent 22rem),
        radial-gradient(circle at 88% 18%, rgba(201, 161, 91, .1), transparent 24rem),
        var(--section-bg, linear-gradient(145deg, #040713, #0b1023 58%, #07050f));
}

.landing-home-body .landing-news-panel,
.landing-home-body .landing-widget,
.landing-home-body .landing-event-panel,
.landing-home-body .gaming-panel,
.landing-home-body .landing-featured-news,
.landing-home-body .landing-mini-news {
    border-color: rgba(239, 210, 139, .2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
        linear-gradient(135deg, rgba(8, 12, 30, .9), rgba(4, 7, 17, .96));
    box-shadow: 0 26px 78px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.landing-home-body .landing-panel__head h2,
.landing-home-body .gaming-news-content h3 a,
.landing-home-body .gaming-panel h2 {
    color: #fff5dc;
    font-family: Georgia, 'Times New Roman', serif;
}

.landing-home-body .landing-kicker {
    color: var(--portal-gold-soft);
}

.landing-home-body .landing-footer {
    background:
        linear-gradient(180deg, rgba(3, 5, 12, .92), #010208),
        radial-gradient(circle at 50% 0%, rgba(201, 161, 91, .12), transparent 20rem);
    border-top: 1px solid rgba(239, 210, 139, .24);
}

.landing-home-body .landing-footer__inner {
    border-top: 1px solid rgba(142, 76, 255, .08);
}

@media (max-width: 900px) {
    .landing-home-body .landing-navbar {
        top: .65rem;
        width: min(100% - 1rem, 760px);
        border-radius: 26px;
    }

    .landing-home-body .landing-navbar__inner {
        height: 58px;
    }

    .landing-home-body .landing-nav-menu {
        top: 76px;
        left: .5rem;
        bottom: auto;
        max-height: calc(100svh - 92px);
        border: 1px solid rgba(239, 210, 139, .16);
        border-radius: 24px;
        background: rgba(5, 8, 19, .94);
        box-shadow: 20px 20px 64px rgba(0, 0, 0, .52);
        backdrop-filter: blur(20px);
    }

    .landing-hero.gaming-hero.gaming-hero--home.pw-hero {
        min-height: 100svh !important;
        padding-top: 5.5rem !important;
    }

    .pw-hero__frame {
        inset: 5.4rem .75rem 1.25rem;
        border-radius: 28px;
    }

    .pw-server-highlights {
        position: relative;
        left: auto;
        bottom: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(620px, 100%);
        margin: 1rem auto 0;
        transform: none;
    }

    .landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-hero__content.gaming-hero__content {
        padding-bottom: .8rem !important;
    }

    .pw-scroll-indicator {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .landing-home-body .gaming-brand__name,
    .landing-home-body .landing-auth-links a:not(.gaming-play-now) span,
    .landing-home-body .landing-auth-links button span {
        display: none;
    }

    .landing-home-body .gaming-brand {
        max-width: 42vw;
    }

    .landing-home-body .gaming-brand img {
        max-width: 76px;
    }

    .landing-hero.gaming-hero.gaming-hero--home.pw-hero {
        padding-inline: .85rem !important;
    }

    .landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-hero__content.gaming-hero__content {
        gap: .7rem;
        padding-inline: .35rem !important;
    }

    .pw-hero__eyebrow {
        letter-spacing: .16em;
    }

    .pw-hero__eyebrow span {
        padding: .3rem .54rem;
    }

    .landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-logo.gaming-hero__logo {
        max-width: min(82vw, 300px) !important;
        max-height: 190px !important;
    }

    .pw-hero .landing-btn {
        width: min(100%, 320px);
        min-width: 0;
    }

    .pw-hero__realm-title {
        letter-spacing: .26em;
    }

    .pw-server-highlights {
        grid-template-columns: 1fr;
    }

    .pw-server-highlights div + div {
        border-top: 1px solid rgba(239, 210, 139, .12);
        border-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pw-hero__celestial span:first-child,
    .pw-hero__mist span,
    .pw-scroll-indicator i::before,
    .landing-hero.gaming-hero.gaming-hero--home.pw-hero .landing-hero__content.gaming-hero__content {
        animation: none !important;
    }
}

@media (max-width: 1199px) {
    .download-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .client-download,
    .download-files-grid {
        grid-template-columns: 1fr;
    }

    .client-download__visual {
        min-height: 240px;
    }
}

@media (max-width: 767px) {
    .download-shell {
        width: min(100% - 24px, 1440px);
    }

    .download-hero {
        min-height: 0;
        padding-top: 6.25rem;
    }

    .client-download,
    .download-options,
    .download-information,
    .download-section-heading,
    .download-file-card,
    .download-info-card,
    .download-empty {
        border-radius: 20px;
    }

    .client-download__actions,
    .download-file-card__actions {
        flex-direction: column;
    }

    .download-button,
    .download-file-card__action {
        width: 100%;
    }

    .download-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .download-file-card {
        grid-template-columns: 1fr;
    }

    .download-file-card__icon {
        width: 52px;
        height: 52px;
    }

    .client-download__meta {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .download-button,
    .download-file-card,
    .download-file-card__action {
        transition: none !important;
    }
}

@media (max-width: 1199px) {
    .chronicle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-chronicle__card {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
    }
}

@media (max-width: 991px) {
    .news-archive__header,
    .featured-chronicle__card {
        grid-template-columns: 1fr;
    }

    .featured-chronicle__media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .news-filter {
        justify-content: flex-start;
        max-width: none;
    }
}

@media (max-width: 767px) {
    .news-shell {
        width: min(100% - 24px, 1440px);
    }

    .news-hero {
        padding-top: 6.25rem;
    }

    .chronicle-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-archive,
    .featured-chronicle__content,
    .news-archive__header,
    .news-empty {
        border-radius: 20px;
    }

    .news-filter a {
        flex: 1 1 auto;
        min-width: min(100%, 116px);
    }

    .news-pagination {
        gap: 7px;
    }

    .news-pagination button,
    .news-pagination a,
    .news-pagination span {
        min-height: 40px;
        padding: 8px 11px;
    }
}

@media (max-width: 420px) {
    .news-breadcrumb {
        width: 100%;
        border-radius: 18px;
    }

    .news-filter {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-filter a {
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .featured-chronicle__media img,
    .news-chronicle-card__media img,
    .featured-chronicle__action,
    .news-chronicle-card,
    .news-chronicle-card__action,
    .news-filter a {
        transition: none !important;
    }
}

@media (max-width: 991px) {
    .landing-content-layout {
        grid-template-columns: 1fr;
    }

    .landing-content-layout__sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-command {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .chronicle-section__header,
    .realm-panel__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .chronicle-section__content,
    .chronicle-card--featured,
    .landing-content-layout__sidebar {
        grid-template-columns: 1fr;
    }

    .chronicle-empty {
        grid-template-columns: 1fr;
        min-height: 0;
        text-align: center;
    }

    .chronicle-empty__visual,
    .chronicle-empty__action {
        justify-self: center;
    }
}

@media (max-width: 420px) {
    .server-monitor__stats {
        grid-template-columns: 1fr;
    }

    .server-stat--wide {
        grid-column: auto;
    }

    .gm-member,
    .quick-command__item {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .gm-member__presence,
    .quick-command__arrow {
        grid-column: 2;
        justify-self: start;
    }
}
