Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
Created page with "CSS placed here will be applied to all skins: /* * ============================================================ * eve.wiki — MediaWiki:Common.css * EVE Online theme override for the Citizen skin * ============================================================ * Install: paste this into MediaWiki:Common.css on your wiki * Requires: Citizen skin (github.com/StarCitizenTools/mediawiki-skins-Citizen) * Fonts: add to MediaWiki:Common.css or LocalSettings.php $wgHo..."
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/*
/*
  * ============================================================
  * ============================================================
  * eve.wiki — MediaWiki:Common.css
  * eve.wiki — MediaWiki:Common.css
  * EVE Online theme override for the Citizen skin
  * EVE Online theme for the Citizen skin
  * ============================================================
  * CLEAN REWRITE — text colors fixed, no background blowouts
* Install: paste this into MediaWiki:Common.css on your wiki
* Requires: Citizen skin (github.com/StarCitizenTools/mediawiki-skins-Citizen)
* Fonts: add to MediaWiki:Common.css or LocalSettings.php $wgHooks
  * ============================================================
  * ============================================================
  */
  */


/* ------------------------------------------------------------
/* ============================================================
   GOOGLE FONTS IMPORT
   FONTS
   ------------------------------------------------------------ */
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');


/* ============================================================
/* ============================================================
   SECTION 1: CITIZEN SKIN CSS VARIABLE OVERRIDES
   SECTION 1: CITIZEN TOKEN OVERRIDES
  These map directly onto Citizen's internal token system.
   ============================================================ */
   ============================================================ */
/* -- Light mode (Citizen uses :root for light) -- */
:root,
:root,
.skin-citizen,
.skin-citizen {
.skin-citizen-theme-day {
   --color-surface-0:         #0d0f14;
 
   --color-surface-1:         #131720;
  /* Core backgrounds */
   --color-surface-2:         #171c26;
   --color-surface-0:       #0d0f14;   /* page background */
   --color-surface-3:         #1c2230;
   --color-surface-1:       #131720;   /* primary panels */
   --color-surface-4:         #1f2638;
   --color-surface-2:       #171c26;   /* secondary panels */
   --border-color-base:       #233042;
   --color-surface-3:       #1c2230;   /* raised elements */
   --border-color-subtle:     #1a2230;
   --color-surface-4:       #1f2638;   /* hover state */
   --border-color-strong:     #2e3f58;
 
   --color-base:               #d7e0ea;
  /* Borders */
   --color-base--subtle:       #93a4b5;
   --border-color-base:     #233042;
   --color-base--emphasized:   #eef3fa;
   --border-color-subtle:   #1a2230;
   --color-link:               #4fc3e8;
   --border-color-strong:   #2e3f58;
   --color-link--visited:     #7aa8c8;
 
   --color-link--active:       #80d8f5;
  /* Text */
   --color-primary:           #4fc3e8;
   --color-base:             #d7e0ea;
   --color-primary--hover:     #80d8f5;
   --color-base--subtle:     #93a4b5;
   --color-secondary:         #c8a84b;
   --color-base--emphasized: #eef3fa;
   --color-progressive:       #4fc3e8;
   --color-link:             #4fc3e8;
   --color-destructive:       #cc4444;
   --color-link--visited:   #7aa8c8;
   --color-header-background: #080a10;
   --color-link--active:     #80d8f5;
   --color-icon-base:         #4fc3e8;
 
   --color-accent:             #4fc3e8;
  /* Accents */
   --color-primary:         #4fc3e8;   /* cyan — primary */
   --color-primary--hover:   #80d8f5;
   --color-secondary:       #c8a84b;   /* gold — secondary */
  --color-secondary--hover: #e0c870;
 
  /* Progressive / destructive */
   --color-progressive:     #4fc3e8;
  --color-progressive--hover: #80d8f5;
   --color-destructive:     #cc4444;
 
  /* Header / nav */
   --color-header-background: #080a10;
  --color-header-border:    #233042;
 
  /* Sidebar */
  --color-toc-background:  #131720;
  --color-sidebar-background: #0f1218;
 
  /* Citizen's internal tokens */
   --color-icon-base:       #4fc3e8;
  --color-icon-subtle:      #93a4b5;
   --color-accent:           #4fc3e8;
  --color-accent-hover:    #80d8f5;
   --color-menu-item-hover-background: #1c2230;
   --color-menu-item-hover-background: #1c2230;
 
   scrollbar-color:           #233042 #0d0f14;
  /* Typography sizes */
   scrollbar-width:           thin;
  --font-size-base:        15px;
  --font-size-small:        13px;
  --font-size-large:        17px;
  --font-size-h1:          28px;
  --font-size-h2:          20px;
  --font-size-h3:          16px;
  --font-size-h4:          14px;
 
  /* Line height */
  --line-height-base:      1.65;
 
  /* Spacing */
  --space-unit:            8px;
  --border-radius-base:    2px;
  --border-radius-medium:  4px;
 
  /* Shadow */
  --box-shadow-card:        0 2px 12px rgba(0,0,0,.4);
  --box-shadow-menu:        0 4px 20px rgba(0,0,0,.6);
 
  /* Scrollbar */
   scrollbar-color:         #233042 #0d0f14;
   scrollbar-width:         thin;
}
 
/* -- Dark mode / night mode -- */
.skin-citizen-theme-night,
[data-theme="dark"] {
  --color-surface-0:        #0a0c10;
  --color-surface-1:        #0f1218;
  --color-surface-2:        #131720;
  --color-surface-3:        #171c26;
  --color-surface-4:        #1c2230;
}
}


/* ============================================================
/* ============================================================
   SECTION 2: GLOBAL BASE OVERRIDES
   SECTION 2: BASE — dark background, light text everywhere
   ============================================================ */
   ============================================================ */
/* Body & page background */
body,
body,
.skin-citizen {
.skin-citizen,
   background-color: var(--color-surface-0) !important;
.citizen-body,
   color: var(--color-base) !important;
#mw-content-text,
.mw-parser-output,
.mw-body,
.mw-body-content,
#content,
#bodyContent,
.citizen-page-container,
.citizen-content-container,
#citizen-content {
   background-color: #0d0f14 !important;
   color: #d7e0ea !important;
   font-family: 'Rajdhani', sans-serif !important;
   font-family: 'Rajdhani', sans-serif !important;
  font-size: var(--font-size-base) !important;
  line-height: var(--line-height-base) !important;
   -webkit-font-smoothing: antialiased;
   -webkit-font-smoothing: antialiased;
}
}


/* Subtle scanline texture over entire page */
/* All text elements default to readable light color */
p, li, td, th, dd, dt, label, caption,
.mw-parser-output p,
.mw-parser-output li,
.mw-parser-output td,
.mw-parser-output th {
  color: #d7e0ea;
}
 
/* Links */
a, .mw-parser-output a {
  color: #4fc3e8 !important;
  text-decoration: none;
}
a:hover, .mw-parser-output a:hover { color: #80d8f5 !important; }
a:visited, .mw-parser-output a:visited { color: #7aa8c8 !important; }
 
/* Subtle grid overlay on page */
body::before {
body::before {
   content: '';
   content: '';
Line 129: Line 88:
   inset: 0;
   inset: 0;
   pointer-events: none;
   pointer-events: none;
   z-index: 9999;
   z-index: 0;
   background-image:
   background-image:
     linear-gradient(rgba(79,195,232,.015) 1px, transparent 1px),
     linear-gradient(rgba(79,195,232,.015) 1px, transparent 1px),
Line 136: Line 95:
}
}


/* Links */
/* ============================================================
a,
  SECTION 3: HEADINGS
.mw-parser-output a {
  ============================================================ */
  color: var(--color-link) !important;
h1, .mw-parser-output h1, #firstHeading {
  text-decoration: none;
  transition: color .12s ease;
}
 
a:hover,
.mw-parser-output a:hover {
  color: var(--color-link--active) !important;
  text-decoration: underline;
}
 
a:visited,
.mw-parser-output a:visited {
  color: var(--color-link--visited) !important;
}
 
/* Headings */
h1, .mw-parser-output h1 {
   font-family: 'Orbitron', sans-serif !important;
   font-family: 'Orbitron', sans-serif !important;
   font-size: var(--font-size-h1) !important;
   font-size: 26px !important;
   font-weight: 700 !important;
   font-weight: 700 !important;
   color: var(--color-base--emphasized) !important;
   color: #eef3fa !important;
   letter-spacing: .5px;
   letter-spacing: .5px;
   border-bottom: 1px solid #233042 !important;
   border-bottom: 1px solid #233042 !important;
   padding-bottom: 6px !important;
   padding-bottom: 6px !important;
  margin-bottom: 14px !important;
}
}


h2, .mw-parser-output h2 {
h2, .mw-parser-output h2 {
   font-family: 'Orbitron', sans-serif !important;
   font-family: 'Orbitron', sans-serif !important;
   font-size: var(--font-size-h2) !important;
   font-size: 18px !important;
   font-weight: 600 !important;
   font-weight: 600 !important;
   color: #4fc3e8 !important;
   color: #4fc3e8 !important;
Line 176: Line 117:
   padding-bottom: 4px !important;
   padding-bottom: 4px !important;
   margin: 20px 0 8px !important;
   margin: 20px 0 8px !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
h2::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 16px;
  background: #4fc3e8;
  flex-shrink: 0;
}
}


