﻿@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Cinzel+Decorative:wght@700&family=Oswald:wght@400;500;600;700&family=Fjalla+One&display=swap');

:root {
    --se-bg: #111;
    --se-panel: #1a1a1a;
    --se-panel-soft: #151515;
    --se-border: #444;
    --se-cyan: #66ccff;
    --se-text: #e8e8e8;
    --se-muted: #a9a9a9;
    --se-purple-line: rgba(153, 70, 190, 0.25);
}

html, body {
    margin: 0;
    min-height: 100%;
    background: var(--se-bg);
    color: var(--se-text);
    font-family: 'Oswald', Arial, sans-serif;
}

body.se-shell {
    background: var(--se-bg);
}

.se-hero {
    position: relative;
    height: 300px;
    background: #020812 url('/images/logos/fc-fractured-continuum-banner.png?v=20260622fcglow1') center center / contain no-repeat;
    border-bottom: 1px solid #cfcfcf;
    overflow: hidden;
}

.se-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 9%;
    width: min(34vw, 520px);
    height: min(34vw, 520px);
    transform: translate(-50%, -38%);
    pointer-events: none;
    background:
        radial-gradient(circle, rgba(226, 247, 255, 0.62) 0%, rgba(111, 211, 255, 0.42) 15%, rgba(43, 139, 255, 0.24) 31%, rgba(30, 80, 180, 0.10) 52%, rgba(0, 0, 0, 0) 72%);
    filter: blur(10px);
    mix-blend-mode: screen;
    animation: se-eclipse-glow-pulse 4.8s ease-in-out infinite;
}

@keyframes se-eclipse-glow-pulse {
    0%, 100% {
        opacity: 0.68;
        transform: translate(-50%, -38%) scale(0.96);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -38%) scale(1.08);
    }
}

.se-layout {
    display: grid;
    grid-template-columns: 201px minmax(0, 1fr) 390px;
    gap: 18px;
    align-items: start;
    min-height: calc(100vh - 301px);
}

.se-left-nav {
    min-height: calc(100vh - 301px);
    background: #111;
    border-right: 2px solid var(--se-border);
}

.se-left-nav table {
    width: 100%;
    border-collapse: collapse;
}

.se-left-nav td {
    border-bottom: 1px solid var(--se-purple-line);
    padding: 0;
}

.se-left-nav .menuh {
    color: #fff;
    font-family: 'Fjalla One', Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 7px;
}

.se-left-nav .menu_item a {
    display: block;
    padding: 9px 7px;
    color: var(--se-cyan);
    text-decoration: none;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 600;
}

.se-left-nav .menu_item a:hover {
    color: #fff;
    background: rgba(102, 204, 255, 0.08);
}

.se-main {
    padding: 32px 0 48px;
    min-width: 0;
}

.se-main h1,
.se-main h2,
.se-heading {
    color: var(--se-cyan);
    font-family: 'Bebas Neue', 'Fjalla One', Arial, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.se-main h1 {
    margin: 0 0 22px;
    font-size: 30px;
}

.se-card {
    background: var(--se-panel);
    border: 1px solid var(--se-border);
    border-radius: 5px;
    padding: 20px;
}

.se-card h2 {
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--se-cyan);
    font-size: 28px;
}

.se-right-rail {
    padding: 0 20px 32px 0;
}

.se-search-box {
    margin-top: 10px;
    background: #1a1a1a;
    padding: 8px;
    border: 2px solid var(--se-cyan);
    border-radius: 4px;
}

.se-search-box input {
    box-sizing: border-box;
    width: 100%;
    background: #222;
    color: #e0e0e0;
    border: 1px solid #444;
    padding: 10px;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 14px;
}

.se-search-box input:focus {
    outline: none;
    border-color: var(--se-cyan);
    box-shadow: 0 0 8px rgba(102, 204, 255, 0.45);
}

.se-widget {
    margin-top: 28px;
    background: var(--se-panel);
    border: 1px solid var(--se-border);
    border-radius: 4px;
    overflow: hidden;
}

.se-widget-title {
    cursor: pointer;
    padding: 10px;
    font-family: 'Fjalla One', Arial, sans-serif;
    color: var(--se-cyan);
    border-bottom: 1px solid var(--se-border);
}

.se-widget-title span {
    float: right;
}

.se-table-wrap {
    overflow-x: auto;
}

.se-data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--se-panel-soft);
    color: var(--se-text);
}

.se-data-table th,
.se-data-table td {
    padding: 9px 10px;
    text-align: left;
    border: 1px solid #333;
    white-space: nowrap;
}