h3, .mw-parser-output h3 {
h3, .mw-parser-output h3 {
   font-family: 'Orbitron', sans-serif !important;
   font-family: 'Orbitron', sans-serif !important;
   font-size: var(--font-size-h3) !important;
   font-size: 14px !important;
   font-weight: 600 !important;
   font-weight: 600 !important;
   color: #c8a84b !important;
   color: #c8a84b !important;
   letter-spacing: .8px;
   letter-spacing: .8px;
  margin: 14px 0 6px !important;
   border-bottom: none !important;
   border-bottom: none !important;
}
}


h4, .mw-parser-output h4 {
h4, h5, h6,
.mw-parser-output h4,
.mw-parser-output h5,
.mw-parser-output h6 {
   font-family: 'Rajdhani', sans-serif !important;
   font-family: 'Rajdhani', sans-serif !important;
  font-size: var(--font-size-h4) !important;
   font-weight: 700 !important;
   font-weight: 700 !important;
   color: var(--color-base--subtle) !important;
   color: #93a4b5 !important;
   letter-spacing: 1.5px;
   letter-spacing: 1px;
   text-transform: uppercase;
   text-transform: uppercase;
  margin: 10px 0 5px !important;
}
}


/* ============================================================
/* ============================================================
   SECTION 3: CITIZEN HEADER / TOPBAR
   SECTION 4: TOPBAR
   ============================================================ */
   ============================================================ */
 
#citizen-header, .citizen-header {
/* Main header bar */
#citizen-header,
.citizen-header {
   background: #080a10 !important;
   background: #080a10 !important;
   border-bottom: 1px solid #233042 !important;
   border-bottom: 1px solid #233042 !important;
Line 222: Line 148:
}
}


/* Header glow line */
/* Cyan shimmer line */
#citizen-header::after,
#citizen-header::after {
.citizen-header::after {
   content: '';
   content: '';
   position: absolute;
   position: absolute;
   bottom: 0; left: 0; right: 0;
   bottom: 0; left: 0; right: 0;
   height: 1px;
   height: 1px;
   background: linear-gradient(90deg,
   background: linear-gradient(90deg, transparent, #2a8cb0 30%, #4fc3e8 50%, #2a8cb0 70%, transparent);
    transparent 0%,
    #1a7fa0 20%,
    #4fc3e8 50%,
    #1a7fa0 80%,
    transparent 100%
  );
   opacity: .5;
   opacity: .5;
   pointer-events: none;
   pointer-events: none;
}
}


/* Site logo / wordmark */
.citizen-wordmark, #citizen-header .citizen-header__wordmark {
#citizen-header .citizen-header__wordmark,
.citizen-wordmark {
   font-family: 'Orbitron', sans-serif !important;
   font-family: 'Orbitron', sans-serif !important;
   font-weight: 700 !important;
   font-weight: 700 !important;
   font-size: 16px !important;
   font-size: 15px !important;
   letter-spacing: 2px !important;
   letter-spacing: 2px !important;
   color: #eef3fa !important;
   color: #eef3fa !important;
}
}


/* Nav links in header */
#citizen-header a, .citizen-header a {
#citizen-header a,
.citizen-header a {
   font-family: 'Rajdhani', sans-serif !important;
   font-family: 'Rajdhani', sans-serif !important;
   font-weight: 600 !important;
   font-weight: 600 !important;
  letter-spacing: .8px;
   color: #93a4b5 !important;
   color: #93a4b5 !important;
  transition: color .12s ease !important;
}
}


#citizen-header a:hover,
#citizen-header a:hover, .citizen-header a:hover {
.citizen-header a:hover {
   color: #4fc3e8 !important;
   color: #4fc3e8 !important;
   text-decoration: none !important;
   text-decoration: none !important;
}
}


/* Search bar */
/* Search */
.citizen-search__form,
.citizen-search__form, #searchform {
#searchform,
.oo-ui-textInputWidget input {
   background: #131720 !important;
   background: #131720 !important;
   border: 1px solid #233042 !important;
   border: 1px solid #233042 !important;
Line 275: Line 185:
   font-family: 'Rajdhani', sans-serif !important;
   font-family: 'Rajdhani', sans-serif !important;
   border-radius: 2px !important;
   border-radius: 2px !important;
  transition: border-color .12s ease, box-shadow .12s ease !important;
}
}


.citizen-search__form:focus-within,
.citizen-search__form:focus-within, #searchform:focus-within {
#searchform:focus-within {
   border-color: #2a8cb0 !important;
   border-color: #2a8cb0 !important;
   box-shadow: 0 0 0 2px rgba(79,195,232,.12) !important;
   box-shadow: 0 0 0 2px rgba(79,195,232,.1) !important;
}
 
input[type="search"], input[type="text"], .citizen-search__input {
  color: #d7e0ea !important;
  background: transparent !important;
}
}


.citizen-search__form input::placeholder,
input::placeholder, .citizen-search__input::placeholder {
#searchInput::placeholder {
   color: #4e5f72 !important;
   color: #4e5f72 !important;
}
}


/* Search suggestion dropdown */
/* Search suggestions */
.citizen-search__suggestions,
.citizen-search__suggestions, .suggestions-results {
.suggestions-results {
   background: #131720 !important;
   background: #131720 !important;
   border: 1px solid #233042 !important;
   border: 1px solid #233042 !important;
   border-top: none !important;
   color: #d7e0ea !important;
  border-radius: 0 0 2px 2px !important;
}
}


.citizen-search__suggestion:hover,
.citizen-search__suggestion:hover, .suggestions-result:hover {
.suggestions-result:hover,
.suggestions-result.oo-ui-optionWidget-highlighted {
   background: #1c2230 !important;
   background: #1c2230 !important;
   color: #4fc3e8 !important;
   color: #4fc3e8 !important;
Line 306: Line 214:


/* ============================================================
/* ============================================================
   SECTION 4: SIDEBAR / TOC
   SECTION 5: SIDEBAR + TOC
   ============================================================ */
   ============================================================ */
 
#citizen-sidebar, .citizen-sidebar {
/* Left sidebar */
#citizen-sidebar,
.citizen-sidebar {
   background: #0f1218 !important;
   background: #0f1218 !important;
   border-right: 1px solid #1a2230 !important;
   border-right: 1px solid #1a2230 !important;
}
}


/* Sidebar section headings */
.citizen-nav__heading, .citizen-sidebar .citizen-nav__heading {
.citizen-sidebar .citizen-nav__heading,
#citizen-sidebar .citizen-nav__heading,
.citizen-toc__title {
   font-family: 'Orbitron', sans-serif !important;
   font-family: 'Orbitron', sans-serif !important;
   font-size: 9px !important;
   font-size: 9px !important;
   font-weight: 600 !important;
   font-weight: 600 !important;
   letter-spacing: 2.5px !important;
   letter-spacing: 2px !important;
   color: #c8a84b !important;
   color: #c8a84b !important;
   text-transform: uppercase !important;
   text-transform: uppercase !important;
   border-bottom: 1px solid #3a2e12 !important;
   border-bottom: 1px solid #3a2e12 !important;
   padding-bottom: 6px !important;
   padding-bottom: 5px !important;
  margin-bottom: 4px !important;
}
}


/* Sidebar links */
.citizen-nav__item a, .citizen-sidebar a, #citizen-sidebar a {
.citizen-sidebar a,
#citizen-sidebar a,
.citizen-nav__item a {
   font-family: 'Rajdhani', sans-serif !important;
   font-family: 'Rajdhani', sans-serif !important;
   font-size: 13.5px !important;
   font-size: 13.5px !important;
   font-weight: 500 !important;
   font-weight: 500 !important;
   color: #93a4b5 !important;
   color: #93a4b5 !important;
  transition: color .12s, background .12s !important;
  border-radius: 2px !important;
}
}


.citizen-sidebar a:hover,
.citizen-nav__item a:hover, .citizen-sidebar a:hover {
#citizen-sidebar a:hover,
.citizen-nav__item a:hover {
   color: #4fc3e8 !important;
   color: #4fc3e8 !important;
   background: rgba(79,195,232,.05) !important;
   background: rgba(79,195,232,.05) !important;
Line 351: Line 245:
}
}


.citizen-nav__item--active a,
.citizen-nav__item--active a {
.citizen-nav__item.active a {
   color: #4fc3e8 !important;
   color: #4fc3e8 !important;
   background: rgba(79,195,232,.08) !important;
   background: rgba(79,195,232,.08) !important;
Line 358: Line 251:
}
}


/* Floating Table of Contents */
/* TOC */
.citizen-toc,
.citizen-toc, #citizen-toc {
#citizen-toc {
   background: #131720 !important;
   background: #131720 !important;
   border: 1px solid #233042 !important;
   border: 1px solid #233042 !important;
   border-top: 2px solid #4fc3e8 !important;
   border-top: 2px solid #4fc3e8 !important;
  border-radius: 2px !important;
}
}