.se-data-table th {
    background: #202020;
    color: var(--se-cyan);
    font-family: 'Fjalla One', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.se-data-table th.sortable {
    text-decoration: underline;
    cursor: pointer;
}

.se-data-table tr:nth-child(even) {
    background: #111;
}

.se-data-table tr:nth-child(odd) {
    background: #181818;
}

.se-data-table tr:hover {
    background: rgba(102, 204, 255, 0.12);
}

.se-link,
.se-shell a {
    color: var(--se-cyan);
}

.se-link:hover,
.se-shell a:hover {
    color: #fff;
}

.se-footer {
    color: #fff;
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: 1px;
    text-align: center;
    padding: 24px 10px;
}

@media (max-width: 1280px) {
    .se-layout {
        grid-template-columns: 201px minmax(0, 1fr);
    }
    .se-right-rail {
        grid-column: 2;
        padding: 0 20px 32px 0;
    }
}

@media (max-width: 820px) {
    .se-hero {
        height: 180px;
    }
.se-layout {
        display: block;
    }
    .se-left-nav {
        min-height: auto;
        border-right: 0;
        border-bottom: 2px solid var(--se-border);
    }
    .se-main,
    .se-right-rail {
        padding: 18px 12px;
    }
}

/* Shadowed Eclipse right rail widgets */
.se-widget-body {
    border-top: 1px solid var(--se-border);
    background: #111;
}

.se-discord-frame {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

.se-hotzones-frame {
    display: block;
    width: 100%;
    min-height: 260px;
    border: 0;
    background: #111;
}

.se-widget-link {
    display: block;
    padding: 10px;
    border-top: 1px solid var(--se-border);
    font-family: 'Fjalla One', Arial, sans-serif;
    text-decoration: none;
}

body.se-home-scroll-rail .new-search-box {
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 0 15px 0 !important;
}

body.se-home-scroll-rail .new-search-box input {
    width: 100% !important;
    box-sizing: border-box !important;
}

body.se-home-scroll-rail #sidebar-widgets {
    position: absolute !important;
    top: 262px !important;
    right: 20px !important;
    z-index: 999 !important;
}

@media (max-width: 1050px) {
    body.se-home-scroll-rail #sidebar-widgets {
        position: relative !important;
        top: auto !important;
        right: auto !important;
    }
}

/* Hide MediaWiki Vector Appearance controls; not useful for the Shadowed Eclipse wiki skin. */
.vector-page-tools-landmark,
.vector-appearance-landmark,
#vector-page-tools-pinned-container,
#vector-appearance-pinned-container,
#vector-appearance,
.vector-appearance,
.vector-sticky-pinned-container .vector-appearance,
.vector-sticky-pinned-container:has(.vector-appearance) {
    display: none !important;
}
/* === FC banner-matched typography and chrome === */
:root {
    --se-bg: #050913;
    --se-panel: #111821;
    --se-panel-soft: #0b121a;
    --se-border: rgba(130, 204, 255, 0.28);
    --se-cyan: #9fddff;
    --se-ice: #edf9ff;
    --se-blue: #45b8ff;
    --se-deep-blue: #163f74;
    --se-silver: #dcecff;
    --se-muted: #9bb3c6;
    --se-purple-line: rgba(92, 153, 255, 0.22);
}