.citizen-toc__title {
.citizen-toc__title {
  color: #4fc3e8 !important;
   font-family: 'Orbitron', sans-serif !important;
   font-family: 'Orbitron', sans-serif !important;
   font-size: 10px !important;
   font-size: 10px !important;
   letter-spacing: 2px !important;
   letter-spacing: 2px !important;
}
.citizen-toc a {
  color: #93a4b5 !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 13px !important;
}
.citizen-toc a:hover {
  color: #4fc3e8 !important;
}
.citizen-toc__item--active > a {
  color: #4fc3e8 !important;
  border-left: 2px solid #4fc3e8 !important;
}
/* ============================================================
  SECTION 5: ARTICLE CONTENT AREA
  ============================================================ */
/* Content wrapper */
#mw-content-text,
.mw-parser-output {
  color: var(--color-base) !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}
/* Page first heading */
#firstHeading,
.page-heading h1 {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #eef3fa !important;
  letter-spacing: .5px !important;
  border-bottom: 1px solid #233042 !important;
  padding-bottom: 8px !important;
}
/* Article tabs (read / discussion / history / edit) */
#p-views .vector-tab-noaction a,
.citizen-page-tabs a,
#ca-nstab-main a,
#ca-talk a,
#ca-history a,
#ca-edit a,
#ca-ve-edit a {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #4e5f72 !important;
  border-bottom: 2px solid transparent !important;
  transition: color .12s, border-color .12s !important;
  padding: 6px 12px !important;
}
#p-views .vector-tab-noaction a:hover,
.citizen-page-tabs a:hover {
   color: #4fc3e8 !important;
   color: #4fc3e8 !important;
  border-bottom-color: #4fc3e8 !important;
}
}