html, body, body.se-shell {
    background: radial-gradient(ellipse at top, rgba(25, 63, 112, 0.22) 0%, rgba(5, 9, 19, 0.72) 38%, #05070c 78%) fixed !important;
    color: var(--se-silver) !important;
}

.se-main h1,
.se-main h2,
.se-heading,
.fc-home-title h1,
.fc-home-panel h2,
#charbrowser h1,
#charbrowser h2,
#charbrowser h3,
#body h1,
#body h2,
#body h3,
.mw-body h1,
.mw-body h2,
.mw-body h3,
.firstHeading {
    font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif !important;
    font-weight: 700 !important;
    letter-spacing: 1.6px !important;
    text-transform: uppercase !important;
    color: #dff5ff !important;
    background: linear-gradient(180deg, #ffffff 0%, #dff6ff 30%, #7fd3ff 58%, #2b84d8 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 8px rgba(112, 202, 255, 0.62), 0 0 20px rgba(40, 105, 210, 0.38), 0 2px 3px rgba(0, 0, 0, 0.95) !important;
}

.se-main h1, .fc-home-title h1, #charbrowser h1, #body h1, .firstHeading {
    font-size: 30px !important;
}

.se-card h2,
.fc-home-panel h2 {
    border-bottom: 2px solid rgba(127, 211, 255, 0.72) !important;
    box-shadow: 0 8px 12px -12px rgba(80, 190, 255, 0.9) !important;
}

.fc-home-panel h3,
.se-main h3,
#charbrowser h3,
#body h3,
.mw-body h3,
.se-left-nav .menuh,
.se-widget-title,
.se-widget-link,
.se-left-nav .menu_item a,
.se-data-table th,
th,
.CBTableTitle,
.CB_Char_Name,
.CB_Item_Name {
    font-family: 'Cinzel', Georgia, serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.7px !important;
    text-transform: uppercase !important;
    color: #9fddff !important;
    text-shadow: 0 0 8px rgba(68, 184, 255, 0.42), 0 1px 2px #000 !important;
}

.fc-home-panel h3,
.se-main h3,
#charbrowser h3,
#body h3,
.mw-body h3 {
    color: #b9eaff !important;
    background: linear-gradient(180deg, #ecfbff 0%, #8bddff 48%, #4599e8 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.se-card,
.fc-home-panel,
#charbrowser .CBBorder,
#charbrowser .CBGroup,
#charbrowser .CBTable,
.page-content,
.mw-body,
#body .section,
#body .box,
#body fieldset {
    background: linear-gradient(180deg, rgba(14, 24, 35, 0.92), rgba(8, 13, 21, 0.94)) !important;
    border-color: rgba(128, 202, 255, 0.30) !important;
    box-shadow: inset 0 0 18px rgba(70, 170, 255, 0.06), 0 0 16px rgba(0, 0, 0, 0.35) !important;
}

.se-left-nav,
.side_menu,
.menu_item,
.se-widget,
.se-search-box,
.new-search-box,
#sidebar-widgets .widget,
#sidebar-widgets .se-widget {
    background: linear-gradient(180deg, rgba(15, 25, 34, 0.96), rgba(8, 12, 18, 0.98)) !important;
    border-color: rgba(126, 201, 255, 0.32) !important;
}

.se-left-nav .menu_item a,
.se-widget-title,
.se-widget-link,
.se-shell a,
a {
    color: #8edbff !important;
}

.se-left-nav .menu_item a:hover,
.se-widget-title:hover,
.se-widget-link:hover,
.se-shell a:hover,
a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(109, 205, 255, 0.7) !important;
}

input, textarea, select,
.se-search-box input,
.new-search-box input,
#qq,
#global_search input {
    background: rgba(8, 14, 22, 0.96) !important;
    color: #eaf8ff !important;
    border: 1px solid rgba(127, 211, 255, 0.45) !important;
    box-shadow: inset 0 0 10px rgba(70, 160, 255, 0.08) !important;
}

.se-search-box,
.new-search-box {
    border-color: #5bc8ff !important;
    box-shadow: 0 0 12px rgba(70, 184, 255, 0.36), inset 0 0 12px rgba(70, 184, 255, 0.08) !important;
}

button,
input[type="submit"],
input[type="button"],
.CB_Button,
.CB_ButtonWrap,
#charbrowser .CB_Button,
#charbrowser .CB_ButtonWrap,
.btn,
.button {
    background: linear-gradient(180deg, #143958, #071827) !important;
    color: #eaf8ff !important;
    border: 1px solid #72d4ff !important;
    border-radius: 4px !important;
    font-family: 'Cinzel', Georgia, serif !important;
    font-weight: 700 !important;
    text-shadow: 0 0 6px rgba(86, 197, 255, 0.55), 0 1px 2px #000 !important;
    box-shadow: 0 0 8px rgba(66, 184, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.CB_Button:hover,
.CB_ButtonWrap:hover,
#charbrowser .CB_Button:hover,
#charbrowser .CB_ButtonWrap:hover,
.btn:hover,
.button:hover {
    background: linear-gradient(180deg, #1d5f91, #0a2238) !important;
    color: #ffffff !important;
    box-shadow: 0 0 14px rgba(103, 211, 255, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.se-data-table th,
th,
.table th,
#charbrowser th {
    background: linear-gradient(180deg, rgba(22, 54, 78, 0.95), rgba(9, 23, 36, 0.95)) !important;
    color: #bfefff !important;
    border-color: rgba(106, 180, 235, 0.36) !important;
}

.se-data-table td,
td,
#charbrowser td {
    border-color: rgba(106, 180, 235, 0.16) !important;
}

.se-data-table tr:hover,
tr:hover td {
    background-color: rgba(64, 159, 224, 0.12) !important;
}

.se-footer,
footer,
footer * {
    color: #dff5ff !important;
}

.pace .pace-progress,
.pace-progress {
    background: linear-gradient(90deg, #165a8d, #76d7ff, #dcefff) !important;
    box-shadow: 0 0 10px rgba(91, 200, 255, 0.65) !important;
}
/* === end FC banner-matched typography and chrome === */
/* FC sidebar visual parity override */
.se-left-nav {
    min-height: calc(100vh - 301px) !important;
    width: 200px !important;
    background: transparent !important;
    border-right: 1px solid #333 !important;
    border-left: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    font-family: 'Oswald', Arial, sans-serif !important;
}

.se-left-nav table {
    width: 100% !important;
    border-collapse: collapse !important;
}

.se-left-nav td {
    border-bottom: 1px solid #242424 !important;
    padding: 0 !important;
}

.se-left-nav .menuh {
    display: table-cell !important;
    padding: 12px 8px 6px !important;
    background: rgba(22, 55, 30, 0.88) !important;
    border-bottom: 1px solid #333 !important;
    color: #ffffff !important;
    font-family: 'Fjalla One', Arial, sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-shadow: none !important;
}

.se-left-nav .menu_item {
    display: table-cell !important;
    padding: 6px 8px !important;
    background: #111 !important;
    border-bottom: 1px solid #242424 !important;
}

.se-left-nav .menu_item li {
    list-style: none !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
}

.se-left-nav .menu_item li:last-child {
    margin-bottom: 0 !important;
}

.se-left-nav .menu_item a {
    display: inline !important;
    padding: 0 !important;
    color: #26bfff !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    font-family: 'Oswald', Arial, sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    text-transform: none !important;
    text-shadow: none !important;
}

.se-left-nav .menu_item a:hover {
    color: #ffffff !important;
    background: transparent !important;
    text-shadow: none !important;
}

@media (max-width: 900px) {
    .se-left-nav {
        min-height: auto !important;
        border-right: 0 !important;
        border-bottom: 1px solid #333 !important;
    }
}
/* FC main visual parity final */
.side_menu,
.se-left-nav {
    width: 200px !important;
    min-width: 200px !important;
    background: #05090d !important;
    border-right: 2px solid #333 !important;
    border-left: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    font-family: 'Oswald', Arial, sans-serif !important;
}

.side_menu table,
.se-left-nav table {
    width: 100% !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}

.side_menu tr,
.se-left-nav tr,
.side_menu td,
.se-left-nav td {
    background: transparent !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    box-shadow: none !important;
}

.side_menu .menuh,
.se-left-nav .menuh {
    display: block !important;
    box-sizing: border-box !important;
    min-height: 40px !important;
    padding: 11px 8px 7px !important;
    background: #05090d !important;
    border: 0 !important;
    border-bottom: 1px solid #333 !important;
    color: #ffffff !important;
    font-family: 'Fjalla One', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    line-height: 1.25 !important;
    text-transform: uppercase !important;
    text-shadow: none !important;
}

.side_menu .menu_item,
.se-left-nav .menu_item {
    display: block !important;
    box-sizing: border-box !important;
    padding: 8px 8px 7px !important;
    background: #061018 !important;
    border: 0 !important;
    border-bottom: 1px solid #242424 !important;
    color: #e0e0e0 !important;
    box-shadow: none !important;
}

.side_menu .menu_item li,
.se-left-nav .menu_item li {
    list-style: none !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.side_menu .menu_item li:last-child,
.se-left-nav .menu_item li:last-child {
    margin-bottom: 0 !important;
}

.side_menu .menu_item a,
.se-left-nav .menu_item a {
    display: inline !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #26bfff !important;
    font-family: 'Oswald', Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    text-transform: none !important;
    text-shadow: none !important;
    -webkit-text-fill-color: #26bfff !important;
}

.side_menu .menu_item a:hover,
.se-left-nav .menu_item a:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: transparent !important;
    text-shadow: none !important;
}

.se-shell .se-card,
.se-shell .fc-home-panel,
.se-shell #charbrowser .CBBorder,
.se-shell #charbrowser .CBGroup,
.se-shell #charbrowser .CBTable,
.se-shell .page-content {
    background: rgba(6, 16, 24, 0.94) !important;
    border-color: #3a3a3a !important;
}

.se-shell .se-data-table th,
.se-shell #charbrowser th,
.se-shell .CBTableTitle {
    background: #071827 !important;
    color: #66ccff !important;
    border-color: #333 !important;
}

.se-shell .se-data-table tr:nth-child(even),
.se-shell #charbrowser tr:nth-child(even) {
    background: #111 !important;
}

.se-shell .se-data-table tr:nth-child(odd),
.se-shell #charbrowser tr:nth-child(odd) {
    background: #181818 !important;
}

.se-shell .se-main h1,
.se-shell .se-main h2,
.se-shell .fc-home-title h1,
.se-shell .fc-home-panel h2 {
    color: #66ccff !important;
}