#ca-nstab-main.selected a,
.citizen-toc a { color: #93a4b5 !important; }
#ca-nstab-main a.selected,
.citizen-toc a:hover { color: #4fc3e8 !important; }
.selected a {
.citizen-toc__item--active > a { color: #4fc3e8 !important; }
  color: #4fc3e8 !important;
  border-bottom-color: #4fc3e8 !important;
}


/* ============================================================
/* ============================================================
   SECTION 6: TABLES
   SECTION 6: TABLES
  Infoboxes, wikitables, data tables
   ============================================================ */
   ============================================================ */
 
.wikitable, .mw-parser-output .wikitable {
/* Generic wikitable */
.wikitable,
.mw-parser-output .wikitable {
   background: #131720 !important;
   background: #131720 !important;
   border: 1px solid #233042 !important;
   border: 1px solid #233042 !important;
Line 460: Line 279:
   font-family: 'Rajdhani', sans-serif !important;
   font-family: 'Rajdhani', sans-serif !important;
   font-size: 14px !important;
   font-size: 14px !important;
  width: 100%;
}
}


.wikitable th,
.wikitable th, .mw-parser-output .wikitable th {
.mw-parser-output .wikitable th {
   background: #0f1218 !important;
   background: #0f1218 !important;
   color: #d7e0ea !important;
   color: #eef3fa !important;
   font-family: 'Orbitron', sans-serif !important;
   font-family: 'Orbitron', sans-serif !important;
   font-size: 9px !important;
   font-size: 9px !important;
Line 476: Line 293:
}
}


.wikitable td,
.wikitable td, .mw-parser-output .wikitable td {
.mw-parser-output .wikitable td {
   padding: 6px 12px !important;
   padding: 6px 12px !important;
   border: 1px solid #1a2230 !important;
   border: 1px solid #1a2230 !important;
   vertical-align: middle !important;
   color: #d7e0ea !important;
}
}


.wikitable tr:nth-child(even),
.wikitable tr:nth-child(even) td { background: rgba(255,255,255,.02) !important; }
.mw-parser-output .wikitable tr:nth-child(even) {
.wikitable tr:hover td { background: #1c2230 !important; }
  background: rgba(255,255,255,.02) !important;
}


.wikitable tr:hover,
/* Infobox */
.mw-parser-output .wikitable tr:hover {
.infobox, .mw-parser-output .infobox {
  background: #1c2230 !important;
}
 
/* Sortable table arrows */
.wikitable th.headerSort::after,
.wikitable .headerSort::after {
  color: #4fc3e8 !important;
}
 
/* Infobox — right-floated ship/item boxes */
.infobox,
.mw-parser-output .infobox {
   background: #131720 !important;
   background: #131720 !important;
   border: 1px solid #233042 !important;
   border: 1px solid #233042 !important;
Line 507: Line 309:
   color: #d7e0ea !important;
   color: #d7e0ea !important;
   font-family: 'Rajdhani', sans-serif !important;
   font-family: 'Rajdhani', sans-serif !important;
  font-size: 13.5px !important;
   float: right !important;
   float: right !important;
  clear: right !important;
   margin: 0 0 16px 20px !important;
   margin: 0 0 16px 20px !important;
   min-width: 220px !important;
   min-width: 220px !important;
Line 515: Line 315:
}
}


.infobox th,
.infobox th, .mw-parser-output .infobox th {
.mw-parser-output .infobox th {
   background: #0f1218 !important;
   background: #0f1218 !important;
   color: #eef3fa !important;
   color: #eef3fa !important;
   font-family: 'Orbitron', sans-serif !important;
   font-family: 'Orbitron', sans-serif !important;
   font-size: 9px !important;
   font-size: 9px !important;
   letter-spacing: 2px !important;
   letter-spacing: 1.5px !important;
   text-transform: uppercase !important;
   text-transform: uppercase !important;
   padding: 5px 10px !important;
   padding: 5px 10px !important;
Line 527: Line 326:
}
}


/* Infobox title row (first th with colspan) */
.infobox td, .mw-parser-output .infobox td {
.infobox th[colspan],
   padding: 5px 10px !important;
.mw-parser-output .infobox caption,
.mw-parser-output .infobox th:first-child[colspan] {
  background: #0a0c10 !important;
  color: #eef3fa !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  text-align: center !important;
  padding: 8px !important;
}
 
.infobox td,
.mw-parser-output .infobox td {
   padding: 4px 10px !important;
   border-bottom: 1px solid #1a2230 !important;
   border-bottom: 1px solid #1a2230 !important;
   vertical-align: middle !important;
   color: #d7e0ea !important;
}
}


.infobox tr:nth-child(even) td,
.infobox tr:nth-child(even) td { background: rgba(255,255,255,.02) !important; }
.mw-parser-output .infobox tr:nth-child(even) td {
  background: rgba(255,255,255,.025) !important;
}


/* ============================================================
/* ============================================================
   SECTION 7: NOTICE / CALLOUT BOXES
   SECTION 7: NOTICE / AMBOX
   ============================================================ */
   ============================================================ */
 
.ambox, .mw-message-box {
/* Generic MW message boxes */
.mw-message-box,
.ambox,
.mw-parser-output .ambox {
   background: #131720 !important;
   background: #131720 !important;
   border: 1px solid #233042 !important;
   border: 1px solid #233042 !important;
   border-left: 3px solid #4fc3e8 !important;
   border-left: 3px solid #4fc3e8 !important;
   color: #d7e0ea !important;
   color: #d7e0ea !important;
  font-family: 'Rajdhani', sans-serif !important;
  margin: 12px 0 !important;
}
}


.mw-message-box-warning,
.ambox-warning { border-left-color: #c8a84b !important; }
.ambox-warning {
.ambox-delete, .ambox-content { border-left-color: #cc4444 !important; }
  border-left-color: #c8a84b !important;
  background: rgba(200,168,75,.04) !important;
}


.mw-message-box-error,
/* ============================================================
.ambox-delete,
  SECTION 8: CODE
.ambox-content {
  ============================================================ */
   border-left-color: #cc4444 !important;
code, kbd, pre, .mw-parser-output code, .mw-parser-output pre {
   background: rgba(204,68,68,.04) !important;
   font-family: 'JetBrains Mono', monospace !important;
  background: #0a0c10 !important;
  color: #4fc3e8 !important;
  border: 1px solid #1a2230 !important;
   border-radius: 2px !important;
}
}


.mw-message-box-notice,
code, kbd { font-size: 12px !important; padding: 1px 6px !important; }
.ambox-notice {
pre, .mw-parser-output pre { font-size: 13px !important; padding: 12px 16px !important; }
  border-left-color: #4fc3e8 !important;
  background: rgba(79,195,232,.04) !important;
}


/* ============================================================
/* ============================================================
   SECTION 8: CODE BLOCKS
   SECTION 9: FORMS, BUTTONS, INPUTS
   ============================================================ */
   ============================================================ */
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
.oo-ui-inputWidget-input,
.mw-ui-input {
  background: #0d0f14 !important;
  border: 1px solid #233042 !important;
  color: #d7e0ea !important;
  font-family: 'Rajdhani', sans-serif !important;
}


code, kbd, samp, tt,
.mw-ui-button, .oo-ui-buttonElement-button {
.mw-parser-output code,
  background: #131720 !important;
.mw-parser-output pre {
  border: 1px solid #233042 !important;
   font-family: 'JetBrains Mono', 'Courier New', monospace !important;
  color: #d7e0ea !important;
   font-size: 13px !important;
   font-family: 'Rajdhani', sans-serif !important;
   background: #0a0c10 !important;
   font-weight: 600 !important;
}
 
.mw-ui-button:hover, .oo-ui-buttonElement-button:hover {
   border-color: #4fc3e8 !important;
   color: #4fc3e8 !important;
   color: #4fc3e8 !important;
  border: 1px solid #1a2230 !important;
  border-radius: 2px !important;
  padding: 1px 6px !important;
}
}


.mw-parser-output pre {
.mw-ui-progressive .oo-ui-buttonElement-button,
   padding: 12px 16px !important;
.oo-ui-flaggedElement-progressive .oo-ui-buttonElement-button {
   overflow-x: auto !important;
   background: rgba(79,195,232,.1) !important;
   line-height: 1.5 !important;
   border-color: #2a8cb0 !important;
   color: #4fc3e8 !important;
}
}


/* ============================================================
/* ============================================================
   SECTION 9: CITIZEN CARD / FEATURE COMPONENTS
   SECTION 10: MISC MW ELEMENTS
   ============================================================ */
   ============================================================ */
#catlinks, .catlinks {
  background: #131720 !important;
  border: 1px solid #233042 !important;
  color: #93a4b5 !important;
}
#catlinks a, .catlinks a { color: #4fc3e8 !important; }
.errorbox  { background: rgba(204,68,68,.08) !important; border: 1px solid #cc4444 !important; color: #ffbbbb !important; }
.warningbox { background: rgba(200,168,75,.08) !important; border: 1px solid #c8a84b !important; color: #f0e0a0 !important; }
.successbox { background: rgba(58,204,122,.08) !important; border: 1px solid #3acc7a !important; color: #a0f0c0 !important; }


/* Citizen's card component */
.mw-notification {
.citizen-card,
.ext-citizen-card {
   background: #131720 !important;
   background: #131720 !important;
   border: 1px solid #233042 !important;
   border: 1px solid #233042 !important;
   border-top: 2px solid #233042 !important;
   color: #d7e0ea !important;
  border-radius: 2px !important;
}
  transition: border-color .15s, background .15s !important;
 
/* Diff view */
.diff-addedline  { background: rgba(58,204,122,.08) !important; color: #d7e0ea !important; }
.diff-deletedline { background: rgba(204,68,68,.08) !important; color: #d7e0ea !important; }
.diff-context    { background: #0d0f14 !important; color: #93a4b5 !important; }
td.diff-marker    { background: #0d0f14 !important; color: #4e5f72 !important; }
 
/* Special pages */
.mw-specialpage-summary,
.mw-allpages-body,
.mw-prefixindex-list,
.mw-search-results,
.searchresults { color: #d7e0ea !important; }
 
.mw-search-result-heading a {
  color: #4fc3e8 !important;
  font-family: 'Orbitron', sans-serif !important;
}
 
/* History / contrib lists */
#pagehistory li, .mw-contributions-list li {
  color: #d7e0ea !important;
  border-bottom: 1px solid #1a2230 !important;
}
}


.citizen-card:hover,
/* Footer */
.ext-citizen-card:hover {
#citizen-footer, .citizen-footer, #footer {
   background: #171c26 !important;
   background: #080a10 !important;
   border-color: #2e3f58 !important;
   border-top: 1px solid #233042 !important;
   border-top-color: #4fc3e8 !important;
   color: #4e5f72 !important;
}
}
#citizen-footer a, .citizen-footer a, #footer a { color: #4e5f72 !important; }
#citizen-footer a:hover, #footer a:hover { color: #4fc3e8 !important; }


/* ============================================================
/* ============================================================
   SECTION 10: CUSTOM EVE.WIKI COMPONENTS
   SECTION 11: SCROLLBAR
  (classes you add manually to wikitext via templates)
   ============================================================ */
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0d0f14; }
::-webkit-scrollbar-thumb { background: #233042; }
::-webkit-scrollbar-thumb:hover { background: #2e3f58; }


/* -- EVE Stat Grid --
::selection { background: rgba(79,195,232,.2); color: #eef3fa; }
  Usage: wrap a wikitable in <div class="evewiki-stat-grid">
 
  ---------------------------------------------------------- */
/* ============================================================
.evewiki-stat-grid {
  SECTION 12: HOMEPAGE COMPONENTS
  display: grid !important;
  All .evewiki-* classes used in Main_Page.wiki
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  ============================================================ */
  gap: 6px !important;
  margin: 10px 0 !important;
}


.evewiki-stat-grid .evewiki-stat {
/* Hero wrapper */
.evewiki-hero-wrap {
   background: #131720;
   background: #131720;
   border: 1px solid #233042;
   border-bottom: 1px solid #233042;
   border-top: 2px solid #2e3f58;
   padding: 52px 24px 48px;
   padding: 8px 10px;
  position: relative;
  overflow: hidden;
   margin: 0 -20px;
   text-align: center;
   text-align: center;
  transition: border-top-color .15s;
}
}


.evewiki-stat-grid .evewiki-stat:hover {
.evewiki-hero-bg-glow {
   border-top-color: #4fc3e8;
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(79,195,232,.07) 0%, transparent 70%);
  pointer-events: none;
}
 
.evewiki-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,195,232,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,195,232,.018) 1px, transparent 1px);
   background-size: 48px 48px;
  pointer-events: none;
}
}


.evewiki-stat .label {
.evewiki-hero-content { position: relative; z-index: 1; }
   font-family: 'Orbitron', sans-serif;
 
   font-size: 8px;
.evewiki-hero-eyebrow {
   font-family: 'Rajdhani', sans-serif;
   font-size: 10px;
   font-weight: 600;
   font-weight: 600;
   letter-spacing: 1.5px;
   letter-spacing: 4px;
  color: #4e5f72;
   text-transform: uppercase;
   text-transform: uppercase;
   display: block;
   color: #4fc3e8;
   margin-bottom: 4px;
   margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
 
.evewiki-hero-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #4fc3e8;
  opacity: .5;
}
}


.evewiki-stat .value {
.evewiki-hero-title {
   font-family: 'JetBrains Mono', monospace;
   font-family: 'Orbitron', sans-serif;
   font-size: 18px;
   font-size: 52px;
  font-weight: 900;
   color: #eef3fa;
   color: #eef3fa;
   display: block;
   letter-spacing: 4px;
   line-height: 1;
   line-height: 1;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.evewiki-accent-dot { color: #4fc3e8; }
.evewiki-hero-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4e5f72;
  margin-bottom: 32px;
}
/* Search */
.evewiki-search-wrap {
  max-width: 560px;
  margin: 0 auto 32px;
}
.evewiki-search-box {
  display: flex;
  align-items: center;
  background: #0d0f14;
  border: 1px solid #233042;
  transition: border-color .15s;
}
.evewiki-search-box:focus-within {
  border-color: #2a8cb0;
  box-shadow: 0 0 0 2px rgba(79,195,232,.1);
}
}


.evewiki-stat .value.pos { color: #3acc7a; }
.evewiki-search-icon {
.evewiki-stat .value.neg { color: #cc4444; }
  padding: 0 12px;
.evewiki-stat .value.cyan { color: #4fc3e8; }
  display: flex;
.evewiki-stat .value.gold { color: #c8a84b; }
  align-items: center;
.evewiki-stat .unit {
  flex-shrink: 0;
  opacity: .4;
}
 
/* MW search input inside our box */
.evewiki-search-box input[type="search"],
.evewiki-search-box input[type="text"],
.evewiki-search-box .oo-ui-inputWidget-input {
  flex: 1;
  background: none !important;
  border: none !important;
  outline: none !important;
  color: #d7e0ea !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 13px 0 !important;
  letter-spacing: .3px !important;
  box-shadow: none !important;
}
 
/* Hide MW's own search button, show nothing (we use / shortcut) */
.evewiki-search-box .searchButton,
.evewiki-search-box button[type="submit"] {
  background: transparent !important;
  border: none !important;
  border-left: 1px solid #233042 !important;
  padding: 0 18px !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  color: #4fc3e8 !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
}
 
.evewiki-search-hint {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  color: #4e5f72;
  margin-top: 7px;
  letter-spacing: .5px;
}
 
.evewiki-search-hint kbd {
  font-family: 'JetBrains Mono', monospace;
  background: #131720;
  border: 1px solid #233042;
  padding: 1px 6px;
  color: #93a4b5;
   font-size: 10px;
   font-size: 10px;
  color: #4e5f72;
  margin-left: 2px;
}
}


/* -- EVE Tag / Chip --
/* CTA buttons */
  Usage: <span class="evewiki-tag evewiki-tag--cyan">Wormhole</span>
.evewiki-hero-cta {
  ---------------------------------------------------------- */
  display: flex;
.evewiki-tag {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
 
.evewiki-btn {
   display: inline-block;
   display: inline-block;
  padding: 8px 20px;
   font-family: 'Rajdhani', sans-serif;
   font-family: 'Rajdhani', sans-serif;
   font-size: 10px;
   font-size: 12px;
   font-weight: 600;
   font-weight: 600;
   letter-spacing: 1.5px;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   text-transform: uppercase;
   padding: 2px 8px;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none !important;
}
 
.evewiki-btn-cyan {
  border: 1px solid #2a8cb0;
  color: #4fc3e8 !important;
}
 
.evewiki-btn-cyan:hover {
  background: rgba(79,195,232,.08);
  border-color: #4fc3e8;
  color: #eef3fa !important;
}
 
.evewiki-btn-gold {
  border: 1px solid #8a7030;
  color: #c8a84b !important;
}
 
.evewiki-btn-gold:hover {
  background: rgba(200,168,75,.08);
  border-color: #c8a84b;
  color: #eef3fa !important;
}
 
.evewiki-btn-ghost {
  border: 1px solid #233042;
  color: #93a4b5 !important;
}
 
.evewiki-btn-ghost:hover {
  border-color: #2e3f58;
  color: #d7e0ea !important;
}
 
/* Stat bar */
.evewiki-stat-bar {
  display: inline-flex;
  border: 1px solid #233042;
  background: #0d0f14;
}
 
.evewiki-stat-bar-cell {
   padding: 12px 22px;
  border-right: 1px solid #233042;
  text-align: center;
}
 
.evewiki-stat-bar-cell:last-child { border-right: none; }
 
.evewiki-stat-bar-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: #4fc3e8;
  line-height: 1;
}
 
.evewiki-stat-bar-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  color: #4e5f72;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
 
/* Utility colors */
.evewiki-green { color: #3acc7a !important; }
.evewiki-cyan  { color: #4fc3e8 !important; }
.evewiki-gold  { color: #c8a84b !important; }
.evewiki-red  { color: #cc4444 !important; }
 
/* Section header */
.evewiki-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 14px;
}
 
.evewiki-section-bar {
  width: 3px;
  height: 16px;
  background: #4fc3e8;
  flex-shrink: 0;
}
 
.evewiki-section-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #eef3fa;
}
 
/* Card grid */
.evewiki-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}
 
/* Sys-panel — novacide style */
.evewiki-sys-panel {
  background: #0d0f14;
   border: 1px solid #233042;
   border: 1px solid #233042;
  border-top: 2px solid #233042;
}
.evewiki-panel-cyan  { border-top-color: #4fc3e8; }
.evewiki-panel-gold  { border-top-color: #c8a84b; }
.evewiki-panel-red  { border-top-color: #cc4444; }
.evewiki-panel-green { border-top-color: #3acc7a; }
.evewiki-panel-full  { grid-column: 1 / -1; }
.evewiki-panel-head {
  padding: 9px 14px 8px;
  border-bottom: 1px solid #1a2230;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0c10;
}
.evewiki-panel-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: #4e5f72;
}
.evewiki-label-cyan  { color: #4fc3e8; }
.evewiki-label-gold  { color: #c8a84b; }
.evewiki-label-red  { color: #cc4444; }
.evewiki-label-green { color: #3acc7a; }
.evewiki-panel-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
   color: #4e5f72;
   color: #4e5f72;
   background: #131720;
   background: #131720;
   vertical-align: middle;
   border: 1px solid #1a2230;
  padding: 1px 6px;
}
 
.evewiki-panel-body { padding: 14px; }
 
.evewiki-panel-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #eef3fa;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
}


.evewiki-tag--cyan {
.evewiki-panel-title a { color: #eef3fa !important; text-decoration: none !important; }
   border-color: #153d50;
.evewiki-panel-title a:hover { color: #4fc3e8 !important; }
   color: #4fc3e8;
 
   background: rgba(79,195,232,.06);
.evewiki-panel-desc {
   font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: #93a4b5;
  line-height: 1.5;
  margin-bottom: 14px;
}
 
.evewiki-panel-links { display: flex; flex-direction: column; gap: 4px; }
 
.evewiki-panel-link {
  display: flex;
  align-items: center;
  gap: 7px;
   font-family: 'Rajdhani', sans-serif;
  font-size: 12.5px;
  color: #93a4b5;
}
 
.evewiki-panel-link a { color: #93a4b5 !important; text-decoration: none !important; }
.evewiki-panel-link a:hover { color: #4fc3e8 !important; }
 
.evewiki-panel-link::before {
   content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  background: #233042;
}
 
.evewiki-dot-cyan::before  { background: #4fc3e8; }
.evewiki-dot-gold::before  { background: #c8a84b; }
.evewiki-dot-red::before  { background: #cc4444; }
.evewiki-dot-green::before { background: #3acc7a; }
 
/* Panel intro text */
.evewiki-panel-intro {
  padding: 10px 14px;
  border-bottom: 1px solid #1a2230;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: #93a4b5;
  line-height: 1.5;
}
 
/* Wormhole grid inside panel */
.evewiki-wh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
 
.evewiki-wh-col {
  padding: 14px 16px;
  border-right: 1px solid #1a2230;
}
}


.evewiki-tag--gold {
.evewiki-wh-col:last-child { border-right: none; }
   border-color: #3a2e12;
 
.evewiki-wh-col-head {
   font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
   color: #c8a84b;
   color: #c8a84b;
   background: rgba(200,168,75,.06);
   letter-spacing: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid #3a2e12;
  margin-bottom: 10px;
}
 
.evewiki-wh-links { display: flex; flex-direction: column; gap: 5px; }
 
.evewiki-wh-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
}
 
.evewiki-wh-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
 
.evewiki-wh-link-text { color: #d7e0ea !important; }
.evewiki-wh-link-text a { color: #d7e0ea !important; }
.evewiki-wh-link-text a:hover { color: #4fc3e8 !important; }
 
.evewiki-wh-link-sub {
  font-size: 11px;
  color: #4e5f72;
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
}
 
/* Status / trust signals */
.evewiki-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
}


.evewiki-tag--red {
.evewiki-status-cell {
   border-color: #3a1a1a;
   padding: 14px 16px;
   color: #cc4444;
   border-right: 1px solid #1a2230;
  background: rgba(204,68,68,.06);
}
}


.evewiki-tag--green {
.evewiki-status-cell:last-child { border-right: none; }
   border-color: #1a3a28;
 
   color: #3acc7a;
.evewiki-status-indicator {
   background: rgba(58,204,122,.06);
   font-family: 'JetBrains Mono', monospace;
   font-size: 9px;
   letter-spacing: 1.5px;
  margin-bottom: 6px;
}
}


/* -- Wave Accordion --
.evewiki-status-text {
  Usage: wrap wave tables in .evewiki-wave-accordion
  font-family: 'Rajdhani', sans-serif;
  JS in Common.js handles toggle
  font-size: 13px;
  ---------------------------------------------------------- */
   color: #93a4b5;
.evewiki-wave {
  border: 1px solid #233042;
   margin-bottom: 4px;
}
}
.evewiki-status-text a { color: #4fc3e8 !important; }
/* ============================================================
  SECTION 13: WAVE ACCORDION & CUSTOM COMPONENTS
  ============================================================ */
.evewiki-wave { border: 1px solid #233042; margin-bottom: 4px; }


.evewiki-wave-header {
.evewiki-wave-header {
Line 742: Line 933:
   gap: 8px;
   gap: 8px;
   padding: 8px 14px;
   padding: 8px 14px;
   background: #171c26;
   background: #131720;
   cursor: pointer;
   cursor: pointer;
   user-select: none;
   user-select: none;
   transition: background .12s;
   transition: background .12s;
  font-family: 'Rajdhani', sans-serif;
}
}


.evewiki-wave-header:hover {
.evewiki-wave-header:hover { background: #1c2230; }
  background: #1c2230;
.evewiki-wave.is-open .evewiki-wave-header { background: #0f1218; border-bottom: 1px solid #233042; }
}
 
.evewiki-wave.is-open .evewiki-wave-header {
  background: #0f1218;
  border-bottom: 1px solid #233042;
}


.evewiki-wave-num {
.evewiki-wave-num {
Line 767: Line 951:
   border: 1px solid #153d50;
   border: 1px solid #153d50;
   padding: 2px 8px;
   padding: 2px 8px;
  flex-shrink: 0;
}
}


.evewiki-wave-title {
.evewiki-wave-title {
  font-family: 'Rajdhani', sans-serif;
   font-size: 13px;
   font-size: 13px;
   font-weight: 600;
   font-weight: 600;
Line 780: Line 964:
   font-size: 10px;
   font-size: 10px;
   font-weight: 600;
   font-weight: 600;
  letter-spacing: .5px;
   padding: 2px 7px;
   padding: 2px 7px;
   border: 1px solid #3a1a1a;
   border: 1px solid #3a1a1a;
Line 787: Line 970:
}
}


.evewiki-wave-body {
.evewiki-wave-chevron { color: #4e5f72; font-size: 10px; transition: transform .15s; }
  display: none;
.evewiki-wave.is-open .evewiki-wave-chevron { transform: rotate(180deg); }
}
.evewiki-wave-body { display: none; }
.evewiki-wave.is-open .evewiki-wave-body { display: block; }


.evewiki-wave.is-open .evewiki-wave-body {
/* Tags */
   display: block;
.evewiki-tag {
}
   display: inline-block;
 
  font-family: 'Rajdhani', sans-serif;
.evewiki-wave-chevron {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid #233042;
   color: #4e5f72;
   color: #4e5f72;
  font-size: 10px;
  transition: transform .15s;
}
}


.evewiki-wave.is-open .evewiki-wave-chevron {
.evewiki-tag--cyan  { border-color: #153d50; color: #4fc3e8; background: rgba(79,195,232,.06); }
   transform: rotate(180deg);
.evewiki-tag--gold  { border-color: #3a2e12; color: #c8a84b; background: rgba(200,168,75,.06); }
}
.evewiki-tag--red   { border-color: #3a1a1a; color: #cc4444; background: rgba(204,68,68,.06); }
.evewiki-tag--green { border-color: #1a3a28; color: #3acc7a; background: rgba(58,204,122,.06); }


/* -- Wormhole class color dots --
/* Notice boxes */
  Usage: <span class="evewiki-wh-dot evewiki-wh-dot--c5"></span>
  ---------------------------------------------------------- */
.evewiki-wh-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid currentColor;
  vertical-align: middle;
  margin-right: 4px;
}
 
.evewiki-wh-dot--c1 { background: #4fc3e8; border-color: #4fc3e8; }
.evewiki-wh-dot--c2 { background: #5dc8a0; border-color: #5dc8a0; }
.evewiki-wh-dot--c3 { background: #a0c850; border-color: #a0c850; }
.evewiki-wh-dot--c4 { background: #c8a84b; border-color: #c8a84b; }
.evewiki-wh-dot--c5 { background: #e08040; border-color: #e08040; }
.evewiki-wh-dot--c6 { background: #cc4444; border-color: #cc4444; }
 
/* -- Notice boxes (custom) --
  ---------------------------------------------------------- */
.evewiki-notice {
.evewiki-notice {
   border-left: 3px solid #4fc3e8;
   border-left: 3px solid #4fc3e8;
Line 837: Line 1,004:
}
}


.evewiki-notice--warn {
.evewiki-notice--warn   { border-left-color: #c8a84b; background: rgba(200,168,75,.04); }
  border-left-color: #c8a84b;
.evewiki-notice--danger { border-left-color: #cc4444; background: rgba(204,68,68,.04); }
  background: rgba(200,168,75,.04);
}
 
.evewiki-notice--danger {
  border-left-color: #cc4444;
  background: rgba(204,68,68,.04);
}


.evewiki-notice-label {
.evewiki-notice-label {
Line 853: Line 1,013:
   letter-spacing: 2px;
   letter-spacing: 2px;
   text-transform: uppercase;
   text-transform: uppercase;
  color: #4fc3e8;
   display: block;
   display: block;
   margin-bottom: 4px;
   margin-bottom: 4px;
   opacity: .7;
  color: #4fc3e8;
   opacity: .8;
}
}


.evewiki-notice--warn .evewiki-notice-label { color: #c8a84b; }
.evewiki-notice--warn .evewiki-notice-label   { color: #c8a84b; }
.evewiki-notice--danger .evewiki-notice-label { color: #cc4444; }
.evewiki-notice--danger .evewiki-notice-label { color: #cc4444; }


/* ============================================================
/* WH dots */
  SECTION 11: CITIZEN FOOTER
.evewiki-wh-dot--c1 { background: #4fc3e8; }
  ============================================================ */
.evewiki-wh-dot--c2 { background: #5dc8a0; }
 
.evewiki-wh-dot--c3 { background: #a0c850; }
#citizen-footer,
.evewiki-wh-dot--c4 { background: #c8a84b; }
.citizen-footer,
.evewiki-wh-dot--c5 { background: #e08040; }
#footer {
.evewiki-wh-dot--c6 { background: #cc4444; }
  background: #080a10 !important;
  border-top: 1px solid #233042 !important;
  color: #4e5f72 !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 12px !important;
}
 
#citizen-footer a,
.citizen-footer a,
#footer a {
  color: #4e5f72 !important;
  transition: color .12s !important;
}
 
#citizen-footer a:hover,
.citizen-footer a:hover,
#footer a:hover {
  color: #4fc3e8 !important;
  text-decoration: none !important;
}
 
/* ============================================================
  SECTION 12: RESPONSIVE TWEAKS
  ============================================================ */
 
@media (max-width: 860px) {
  .evewiki-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
 
  .infobox,
  .mw-parser-output .infobox {
    float: none !important;
    margin: 0 0 16px 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}
 
@media (max-width: 480px) {
  .evewiki-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
 
  h2, .mw-parser-output h2 {
    font-size: 15px !important;
  }
 
  #firstHeading {
    font-size: 22px !important;
  }
}


/* ============================================================
/* ============================================================
   SECTION 13: SCROLLBAR STYLING (Webkit)
   SECTION 14: RESPONSIVE
   ============================================================ */
   ============================================================ */
 
@media (max-width: 900px) {
::-webkit-scrollbar {
  .evewiki-card-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
   width: 6px;
   .evewiki-wh-grid    { grid-template-columns: 1fr; }
   height: 6px;
   .evewiki-status-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
  .evewiki-wh-col    { border-right: none; border-bottom: 1px solid #1a2230; }
 
  .evewiki-wh-col:last-child { border-bottom: none; }
::-webkit-scrollbar-track {
   .infobox, .mw-parser-output .infobox { float: none !important; max-width: 100% !important; margin: 0 0 16px !important; }
   background: #0d0f14;
}
}


::-webkit-scrollbar-thumb {
@media (max-width: 600px) {
  background: #233042;
  .evewiki-card-grid  { grid-template-columns: 1fr; }
   border-radius: 0;
   .evewiki-status-grid { grid-template-columns: 1fr; }
}
  .evewiki-hero-title  { font-size: 36px; }
 
  .evewiki-stat-bar   { flex-wrap: wrap; }
::-webkit-scrollbar-thumb:hover {
   .evewiki-stat-bar-cell { flex: 1 1 40%; }
  background: #2e3f58;
}
 
/* ============================================================
  SECTION 14: SELECTION COLOR
   ============================================================ */
 
::selection {
  background: rgba(79,195,232,.2);
   color: #eef3fa;
}
}

Revision as of 19:34, 13 April 2026

/*
 * ============================================================
 * eve.wiki — MediaWiki:Common.css
 * EVE Online theme for the Citizen skin
 * CLEAN REWRITE — text colors fixed, no background blowouts
 * ============================================================
 */

/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================================
   SECTION 1: CITIZEN TOKEN OVERRIDES
   ============================================================ */
:root,
.skin-citizen {
  --color-surface-0:          #0d0f14;
  --color-surface-1:          #131720;
  --color-surface-2:          #171c26;
  --color-surface-3:          #1c2230;
  --color-surface-4:          #1f2638;
  --border-color-base:        #233042;
  --border-color-subtle:      #1a2230;
  --border-color-strong:      #2e3f58;
  --color-base:               #d7e0ea;
  --color-base--subtle:       #93a4b5;
  --color-base--emphasized:   #eef3fa;
  --color-link:               #4fc3e8;
  --color-link--visited:      #7aa8c8;
  --color-link--active:       #80d8f5;
  --color-primary:            #4fc3e8;
  --color-primary--hover:     #80d8f5;
  --color-secondary:          #c8a84b;
  --color-progressive:        #4fc3e8;
  --color-destructive:        #cc4444;
  --color-header-background:  #080a10;
  --color-icon-base:          #4fc3e8;
  --color-accent:             #4fc3e8;
  --color-menu-item-hover-background: #1c2230;
  scrollbar-color:            #233042 #0d0f14;
  scrollbar-width:            thin;
}

/* ============================================================
   SECTION 2: BASE — dark background, light text everywhere
   ============================================================ */
body,
.skin-citizen,
.citizen-body,
#mw-content-text,
.mw-parser-output,
.mw-body,
.mw-body-content,
#content,
#bodyContent,
.citizen-page-container,
.citizen-content-container,
#citizen-content {
  background-color: #0d0f14 !important;
  color: #d7e0ea !important;
  font-family: 'Rajdhani', sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

/* All text elements default to readable light color */
p, li, td, th, dd, dt, label, caption,
.mw-parser-output p,
.mw-parser-output li,
.mw-parser-output td,
.mw-parser-output th {
  color: #d7e0ea;
}

/* Links */
a, .mw-parser-output a {
  color: #4fc3e8 !important;
  text-decoration: none;
}
a:hover, .mw-parser-output a:hover { color: #80d8f5 !important; }
a:visited, .mw-parser-output a:visited { color: #7aa8c8 !important; }

/* Subtle grid overlay on page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(79,195,232,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,195,232,.015) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ============================================================
   SECTION 3: HEADINGS
   ============================================================ */
h1, .mw-parser-output h1, #firstHeading {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #eef3fa !important;
  letter-spacing: .5px;
  border-bottom: 1px solid #233042 !important;
  padding-bottom: 6px !important;
}

h2, .mw-parser-output h2 {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #4fc3e8 !important;
  letter-spacing: 1px;
  border-bottom: 1px solid #1a4a60 !important;
  padding-bottom: 4px !important;
  margin: 20px 0 8px !important;
}

h3, .mw-parser-output h3 {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #c8a84b !important;
  letter-spacing: .8px;
  border-bottom: none !important;
}

h4, h5, h6,
.mw-parser-output h4,
.mw-parser-output h5,
.mw-parser-output h6 {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  color: #93a4b5 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   SECTION 4: TOPBAR
   ============================================================ */
#citizen-header, .citizen-header {
  background: #080a10 !important;
  border-bottom: 1px solid #233042 !important;
  box-shadow: none !important;
}

/* Cyan shimmer line */
#citizen-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2a8cb0 30%, #4fc3e8 50%, #2a8cb0 70%, transparent);
  opacity: .5;
  pointer-events: none;
}

.citizen-wordmark, #citizen-header .citizen-header__wordmark {
  font-family: 'Orbitron', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 2px !important;
  color: #eef3fa !important;
}

#citizen-header a, .citizen-header a {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 600 !important;
  color: #93a4b5 !important;
}

#citizen-header a:hover, .citizen-header a:hover {
  color: #4fc3e8 !important;
  text-decoration: none !important;
}

/* Search */
.citizen-search__form, #searchform {
  background: #131720 !important;
  border: 1px solid #233042 !important;
  color: #d7e0ea !important;
  font-family: 'Rajdhani', sans-serif !important;
  border-radius: 2px !important;
}

.citizen-search__form:focus-within, #searchform:focus-within {
  border-color: #2a8cb0 !important;
  box-shadow: 0 0 0 2px rgba(79,195,232,.1) !important;
}

input[type="search"], input[type="text"], .citizen-search__input {
  color: #d7e0ea !important;
  background: transparent !important;
}

input::placeholder, .citizen-search__input::placeholder {
  color: #4e5f72 !important;
}

/* Search suggestions */
.citizen-search__suggestions, .suggestions-results {
  background: #131720 !important;
  border: 1px solid #233042 !important;
  color: #d7e0ea !important;
}

.citizen-search__suggestion:hover, .suggestions-result:hover {
  background: #1c2230 !important;
  color: #4fc3e8 !important;
}

/* ============================================================
   SECTION 5: SIDEBAR + TOC
   ============================================================ */
#citizen-sidebar, .citizen-sidebar {
  background: #0f1218 !important;
  border-right: 1px solid #1a2230 !important;
}

.citizen-nav__heading, .citizen-sidebar .citizen-nav__heading {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  color: #c8a84b !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid #3a2e12 !important;
  padding-bottom: 5px !important;
}

.citizen-nav__item a, .citizen-sidebar a, #citizen-sidebar a {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #93a4b5 !important;
}

.citizen-nav__item a:hover, .citizen-sidebar a:hover {
  color: #4fc3e8 !important;
  background: rgba(79,195,232,.05) !important;
  text-decoration: none !important;
}

.citizen-nav__item--active a {
  color: #4fc3e8 !important;
  background: rgba(79,195,232,.08) !important;
  border-left: 2px solid #4fc3e8 !important;
}

/* TOC */
.citizen-toc, #citizen-toc {
  background: #131720 !important;
  border: 1px solid #233042 !important;
  border-top: 2px solid #4fc3e8 !important;
}

.citizen-toc__title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  color: #4fc3e8 !important;
}

.citizen-toc a { color: #93a4b5 !important; }
.citizen-toc a:hover { color: #4fc3e8 !important; }
.citizen-toc__item--active > a { color: #4fc3e8 !important; }

/* ============================================================
   SECTION 6: TABLES
   ============================================================ */
.wikitable, .mw-parser-output .wikitable {
  background: #131720 !important;
  border: 1px solid #233042 !important;
  border-collapse: collapse !important;
  color: #d7e0ea !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 14px !important;
}

.wikitable th, .mw-parser-output .wikitable th {
  background: #0f1218 !important;
  color: #eef3fa !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 8px 12px !important;
  border: 1px solid #233042 !important;
}

.wikitable td, .mw-parser-output .wikitable td {
  padding: 6px 12px !important;
  border: 1px solid #1a2230 !important;
  color: #d7e0ea !important;
}

.wikitable tr:nth-child(even) td { background: rgba(255,255,255,.02) !important; }
.wikitable tr:hover td { background: #1c2230 !important; }

/* Infobox */
.infobox, .mw-parser-output .infobox {
  background: #131720 !important;
  border: 1px solid #233042 !important;
  border-top: 2px solid #4fc3e8 !important;
  color: #d7e0ea !important;
  font-family: 'Rajdhani', sans-serif !important;
  float: right !important;
  margin: 0 0 16px 20px !important;
  min-width: 220px !important;
  max-width: 280px !important;
}

.infobox th, .mw-parser-output .infobox th {
  background: #0f1218 !important;
  color: #eef3fa !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 9px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 5px 10px !important;
  border: 1px solid #233042 !important;
}

.infobox td, .mw-parser-output .infobox td {
  padding: 5px 10px !important;
  border-bottom: 1px solid #1a2230 !important;
  color: #d7e0ea !important;
}

.infobox tr:nth-child(even) td { background: rgba(255,255,255,.02) !important; }

/* ============================================================
   SECTION 7: NOTICE / AMBOX
   ============================================================ */
.ambox, .mw-message-box {
  background: #131720 !important;
  border: 1px solid #233042 !important;
  border-left: 3px solid #4fc3e8 !important;
  color: #d7e0ea !important;
}

.ambox-warning { border-left-color: #c8a84b !important; }
.ambox-delete, .ambox-content { border-left-color: #cc4444 !important; }

/* ============================================================
   SECTION 8: CODE
   ============================================================ */
code, kbd, pre, .mw-parser-output code, .mw-parser-output pre {
  font-family: 'JetBrains Mono', monospace !important;
  background: #0a0c10 !important;
  color: #4fc3e8 !important;
  border: 1px solid #1a2230 !important;
  border-radius: 2px !important;
}

code, kbd { font-size: 12px !important; padding: 1px 6px !important; }
pre, .mw-parser-output pre { font-size: 13px !important; padding: 12px 16px !important; }

/* ============================================================
   SECTION 9: FORMS, BUTTONS, INPUTS
   ============================================================ */
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
.oo-ui-inputWidget-input,
.mw-ui-input {
  background: #0d0f14 !important;
  border: 1px solid #233042 !important;
  color: #d7e0ea !important;
  font-family: 'Rajdhani', sans-serif !important;
}

.mw-ui-button, .oo-ui-buttonElement-button {
  background: #131720 !important;
  border: 1px solid #233042 !important;
  color: #d7e0ea !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 600 !important;
}

.mw-ui-button:hover, .oo-ui-buttonElement-button:hover {
  border-color: #4fc3e8 !important;
  color: #4fc3e8 !important;
}

.mw-ui-progressive .oo-ui-buttonElement-button,
.oo-ui-flaggedElement-progressive .oo-ui-buttonElement-button {
  background: rgba(79,195,232,.1) !important;
  border-color: #2a8cb0 !important;
  color: #4fc3e8 !important;
}

/* ============================================================
   SECTION 10: MISC MW ELEMENTS
   ============================================================ */
#catlinks, .catlinks {
  background: #131720 !important;
  border: 1px solid #233042 !important;
  color: #93a4b5 !important;
}
#catlinks a, .catlinks a { color: #4fc3e8 !important; }

.errorbox   { background: rgba(204,68,68,.08) !important; border: 1px solid #cc4444 !important; color: #ffbbbb !important; }
.warningbox { background: rgba(200,168,75,.08) !important; border: 1px solid #c8a84b !important; color: #f0e0a0 !important; }
.successbox { background: rgba(58,204,122,.08) !important; border: 1px solid #3acc7a !important; color: #a0f0c0 !important; }

.mw-notification {
  background: #131720 !important;
  border: 1px solid #233042 !important;
  color: #d7e0ea !important;
}

/* Diff view */
.diff-addedline   { background: rgba(58,204,122,.08) !important; color: #d7e0ea !important; }
.diff-deletedline { background: rgba(204,68,68,.08) !important; color: #d7e0ea !important; }
.diff-context     { background: #0d0f14 !important; color: #93a4b5 !important; }
td.diff-marker    { background: #0d0f14 !important; color: #4e5f72 !important; }

/* Special pages */
.mw-specialpage-summary,
.mw-allpages-body,
.mw-prefixindex-list,
.mw-search-results,
.searchresults { color: #d7e0ea !important; }

.mw-search-result-heading a {
  color: #4fc3e8 !important;
  font-family: 'Orbitron', sans-serif !important;
}

/* History / contrib lists */
#pagehistory li, .mw-contributions-list li {
  color: #d7e0ea !important;
  border-bottom: 1px solid #1a2230 !important;
}

/* Footer */
#citizen-footer, .citizen-footer, #footer {
  background: #080a10 !important;
  border-top: 1px solid #233042 !important;
  color: #4e5f72 !important;
}
#citizen-footer a, .citizen-footer a, #footer a { color: #4e5f72 !important; }
#citizen-footer a:hover, #footer a:hover { color: #4fc3e8 !important; }

/* ============================================================
   SECTION 11: SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0d0f14; }
::-webkit-scrollbar-thumb { background: #233042; }
::-webkit-scrollbar-thumb:hover { background: #2e3f58; }

::selection { background: rgba(79,195,232,.2); color: #eef3fa; }

/* ============================================================
   SECTION 12: HOMEPAGE COMPONENTS
   All .evewiki-* classes used in Main_Page.wiki
   ============================================================ */

/* Hero wrapper */
.evewiki-hero-wrap {
  background: #131720;
  border-bottom: 1px solid #233042;
  padding: 52px 24px 48px;
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  text-align: center;
}

.evewiki-hero-bg-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(79,195,232,.07) 0%, transparent 70%);
  pointer-events: none;
}

.evewiki-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,195,232,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,195,232,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.evewiki-hero-content { position: relative; z-index: 1; }

.evewiki-hero-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4fc3e8;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.evewiki-hero-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #4fc3e8;
  opacity: .5;
}

.evewiki-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #eef3fa;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.evewiki-accent-dot { color: #4fc3e8; }

.evewiki-hero-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4e5f72;
  margin-bottom: 32px;
}

/* Search */
.evewiki-search-wrap {
  max-width: 560px;
  margin: 0 auto 32px;
}

.evewiki-search-box {
  display: flex;
  align-items: center;
  background: #0d0f14;
  border: 1px solid #233042;
  transition: border-color .15s;
}

.evewiki-search-box:focus-within {
  border-color: #2a8cb0;
  box-shadow: 0 0 0 2px rgba(79,195,232,.1);
}

.evewiki-search-icon {
  padding: 0 12px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: .4;
}

/* MW search input inside our box */
.evewiki-search-box input[type="search"],
.evewiki-search-box input[type="text"],
.evewiki-search-box .oo-ui-inputWidget-input {
  flex: 1;
  background: none !important;
  border: none !important;
  outline: none !important;
  color: #d7e0ea !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 13px 0 !important;
  letter-spacing: .3px !important;
  box-shadow: none !important;
}

/* Hide MW's own search button, show nothing (we use / shortcut) */
.evewiki-search-box .searchButton,
.evewiki-search-box button[type="submit"] {
  background: transparent !important;
  border: none !important;
  border-left: 1px solid #233042 !important;
  padding: 0 18px !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  color: #4fc3e8 !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
}

.evewiki-search-hint {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  color: #4e5f72;
  margin-top: 7px;
  letter-spacing: .5px;
}

.evewiki-search-hint kbd {
  font-family: 'JetBrains Mono', monospace;
  background: #131720;
  border: 1px solid #233042;
  padding: 1px 6px;
  color: #93a4b5;
  font-size: 10px;
}

/* CTA buttons */
.evewiki-hero-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.evewiki-btn {
  display: inline-block;
  padding: 8px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none !important;
}

.evewiki-btn-cyan {
  border: 1px solid #2a8cb0;
  color: #4fc3e8 !important;
}

.evewiki-btn-cyan:hover {
  background: rgba(79,195,232,.08);
  border-color: #4fc3e8;
  color: #eef3fa !important;
}

.evewiki-btn-gold {
  border: 1px solid #8a7030;
  color: #c8a84b !important;
}

.evewiki-btn-gold:hover {
  background: rgba(200,168,75,.08);
  border-color: #c8a84b;
  color: #eef3fa !important;
}

.evewiki-btn-ghost {
  border: 1px solid #233042;
  color: #93a4b5 !important;
}

.evewiki-btn-ghost:hover {
  border-color: #2e3f58;
  color: #d7e0ea !important;
}

/* Stat bar */
.evewiki-stat-bar {
  display: inline-flex;
  border: 1px solid #233042;
  background: #0d0f14;
}

.evewiki-stat-bar-cell {
  padding: 12px 22px;
  border-right: 1px solid #233042;
  text-align: center;
}

.evewiki-stat-bar-cell:last-child { border-right: none; }

.evewiki-stat-bar-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: #4fc3e8;
  line-height: 1;
}

.evewiki-stat-bar-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  color: #4e5f72;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Utility colors */
.evewiki-green { color: #3acc7a !important; }
.evewiki-cyan  { color: #4fc3e8 !important; }
.evewiki-gold  { color: #c8a84b !important; }
.evewiki-red   { color: #cc4444 !important; }

/* Section header */
.evewiki-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 14px;
}

.evewiki-section-bar {
  width: 3px;
  height: 16px;
  background: #4fc3e8;
  flex-shrink: 0;
}

.evewiki-section-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #eef3fa;
}

/* Card grid */
.evewiki-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

/* Sys-panel — novacide style */
.evewiki-sys-panel {
  background: #0d0f14;
  border: 1px solid #233042;
  border-top: 2px solid #233042;
}

.evewiki-panel-cyan  { border-top-color: #4fc3e8; }
.evewiki-panel-gold  { border-top-color: #c8a84b; }
.evewiki-panel-red   { border-top-color: #cc4444; }
.evewiki-panel-green { border-top-color: #3acc7a; }
.evewiki-panel-full  { grid-column: 1 / -1; }

.evewiki-panel-head {
  padding: 9px 14px 8px;
  border-bottom: 1px solid #1a2230;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0c10;
}

.evewiki-panel-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: #4e5f72;
}

.evewiki-label-cyan  { color: #4fc3e8; }
.evewiki-label-gold  { color: #c8a84b; }
.evewiki-label-red   { color: #cc4444; }
.evewiki-label-green { color: #3acc7a; }

.evewiki-panel-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #4e5f72;
  background: #131720;
  border: 1px solid #1a2230;
  padding: 1px 6px;
}

.evewiki-panel-body { padding: 14px; }

.evewiki-panel-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #eef3fa;
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.evewiki-panel-title a { color: #eef3fa !important; text-decoration: none !important; }
.evewiki-panel-title a:hover { color: #4fc3e8 !important; }

.evewiki-panel-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: #93a4b5;
  line-height: 1.5;
  margin-bottom: 14px;
}

.evewiki-panel-links { display: flex; flex-direction: column; gap: 4px; }

.evewiki-panel-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12.5px;
  color: #93a4b5;
}

.evewiki-panel-link a { color: #93a4b5 !important; text-decoration: none !important; }
.evewiki-panel-link a:hover { color: #4fc3e8 !important; }

.evewiki-panel-link::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  background: #233042;
}

.evewiki-dot-cyan::before  { background: #4fc3e8; }
.evewiki-dot-gold::before  { background: #c8a84b; }
.evewiki-dot-red::before   { background: #cc4444; }
.evewiki-dot-green::before { background: #3acc7a; }

/* Panel intro text */
.evewiki-panel-intro {
  padding: 10px 14px;
  border-bottom: 1px solid #1a2230;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: #93a4b5;
  line-height: 1.5;
}

/* Wormhole grid inside panel */
.evewiki-wh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evewiki-wh-col {
  padding: 14px 16px;
  border-right: 1px solid #1a2230;
}

.evewiki-wh-col:last-child { border-right: none; }

.evewiki-wh-col-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #c8a84b;
  letter-spacing: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid #3a2e12;
  margin-bottom: 10px;
}

.evewiki-wh-links { display: flex; flex-direction: column; gap: 5px; }

.evewiki-wh-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
}

.evewiki-wh-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.evewiki-wh-link-text { color: #d7e0ea !important; }
.evewiki-wh-link-text a { color: #d7e0ea !important; }
.evewiki-wh-link-text a:hover { color: #4fc3e8 !important; }

.evewiki-wh-link-sub {
  font-size: 11px;
  color: #4e5f72;
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
}

/* Status / trust signals */
.evewiki-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evewiki-status-cell {
  padding: 14px 16px;
  border-right: 1px solid #1a2230;
}

.evewiki-status-cell:last-child { border-right: none; }

.evewiki-status-indicator {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.evewiki-status-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: #93a4b5;
}

.evewiki-status-text a { color: #4fc3e8 !important; }

/* ============================================================
   SECTION 13: WAVE ACCORDION & CUSTOM COMPONENTS
   ============================================================ */
.evewiki-wave { border: 1px solid #233042; margin-bottom: 4px; }

.evewiki-wave-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #131720;
  cursor: pointer;
  user-select: none;
  transition: background .12s;
}

.evewiki-wave-header:hover { background: #1c2230; }
.evewiki-wave.is-open .evewiki-wave-header { background: #0f1218; border-bottom: 1px solid #233042; }

.evewiki-wave-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4fc3e8;
  background: rgba(79,195,232,.08);
  border: 1px solid #153d50;
  padding: 2px 8px;
}

.evewiki-wave-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #d7e0ea;
  flex: 1;
}

.evewiki-wave-trigger-label {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border: 1px solid #3a1a1a;
  color: #cc4444;
  background: rgba(204,68,68,.06);
}

.evewiki-wave-chevron { color: #4e5f72; font-size: 10px; transition: transform .15s; }
.evewiki-wave.is-open .evewiki-wave-chevron { transform: rotate(180deg); }
.evewiki-wave-body { display: none; }
.evewiki-wave.is-open .evewiki-wave-body { display: block; }

/* Tags */
.evewiki-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid #233042;
  color: #4e5f72;
}

.evewiki-tag--cyan  { border-color: #153d50; color: #4fc3e8; background: rgba(79,195,232,.06); }
.evewiki-tag--gold  { border-color: #3a2e12; color: #c8a84b; background: rgba(200,168,75,.06); }
.evewiki-tag--red   { border-color: #3a1a1a; color: #cc4444; background: rgba(204,68,68,.06); }
.evewiki-tag--green { border-color: #1a3a28; color: #3acc7a; background: rgba(58,204,122,.06); }

/* Notice boxes */
.evewiki-notice {
  border-left: 3px solid #4fc3e8;
  background: rgba(79,195,232,.04);
  padding: 10px 14px;
  margin: 12px 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: #d7e0ea;
}

.evewiki-notice--warn   { border-left-color: #c8a84b; background: rgba(200,168,75,.04); }
.evewiki-notice--danger { border-left-color: #cc4444; background: rgba(204,68,68,.04); }

.evewiki-notice-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  color: #4fc3e8;
  opacity: .8;
}

.evewiki-notice--warn .evewiki-notice-label   { color: #c8a84b; }
.evewiki-notice--danger .evewiki-notice-label { color: #cc4444; }

/* WH dots */
.evewiki-wh-dot--c1 { background: #4fc3e8; }
.evewiki-wh-dot--c2 { background: #5dc8a0; }
.evewiki-wh-dot--c3 { background: #a0c850; }
.evewiki-wh-dot--c4 { background: #c8a84b; }
.evewiki-wh-dot--c5 { background: #e08040; }
.evewiki-wh-dot--c6 { background: #cc4444; }

/* ============================================================
   SECTION 14: RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .evewiki-card-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .evewiki-wh-grid    { grid-template-columns: 1fr; }
  .evewiki-status-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .evewiki-wh-col     { border-right: none; border-bottom: 1px solid #1a2230; }
  .evewiki-wh-col:last-child { border-bottom: none; }
  .infobox, .mw-parser-output .infobox { float: none !important; max-width: 100% !important; margin: 0 0 16px !important; }
}

@media (max-width: 600px) {
  .evewiki-card-grid   { grid-template-columns: 1fr; }
  .evewiki-status-grid { grid-template-columns: 1fr; }
  .evewiki-hero-title  { font-size: 36px; }
  .evewiki-stat-bar    { flex-wrap: wrap; }
  .evewiki-stat-bar-cell { flex: 1 1 40%; }
}