Pivot.css: Difference between revisions
From Dune Awakening DB
mNo edit summary |
mNo edit summary Tag: Reverted |
||
| Line 18: | Line 18: | ||
/* Text Colors */ | /* Text Colors */ | ||
--text-primary: #E0E0E0; | --text-primary: #E0E0E0; /* subtle white */ | ||
--text-secondary: #BBBBBB; | --text-secondary: #BBBBBB; | ||
--text-title: #E2D3AE; | --text-title: #E2D3AE; | ||
| Line 207: | Line 207: | ||
background-size: cover; | background-size: cover; | ||
background-attachment: fixed; | background-attachment: fixed; | ||
/* | /* Normal body text is now subtle white */ | ||
color: var(-- | color: var(--text-primary); | ||
font-family: var(--font-stack); | font-family: var(--font-stack); | ||
line-height: 1.35; | line-height: 1.35; | ||
| Line 217: | Line 217: | ||
# 3. MAIN CONTAINERS & TRANSPARENCY | # 3. MAIN CONTAINERS & TRANSPARENCY | ||
--------------------------------------------------------------*/ | --------------------------------------------------------------*/ | ||
.skin-pivot #content, | .skin-pivot #content, | ||
.skin-pivot .mw-body, | .skin-pivot .mw-body, | ||
| Line 228: | Line 227: | ||
} | } | ||
.skin-pivot .off-canvas-wrap, | .skin-pivot .off-canvas-wrap, | ||
.skin-pivot .docs-wrap, | .skin-pivot .docs-wrap, | ||
| Line 245: | Line 243: | ||
} | } | ||
/* Footer | /* Footer and related elements use subtle white */ | ||
.skin-pivot footer, | .skin-pivot footer, | ||
.skin-pivot .footer, | .skin-pivot .footer, | ||
| Line 258: | Line 256: | ||
background: transparent !important; | background: transparent !important; | ||
border: none !important; | border: none !important; | ||
color: var(--text-primary) !important; | |||
color: var(-- | |||
} | } | ||
| Line 273: | Line 262: | ||
# 4. NAVIGATION & HEADINGS - GAME-STYLED | # 4. NAVIGATION & HEADINGS - GAME-STYLED | ||
--------------------------------------------------------------*/ | --------------------------------------------------------------*/ | ||
/* | /* Navigation links (wiki links) remain gold */ | ||
.skin-pivot .navbar { | .skin-pivot .navbar { | ||
background: var(--dune-darker) !important; | background: var(--dune-darker) !important; | ||
| Line 317: | Line 306: | ||
.skin-pivot .navbar-nav > li > a { | .skin-pivot .navbar-nav > li > a { | ||
color: var(--dune-gold) !important; | color: var(--dune-gold) !important; | ||
font-weight: bold !important; | font-weight: bold !important; | ||
| Line 349: | Line 337: | ||
} | } | ||
/* Sidebar & Panels - | /* Sidebar & Panels: non-header text now uses subtle white */ | ||
.skin-pivot #nav, | .skin-pivot #nav, | ||
.skin-pivot #nav-wrapper, | .skin-pivot #nav-wrapper, | ||
| Line 355: | Line 343: | ||
background: var(--dune-dark-transparent); | background: var(--dune-dark-transparent); | ||
border: var(--border-thin) solid var(--dune-gold); | border: var(--border-thin) solid var(--dune-gold); | ||
color: var(--text-primary); | |||
color: var(-- | |||
border-radius: var(--border-radius-sm); | border-radius: var(--border-radius-sm); | ||
position: relative; | position: relative; | ||
| Line 388: | Line 375: | ||
} | } | ||
/* List items | /* List items now use subtle white */ | ||
.skin-pivot .list-group-item { | .skin-pivot .list-group-item { | ||
background: transparent; | background: transparent; | ||
border: none; | border: none; | ||
border-bottom: var(--border-thin) solid var(--gold-border-subtle); | border-bottom: var(--border-thin) solid var(--gold-border-subtle); | ||
color: var(--text-primary); | |||
color: var(-- | |||
padding: 8px 10px; | padding: 8px 10px; | ||
transition: var(--transition-standard); | transition: var(--transition-standard); | ||
| Line 407: | Line 393: | ||
} | } | ||
/* Panel Headings | /* Panel Headings: headers remain gold */ | ||
.skin-pivot #nav h3, | .skin-pivot #nav h3, | ||
.skin-pivot #nav-wrapper h3, | .skin-pivot #nav-wrapper h3, | ||
| Line 413: | Line 399: | ||
background-color: rgba(200, 161, 101, 0.15); | background-color: rgba(200, 161, 101, 0.15); | ||
border-bottom: var(--border-thin) solid var(--dune-gold); | border-bottom: var(--border-thin) solid var(--dune-gold); | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
margin: 0; | margin: 0; | ||
| Line 440: | Line 425: | ||
} | } | ||
/* Main content headings */ | /* Main content headings (headers) remain gold */ | ||
.skin-pivot h1, | .skin-pivot h1, | ||
.skin-pivot h2, | .skin-pivot h2, | ||
| Line 447: | Line 432: | ||
.skin-pivot h5, | .skin-pivot h5, | ||
.skin-pivot h6 { | .skin-pivot h6 { | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
font-weight: bold; | font-weight: bold; | ||
| Line 475: | Line 459: | ||
} | } | ||
/* | /* First heading remains gold */ | ||
.skin-pivot h1.firstHeading, | .skin-pivot h1.firstHeading, | ||
.skin-pivot .page-header h1 { | .skin-pivot .page-header h1 { | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
font-size: var(--font-size-xxl); | font-size: var(--font-size-xxl); | ||
| Line 501: | Line 484: | ||
} | } | ||
/* Links | /* Links: default wiki links are gold */ | ||
.skin-pivot a { | .skin-pivot a { | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
| Line 513: | Line 496: | ||
color: var(--dune-gold-hover); | color: var(--dune-gold-hover); | ||
text-decoration: none; | text-decoration: none; | ||
text-shadow: 0 0 5px | text-shadow: 0 0 5px var(--dune-gold-glow); | ||
} | } | ||
/* Uncreated pages now display in red */ | |||
.skin-pivot a.new, | .skin-pivot a.new, | ||
.skin-pivot a.new:visited { | .skin-pivot a.new:visited { | ||
color: var(-- | color: var(--text-error) !important; | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
| Line 524: | Line 508: | ||
.skin-pivot a.new:hover { | .skin-pivot a.new:hover { | ||
color: #DD0000 !important; | color: #DD0000 !important; | ||
} | } | ||
| Line 557: | Line 516: | ||
background: var(--dune-darker); | background: var(--dune-darker); | ||
border-bottom: var(--border-thin) solid var(--dune-gold); | border-bottom: var(--border-thin) solid var(--dune-gold); | ||
color: var(--text-primary); | |||
color: var(-- | |||
padding: 0; | padding: 0; | ||
height: var(--nav-height); | height: var(--nav-height); | ||
| Line 584: | Line 542: | ||
.skin-pivot nav.tab-bar.hide-for-print .title a { | .skin-pivot nav.tab-bar.hide-for-print .title a { | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
font-size: var(--font-size-lg); | font-size: var(--font-size-lg); | ||
| Line 593: | Line 550: | ||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
border-right: var(--border-thin) solid | border-right: var(--border-thin) solid var(--gold-border-subtle); | ||
} | } | ||
| Line 600: | Line 557: | ||
.skin-pivot #right-nav-aside { | .skin-pivot #right-nav-aside { | ||
background-color: transparent; | background-color: transparent; | ||
color: var(--text-primary); | |||
color: var(-- | |||
} | } | ||
| Line 619: | Line 575: | ||
.skin-pivot li.has-form input[type="search"] { | .skin-pivot li.has-form input[type="search"] { | ||
background: rgba(12, 10, 20, 0.6); | background: rgba(12, 10, 20, 0.6); | ||
color: var(--text-primary); | |||
color: var(-- | |||
border: var(--border-thin) solid var(--dune-gold); | border: var(--border-thin) solid var(--dune-gold); | ||
padding: 5px 10px; | padding: 5px 10px; | ||
| Line 648: | Line 603: | ||
margin: 0; | margin: 0; | ||
display: block; | display: block; | ||
border-bottom: var(--border-thin) solid | border-bottom: var(--border-thin) solid var(--gold-border-subtle); | ||
letter-spacing: 0.5px; | letter-spacing: 0.5px; | ||
font-size: var(--font-size-sm); | font-size: var(--font-size-sm); | ||
| Line 667: | Line 622: | ||
.skin-pivot li.mw-list-item a { | .skin-pivot li.mw-list-item a { | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
text-decoration: none; | text-decoration: none; | ||
| Line 751: | Line 705: | ||
table-layout: fixed; | table-layout: fixed; | ||
border-collapse: collapse; | border-collapse: collapse; | ||
border: var(--border-thin) solid var(--dune-gold); | border: var(--border-thin) solid var(--dune-gold); | ||
background: linear-gradient(135deg, #111010, #1a1917); | background: linear-gradient(135deg, #111010, #1a1917); | ||
| Line 767: | Line 719: | ||
0 calc(100% - 10px) | 0 calc(100% - 10px) | ||
) !important; | ) !important; | ||
} | } | ||
| Line 796: | Line 734: | ||
font-weight: 300; | font-weight: 300; | ||
text-align: right; | text-align: right; | ||
color: var(--text-primary); | |||
border-bottom: 1px solid var(--gold-border-subtle); | |||
background: transparent; | |||
padding: 0.75rem 0.5rem; | |||
font-size: 0.95rem; | |||
vertical-align: middle; | |||
box-sizing: border-box; | |||
word-wrap: break-word; | |||
overflow-wrap: break-word; | |||
} | } | ||
/* STANDARD MULTI-ROW TABLE */ | |||
table.infobox-dune-standard-table { | |||
width: 100%; | |||
/* STANDARD MULTI-ROW TABLE */ | |||
table.infobox-dune-standard-table { | |||
width: 100%; | |||
table-layout: fixed; | table-layout: fixed; | ||
border-collapse: collapse; | border-collapse: collapse; | ||
| Line 846: | Line 764: | ||
0 calc(100% - 10px) | 0 calc(100% - 10px) | ||
) !important; | ) !important; | ||
} | } | ||
| Line 869: | Line 774: | ||
border-bottom: 1px solid rgba(200, 161, 101, 0.3); | border-bottom: 1px solid rgba(200, 161, 101, 0.3); | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
padding: 0.75rem 0.5rem; | |||
font-size: 0.95rem; | |||
vertical-align: middle; | |||
box-sizing: border-box; | |||
} | } | ||
table.infobox-dune-standard-table tbody td { | table.infobox-dune-standard-table tbody td { | ||
font-weight: 300; | font-weight: 300; | ||
color: var(--text-primary); | |||
padding: 0.75rem 0.5rem; | |||
font-size: 0.95rem; | |||
vertical-align: middle; | vertical-align: middle; | ||
box-sizing: border-box; | |||
word-wrap: break-word; | |||
overflow-wrap: break-word; | |||
} | } | ||
table.infobox-dune-standard-table tbody td:not(:last-child) { | |||
table.infobox-dune-standard-table | |||
border-bottom: 1px solid var(--gold-border-subtle); | border-bottom: 1px solid var(--gold-border-subtle); | ||
} | } | ||
| Line 979: | Line 801: | ||
position: relative; | position: relative; | ||
background-color: rgba(0, 0, 2, 0.7) !important; | background-color: rgba(0, 0, 2, 0.7) !important; | ||
/* | /* Card container text is now subtle white */ | ||
color: var(-- | color: var(--text-primary); | ||
width: auto !important; | width: auto !important; | ||
max-width: 100% !important; | max-width: 100% !important; | ||
| Line 1,005: | Line 827: | ||
} | } | ||
/* Card header remains gold */ | |||
.skin-pivot .dune-card-title { | .skin-pivot .dune-card-title { | ||
margin: 0; | margin: 0; | ||
font-size: var(--font-size-xl); | font-size: var(--font-size-xl); | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
text-transform: uppercase; | text-transform: uppercase; | ||
| Line 1,075: | Line 868: | ||
margin-bottom: var(--spacing-md); | margin-bottom: var(--spacing-md); | ||
display: block !important; | display: block !important; | ||
/* | /* Card description now uses subtle white */ | ||
color: var(-- | color: var(--text-primary) !important; | ||
} | } | ||
/*-------------------------------------------------------------- | /*-------------------------------------------------------------- | ||
# 10. LOCKED | # 10. LOCKED COMPONENT | ||
--------------------------------------------------------------*/ | --------------------------------------------------------------*/ | ||
.skin-pivot .dune-card-locked { | .skin-pivot .dune-card-locked { | ||
| Line 1,138: | Line 911: | ||
.skin-pivot .dune-card-locked-value { | .skin-pivot .dune-card-locked-value { | ||
/* | /* Locked value text is now subtle white */ | ||
color: var(-- | color: var(--text-primary) !important; | ||
font-weight: normal !important; | font-weight: normal !important; | ||
padding: var(--spacing-xs) var(--spacing-sm) !important; | padding: var(--spacing-xs) var(--spacing-sm) !important; | ||
| Line 1,172: | Line 945: | ||
/*-------------------------------------------------------------- | /*-------------------------------------------------------------- | ||
# 11. GAME PANEL COMPONENT | # 11. GAME PANEL COMPONENT | ||
--------------------------------------------------------------*/ | --------------------------------------------------------------*/ | ||
.skin-pivot .game-panel { | .skin-pivot .game-panel { | ||
| Line 1,202: | Line 975: | ||
text-transform: uppercase; | text-transform: uppercase; | ||
font-weight: bold; | font-weight: bold; | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
letter-spacing: 0.5px; | letter-spacing: 0.5px; | ||
| Line 1,235: | Line 1,007: | ||
.skin-pivot .game-panel-content { | .skin-pivot .game-panel-content { | ||
padding: 8px 12px; | padding: 8px 12px; | ||
/* | /* Game panel content text now uses subtle white */ | ||
color: var(-- | color: var(--text-primary); | ||
font-size: 0.9em; | font-size: 0.9em; | ||
overflow: visible !important; | overflow: visible !important; | ||
| Line 1,244: | Line 1,016: | ||
# 12. UI ELEMENTS - GAME ACCURATE | # 12. UI ELEMENTS - GAME ACCURATE | ||
--------------------------------------------------------------*/ | --------------------------------------------------------------*/ | ||
/* Resource Item | /* Resource Item */ | ||
.skin-pivot .resource { | .skin-pivot .resource { | ||
display: inline-flex !important; | display: inline-flex !important; | ||
| Line 1,253: | Line 1,025: | ||
border-radius: var(--border-radius-sm); | border-radius: var(--border-radius-sm); | ||
margin: 0 5px 5px 0 !important; | margin: 0 5px 5px 0 !important; | ||
color: var(--text-primary); | |||
color: var(-- | |||
position: relative; | position: relative; | ||
} | } | ||
| Line 1,287: | Line 1,058: | ||
} | } | ||
/* Buttons | /* Buttons */ | ||
.skin-pivot .game-button { | .skin-pivot .game-button { | ||
background: linear-gradient(to bottom, var(--dune-gold), var(--dune-gold-dark)); | background: linear-gradient(to bottom, var(--dune-gold), var(--dune-gold-dark)); | ||
border: var(--border-thin) solid var(--dune-gold); | border: var(--border-thin) solid var(--dune-gold); | ||
color: #E2D3AE; | color: #E2D3AE; | ||
padding: 8px 12px; | padding: 8px 12px; | ||
| Line 1,314: | Line 1,084: | ||
} | } | ||
/* Progress Bar | /* Progress Bar */ | ||
.skin-pivot .progress-bar { | .skin-pivot .progress-bar { | ||
height: 10px; | height: 10px; | ||
| Line 1,332: | Line 1,102: | ||
} | } | ||
/* Tooltip | /* Tooltip */ | ||
.skin-pivot .tooltip { | .skin-pivot .tooltip { | ||
position: relative; | position: relative; | ||
| Line 1,343: | Line 1,113: | ||
width: 200px; | width: 200px; | ||
background-color: #1F2A37; | background-color: #1F2A37; | ||
color: var(--text-primary); | |||
color: var(-- | |||
text-align: center; | text-align: center; | ||
border: var(--border-thin) solid var(--dune-gold); | border: var(--border-thin) solid var(--dune-gold); | ||
| Line 1,387: | Line 1,156: | ||
} | } | ||
/* Animation | /* Loading Animation */ | ||
@keyframes pulsate { | @keyframes pulsate { | ||
0%, 100% { opacity: 0.6; } | 0%, 100% { opacity: 0.6; } | ||
| Line 1,397: | Line 1,166: | ||
} | } | ||
/* Breadcrumbs | /* Breadcrumbs */ | ||
.skin-pivot .breadcrumbs-container, | .skin-pivot .breadcrumbs-container, | ||
.skin-pivot .breadcrumb-trail { | .skin-pivot .breadcrumb-trail { | ||
| Line 1,410: | Line 1,179: | ||
align-items: center; | align-items: center; | ||
padding: 5px 0; | padding: 5px 0; | ||
color: var(--text-primary); | |||
color: var(-- | |||
font-size: var(--font-size-sm); | font-size: var(--font-size-sm); | ||
} | } | ||
.skin-pivot .breadcrumb-trail a { | .skin-pivot .breadcrumb-trail a { | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
transition: var(--transition-standard); | transition: var(--transition-standard); | ||
| Line 1,428: | Line 1,195: | ||
.skin-pivot .breadcrumb-trail .separator { | .skin-pivot .breadcrumb-trail .separator { | ||
margin: 0 8px; | margin: 0 8px; | ||
color: var(-- | color: var(--text-primary); | ||
} | } | ||
| Line 1,436: | Line 1,203: | ||
padding: 5px 10px; | padding: 5px 10px; | ||
margin-bottom: 10px; | margin-bottom: 10px; | ||
color: var(--text-primary); | |||
color: var(-- | |||
font-size: 0.9em; | font-size: 0.9em; | ||
border-radius: var(--border-radius-sm); | border-radius: var(--border-radius-sm); | ||
} | } | ||
/* | /* Miscellaneous */ | ||
.skin-pivot .fromdb { | .skin-pivot .fromdb { | ||
color: var(-- | color: var(--text-secondary); | ||
font-size: 0.85em; | font-size: 0.85em; | ||
margin: -5px 0 15px 0; | margin: -5px 0 15px 0; | ||
| Line 1,475: | Line 1,241: | ||
.skin-pivot .related-buildings p { | .skin-pivot .related-buildings p { | ||
margin: 5px 0; | margin: 5px 0; | ||
color: var(--text-primary); | |||
color: var(-- | |||
font-size: 0.9em; | font-size: 0.9em; | ||
} | } | ||
| Line 1,493: | Line 1,258: | ||
/*-------------------------------------------------------------- | /*-------------------------------------------------------------- | ||
# 13. INVENTORY UI STYLING | # 13. INVENTORY UI STYLING | ||
--------------------------------------------------------------*/ | --------------------------------------------------------------*/ | ||
.skin-pivot .inventory-grid { | .skin-pivot .inventory-grid { | ||
display: grid; | display: grid; | ||
| Line 1,516: | Line 1,280: | ||
} | } | ||
.skin-pivot .inventory-slot { | .skin-pivot .inventory-slot { | ||
background-color: rgba(22, 22, 24, 0.8); | background-color: rgba(22, 22, 24, 0.8); | ||
| Line 1,527: | Line 1,290: | ||
transition: var(--transition-standard); | transition: var(--transition-standard); | ||
position: relative; | position: relative; | ||
color: var(--text-primary); | |||
} | } | ||
.skin-pivot .inventory-slot.empty { | .skin-pivot .inventory-slot.empty { | ||
background-image: | background-image: | ||
| Line 1,535: | Line 1,298: | ||
} | } | ||
.skin-pivot .inventory-slot:before, | .skin-pivot .inventory-slot:before, | ||
.skin-pivot .inventory-slot:after { | .skin-pivot .inventory-slot:after { | ||
| Line 1,563: | Line 1,325: | ||
} | } | ||
.skin-pivot .inventory-slot img { | .skin-pivot .inventory-slot img { | ||
max-width: 85%; | max-width: 85%; | ||
| Line 1,569: | Line 1,330: | ||
} | } | ||
.skin-pivot .dune-selected { | .skin-pivot .dune-selected { | ||
border: var(--border-thin) solid var(--dune-gold) !important; | border: var(--border-thin) solid var(--dune-gold) !important; | ||
| Line 1,576: | Line 1,336: | ||
} | } | ||
.skin-pivot .item-count { | .skin-pivot .item-count { | ||
position: absolute; | position: absolute; | ||
| Line 1,582: | Line 1,341: | ||
right: 2px; | right: 2px; | ||
background-color: rgba(12, 10, 20, 0.8); | background-color: rgba(12, 10, 20, 0.8); | ||
color: var(--text-primary); | |||
color: var(-- | |||
font-size: 10px; | font-size: 10px; | ||
padding: 1px 3px; | padding: 1px 3px; | ||
| Line 1,592: | Line 1,350: | ||
} | } | ||
.skin-pivot .item-quality { | .skin-pivot .item-quality { | ||
position: absolute; | position: absolute; | ||
| Line 1,621: | Line 1,378: | ||
} | } | ||
/* Section header | /* Section header remains gold */ | ||
.skin-pivot .section-header { | .skin-pivot .section-header { | ||
background-color: rgba(12, 10, 20, 0.8); | background-color: rgba(12, 10, 20, 0.8); | ||
border: var(--border-thin) solid var(--dune-gold); | border: var(--border-thin) solid var(--dune-gold); | ||
color: var(--dune-gold); | color: var(--dune-gold); | ||
padding: 5px 10px; | padding: 5px 10px; | ||
| Line 1,661: | Line 1,417: | ||
} | } | ||
/* Experience bar | /* Experience bar */ | ||
.skin-pivot .xp-bar { | .skin-pivot .xp-bar { | ||
height: 6px; | height: 6px; | ||
| Line 1,683: | Line 1,439: | ||
background-color: rgba(12, 10, 20, 0.8); | background-color: rgba(12, 10, 20, 0.8); | ||
border: var(--border-thin) solid var(--dune-gold); | border: var(--border-thin) solid var(--dune-gold); | ||
color: var(--text-primary); | |||
color: var(-- | |||
padding: 2px 6px; | padding: 2px 6px; | ||
font-size: var(--font-size-xs); | font-size: var(--font-size-xs); | ||
letter-spacing: 0.5px; | letter-spacing: 0.5px; | ||
} | } | ||
Revision as of 15:09, 6 April 2025
/**********************************************************
* Enhanced Dune-Themed Pivot Skin (Game-Accurate)
**********************************************************/
/*--------------------------------------------------------------
# 1. CSS VARIABLES - ENHANCED SYSTEM
--------------------------------------------------------------*/
:root {
/* Brand Colors - Core Palette */
--dune-black: rgba(14, 12, 21, 0.6);
--dune-panel-bg-dark: rgba(0, 0, 2, 0.7);
--dune-panel-bg-light: rgba(22, 22, 24, 0.4);
--dune-dark: rgba(26, 23, 36, 0.7);
--dune-darker: rgba(12, 10, 20, 0.8);
--dune-gold: #C8A165;
--dune-gold-hover: #E3BB7A;
--dune-gold-dark: #A07B40;
/* Text Colors */
--text-primary: #E0E0E0; /* subtle white */
--text-secondary: #BBBBBB;
--text-title: #E2D3AE;
--text-inactive: #636363;
--text-highlight: #FFFFFF;
--text-link: var(--dune-gold);
--text-link-hover: var(--dune-gold-hover);
--text-error: #FF6B6B;
--text-success: #4CAF50;
--text-warning: #FFD700;
/* Faction Colors */
--faction-atreides: #3D6B8A;
--faction-harkonnen: #A3413D;
--faction-fremen: #538579;
--faction-emperor: #8A7045;
--faction-spacing-guild: #4A4E69;
--faction-bene-gesserit: #6B4E71;
/* Status Colors */
--status-complete: #4CAF50;
--status-incomplete: #FF6B6B;
--status-locked: #636363;
--status-available: #3D6B8A;
--status-craftable: #538579;
--status-rare: #9c43c8;
--status-epic: #2970c3;
--status-legendary: #cf7a30;
/* Opacity & Transparency */
--opacity-high: 0.9;
--opacity-medium: 0.7;
--opacity-low: 0.5;
--opacity-subtle: 0.3;
--opacity-hint: 0.1;
/* Color with Transparency */
--dune-dark-transparent: rgba(14, 12, 21, 0.6);
--dune-darker-transparent: rgba(12, 10, 20, 0.5);
--dune-gold-transparent: rgba(200, 161, 101, 0.4);
--dune-gold-glow: rgba(200, 161, 101, 0.2);
--dune-gold-intense-glow: rgba(227, 187, 122, 0.4);
--panel-bg-transparent: rgba(0, 0, 2, 0.7);
--black-transparent: rgba(0, 0, 0, 0.7);
--gold-border-subtle: rgba(200, 161, 101, 0.3);
--gold-border-very-subtle: rgba(200, 161, 101, 0.2);
/* Spacing & Layout */
--spacing-xxs: 2px;
--spacing-xs: 4px;
--spacing-sm: 8px;
--spacing-md: 12px;
--spacing-lg: 16px;
--spacing-xl: 20px;
--spacing-xxl: 24px;
--spacing-xxxl: 32px;
/* Content Width */
--content-width-xs: 480px;
--content-width-sm: 768px;
--content-width-md: 1024px;
--content-width-lg: 1280px;
--content-width-xl: 1440px;
/* Borders */
--border-thin: 1px;
--border-medium: 2px;
--border-thick: 3px;
--border-radius-xs: 1px;
--border-radius-sm: 2px;
--border-radius-md: 3px;
--border-radius-lg: 4px;
--border-radius-xl: 6px;
--border-radius-circle: 50%;
--border-angle: 30deg;
/* Shadows */
--shadow-subtle: 0 0 8px rgba(0, 0, 0, 0.3);
--shadow-medium: 0 0 10px rgba(0, 0, 0, 0.5);
--shadow-strong: 0 0 15px rgba(0, 0, 0, 0.7);
--shadow-inset-subtle: inset 0 0 5px rgba(0, 0, 0, 0.3);
--shadow-inset-medium: inset 0 0 8px rgba(0, 0, 0, 0.5);
--shadow-gold: 0 0 8px rgba(200, 161, 101, 0.3);
--shadow-gold-intense: 0 0 12px rgba(227, 187, 122, 0.5);
--shadow-error: 0 0 8px rgba(255, 107, 107, 0.5);
--shadow-success: 0 0 8px rgba(76, 175, 80, 0.5);
/* Typography */
--font-stack: "Orbitron", "Segoe UI", sans-serif;
--font-stack-secondary: "Montserrat", "Arial", sans-serif;
--font-stack-mono: "Courier New", monospace;
--font-weight-light: 300;
--font-weight-regular: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;
--font-size-xs: 0.75rem;
--font-size-sm: 0.85rem;
--font-size-md: 1rem;
--font-size-lg: 1.2rem;
--font-size-xl: 1.4rem;
--font-size-xxl: 1.6rem;
--font-size-xxxl: 2rem;
--line-height-tight: 1.2;
--line-height-normal: 1.35;
--line-height-relaxed: 1.5;
--line-height-loose: 1.7;
--letter-spacing-tight: -0.05em;
--letter-spacing-normal: 0em;
--letter-spacing-wide: 0.05em;
--letter-spacing-wider: 0.1em;
--letter-spacing-widest: 0.15em;
/* Z-index layers */
--z-index-background: -1;
--z-index-default: 1;
--z-index-tooltip: 100;
--z-index-dropdown: 200;
--z-index-modal: 300;
--z-index-overlay: 400;
/* Animation & Transitions */
--transition-fast: all 0.1s ease;
--transition-standard: all 0.2s ease;
--transition-slow: all 0.3s ease;
--animation-speed-fast: 0.3s;
--animation-speed-normal: 0.5s;
--animation-speed-slow: 0.8s;
/* Component dimensions */
--button-height-sm: 24px;
--button-height-md: 32px;
--button-height-lg: 40px;
--input-height-sm: 24px;
--input-height-md: 32px;
--input-height-lg: 40px;
--nav-height: 40px;
--card-padding: var(--spacing-lg);
--panel-padding: var(--spacing-md);
/* Diagonal cuts - for clip-path */
--diagonal-cut-small: 5px;
--diagonal-cut-medium: 10px;
--diagonal-cut-large: 15px;
/* Polygon style - for clip-path */
--clip-path-hexagonal-header: polygon(
20px 0,
calc(100% - 20px) 0,
100% 20px,
calc(100% - 20px) 40px,
20px 40px,
0 20px
);
/* Gradients */
--gradient-gold: linear-gradient(to bottom, var(--dune-gold), var(--dune-gold-dark));
--gradient-gold-hover: linear-gradient(to bottom, var(--dune-gold-hover), var(--dune-gold));
--gradient-dark: linear-gradient(135deg, #111010, #1a1917);
--gradient-gold-horizontal: linear-gradient(to right, var(--dune-gold), var(--dune-gold-hover));
/* Aspect ratios */
--aspect-ratio-square: 1 / 1;
--aspect-ratio-landscape: 16 / 9;
--aspect-ratio-portrait: 9 / 16;
--aspect-ratio-ultrawide: 21 / 9;
/* Images & Icons */
--icon-size-xs: 12px;
--icon-size-sm: 16px;
--icon-size-md: 24px;
--icon-size-lg: 32px;
--icon-size-xl: 48px;
}
/*--------------------------------------------------------------
# 2. GLOBAL RESET & BODY
--------------------------------------------------------------*/
html, body {
margin: 0;
padding: 0;
height: 100%;
min-height: 100%;
}
body.skin-pivot {
background: url('https://dunedb.com/images/5/57/DuneDB_Background.jpg') no-repeat center center fixed;
background-size: cover;
background-attachment: fixed;
/* Normal body text is now subtle white */
color: var(--text-primary);
font-family: var(--font-stack);
line-height: 1.35;
font-size: 15px;
}
/*--------------------------------------------------------------
# 3. MAIN CONTAINERS & TRANSPARENCY
--------------------------------------------------------------*/
.skin-pivot #content,
.skin-pivot .mw-body,
.skin-pivot .mw-content-ltr,
.skin-pivot .mw-content-rtl {
background: transparent;
padding: var(--spacing-lg);
border-radius: var(--border-radius-lg);
margin: 0;
}
.skin-pivot .off-canvas-wrap,
.skin-pivot .docs-wrap,
.skin-pivot .inner-wrap,
.skin-pivot #page-base,
.skin-pivot .page-base,
.skin-pivot #main-section.main-section,
.skin-pivot #page-content,
.skin-pivot .row,
.skin-pivot .columns,
.skin-pivot #sidebar.large-2.medium-3.columns.hide-for-small.hide-for-print,
.skin-pivot .exit-off-canvas {
background: transparent !important;
border: none !important;
overflow: visible !important;
}
/* Footer and related elements use subtle white */
.skin-pivot footer,
.skin-pivot .footer,
.skin-pivot #footer,
.skin-pivot .mw-footer,
.skin-pivot #mw-footer-container,
.skin-pivot #mw-footer,
.skin-pivot #catlinks,
.skin-pivot .catlinks,
.skin-pivot .printfooter,
.skin-pivot #mw-data-after-content {
background: transparent !important;
border: none !important;
color: var(--text-primary) !important;
}
/*--------------------------------------------------------------
# 4. NAVIGATION & HEADINGS - GAME-STYLED
--------------------------------------------------------------*/
/* Navigation links (wiki links) remain gold */
.skin-pivot .navbar {
background: var(--dune-darker) !important;
border: none !important;
height: var(--nav-height);
position: relative;
display: flex;
align-items: center;
justify-content: center;
border-bottom: var(--border-thin) solid var(--dune-gold) !important;
}
.skin-pivot .navbar:before,
.skin-pivot .navbar:after {
content: '';
position: absolute;
height: var(--border-thin);
background-color: var(--dune-gold);
bottom: -1px;
width: 20px;
}
.skin-pivot .navbar:before {
left: 20px;
transform: skewX(var(--border-angle));
}
.skin-pivot .navbar:after {
right: 20px;
transform: skewX(calc(-1 * var(--border-angle)));
}
.skin-pivot .navbar-nav {
display: flex;
justify-content: center;
width: 100%;
}
.skin-pivot .navbar-nav > li {
position: relative;
display: inline-block;
}
.skin-pivot .navbar-nav > li > a {
color: var(--dune-gold) !important;
font-weight: bold !important;
text-transform: uppercase;
letter-spacing: 1px;
padding: 10px 15px;
margin: 0 5px;
position: relative;
text-align: center;
}
.skin-pivot .navbar-nav > li.active > a {
color: var(--dune-gold-hover) !important;
box-shadow: 0 -2px 0 var(--dune-gold-hover) inset;
}
.skin-pivot .navbar-nav > li > a:hover {
color: var(--dune-gold-hover) !important;
text-shadow: 0 0 5px var(--dune-gold-glow);
}
.skin-pivot .navbar-nav > li.active > a:after,
.skin-pivot .navbar-nav > li > a:hover:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background-color: var(--dune-gold);
}
/* Sidebar & Panels: non-header text now uses subtle white */
.skin-pivot #nav,
.skin-pivot #nav-wrapper,
.skin-pivot .nav-content {
background: var(--dune-dark-transparent);
border: var(--border-thin) solid var(--dune-gold);
color: var(--text-primary);
border-radius: var(--border-radius-sm);
position: relative;
}
.skin-pivot #nav:before,
.skin-pivot #nav:after,
.skin-pivot #nav-wrapper:before,
.skin-pivot #nav-wrapper:after {
content: '';
position: absolute;
width: 10px;
height: 10px;
border: var(--border-thin) solid var(--dune-gold);
}
.skin-pivot #nav:before,
.skin-pivot #nav-wrapper:before {
top: -1px;
left: -1px;
border-right: none;
border-bottom: none;
}
.skin-pivot #nav:after,
.skin-pivot #nav-wrapper:after {
bottom: -1px;
right: -1px;
border-left: none;
border-top: none;
}
/* List items now use subtle white */
.skin-pivot .list-group-item {
background: transparent;
border: none;
border-bottom: var(--border-thin) solid var(--gold-border-subtle);
color: var(--text-primary);
padding: 8px 10px;
transition: var(--transition-standard);
}
.skin-pivot .list-group-item:last-child {
border-bottom: none;
}
.skin-pivot .list-group-item:hover {
background-color: rgba(200, 161, 101, 0.1);
}
/* Panel Headings: headers remain gold */
.skin-pivot #nav h3,
.skin-pivot #nav-wrapper h3,
.skin-pivot .panel-heading {
background-color: rgba(200, 161, 101, 0.15);
border-bottom: var(--border-thin) solid var(--dune-gold);
color: var(--dune-gold);
margin: 0;
padding: 8px 12px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
font-size: var(--font-size-sm);
position: relative;
display: flex;
align-items: center;
}
.skin-pivot #nav h3:before,
.skin-pivot #nav h3:after,
.skin-pivot #nav-wrapper h3:before,
.skin-pivot #nav-wrapper h3:after,
.skin-pivot .panel-heading:before,
.skin-pivot .panel-heading:after {
content: '';
display: inline-block;
width: 6px;
height: 6px;
background-color: var(--dune-gold);
margin: 0 8px;
}
/* Main content headings (headers) remain gold */
.skin-pivot h1,
.skin-pivot h2,
.skin-pivot h3,
.skin-pivot h4,
.skin-pivot h5,
.skin-pivot h6 {
color: var(--dune-gold);
font-weight: bold;
margin-top: 1em;
margin-bottom: 0.5em;
border-bottom: none;
text-transform: uppercase;
padding-bottom: 5px;
letter-spacing: 0.5px;
}
.skin-pivot h1,
.skin-pivot h3 {
border-bottom: var(--border-thin) solid var(--dune-gold-transparent);
position: relative;
}
.skin-pivot h1:after,
.skin-pivot h3:after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 30px;
height: 3px;
background-color: var(--dune-gold);
}
/* First heading remains gold */
.skin-pivot h1.firstHeading,
.skin-pivot .page-header h1 {
color: var(--dune-gold);
font-size: var(--font-size-xxl);
font-weight: bold;
margin: 0 0 15px 0;
padding-bottom: 8px;
border-bottom: var(--border-thin) solid var(--dune-gold-transparent);
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
}
.skin-pivot h1.firstHeading:after,
.skin-pivot .page-header h1:after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 50px;
height: 3px;
background: linear-gradient(to right, var(--dune-gold), rgba(200, 161, 101, 0));
}
/* Links: default wiki links are gold */
.skin-pivot a {
color: var(--dune-gold);
text-decoration: none;
font-weight: bold;
transition: var(--transition-standard);
position: relative;
}
.skin-pivot a:hover {
color: var(--dune-gold-hover);
text-decoration: none;
text-shadow: 0 0 5px var(--dune-gold-glow);
}
/* Uncreated pages now display in red */
.skin-pivot a.new,
.skin-pivot a.new:visited {
color: var(--text-error) !important;
text-decoration: none;
}
.skin-pivot a.new:hover {
color: #DD0000 !important;
}
/*--------------------------------------------------------------
# 5. PIVOT NAV OVERRIDES - GAME STYLE
--------------------------------------------------------------*/
.skin-pivot nav.tab-bar.hide-for-print {
background: var(--dune-darker);
border-bottom: var(--border-thin) solid var(--dune-gold);
color: var(--text-primary);
padding: 0;
height: var(--nav-height);
display: flex;
align-items: center;
}
.skin-pivot nav.tab-bar.hide-for-print a {
color: var(--dune-gold);
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.skin-pivot nav.tab-bar.hide-for-print a:hover {
color: var(--dune-gold-hover);
text-decoration: none;
}
.skin-pivot nav.tab-bar.hide-for-print .title {
display: flex;
align-items: center;
height: 100%;
}
.skin-pivot nav.tab-bar.hide-for-print .title a {
color: var(--dune-gold);
font-size: var(--font-size-lg);
text-transform: uppercase;
letter-spacing: 1px;
padding: 0 15px;
height: 100%;
display: flex;
align-items: center;
border-right: var(--border-thin) solid var(--gold-border-subtle);
}
.skin-pivot #left-nav-aside,
.skin-pivot #middle-nav,
.skin-pivot #right-nav-aside {
background-color: transparent;
color: var(--text-primary);
}
.skin-pivot li.name.logo img {
max-width: 100%;
height: auto;
display: inline-block;
vertical-align: middle;
margin-right: 10px;
}
/* Game-style search box */
.skin-pivot li.has-form {
padding: 0 10px;
}
.skin-pivot li.has-form input[type="search"] {
background: rgba(12, 10, 20, 0.6);
color: var(--text-primary);
border: var(--border-thin) solid var(--dune-gold);
padding: 5px 10px;
width: 100%;
height: 30px;
border-radius: var(--border-radius-sm);
outline: none;
transition: var(--transition-standard);
}
.skin-pivot li.has-form input[type="search"]:focus {
background: rgba(12, 10, 20, 0.8);
border-color: var(--dune-gold-hover);
box-shadow: 0 0 5px rgba(200, 161, 101, 0.3);
}
.skin-pivot li.has-form input[type="search"]::placeholder {
color: rgba(201, 183, 149, 0.6);
}
.skin-pivot label.sidebar {
background-color: transparent;
color: var(--dune-gold);
font-weight: bold;
text-transform: uppercase;
padding: 8px 12px;
margin: 0;
display: block;
border-bottom: var(--border-thin) solid var(--gold-border-subtle);
letter-spacing: 0.5px;
font-size: var(--font-size-sm);
}
.skin-pivot li.mw-list-item {
position: relative;
}
.skin-pivot li.mw-list-item:before {
content: '•';
color: var(--dune-gold);
position: absolute;
left: 5px;
top: 7px;
font-size: 12px;
}
.skin-pivot li.mw-list-item a {
color: var(--dune-gold);
text-decoration: none;
display: block;
padding: 6px 10px 6px 15px;
font-size: var(--font-size-sm);
border-bottom: var(--border-thin) solid rgba(200, 161, 101, 0.1);
transition: var(--transition-standard);
}
.skin-pivot li.mw-list-item:last-child a {
border-bottom: none;
}
.skin-pivot li.mw-list-item a:hover {
color: var(--dune-gold);
background-color: rgba(200, 161, 101, 0.1);
text-decoration: none;
}
/*--------------------------------------------------------------
# 6. SIDEBAR/HIDING TOOLS
--------------------------------------------------------------*/
html body.skin-pivot #p-tb,
html body.skin-pivot #p-tb + ul,
html body.skin-pivot #p-tb + li,
li[id^="t-"] {
display: none !important;
}
/*--------------------------------------------------------------
# 7. RESPONSIVE LAYOUT - GAME ACCURATE
--------------------------------------------------------------*/
.responsive-container {
display: flex;
flex-wrap: wrap;
gap: 1.5em !important;
align-items: stretch;
width: 100%;
margin: 1em 0;
box-sizing: border-box;
}
.responsive-col {
display: flex;
flex-direction: column;
box-sizing: border-box;
width: 100%;
min-width: 350px;
}
@media screen and (min-width: 700px) {
.responsive-col {
width: calc(50% - 0.75em) !important;
}
}
@media screen and (min-width: 1100px) {
.responsive-col {
width: calc(33.333% - 1em) !important;
}
}
.responsive-col .skin-pivot:last-child {
flex: 1 1 auto;
display: flex;
flex-direction: column;
}
.responsive-col .skin-pivot:last-child .dune-card {
flex: 1 1 auto;
display: flex;
flex-direction: column;
}
/*--------------------------------------------------------------
# 8. TABLES - DUNE THEME FINAL (Updated with Responsive Features)
--------------------------------------------------------------*/
/* TWO-COLUMN INFOBOX TABLE */
table.infobox-dune-two-column {
width: 100%;
table-layout: fixed;
border-collapse: collapse;
border: var(--border-thin) solid var(--dune-gold);
background: linear-gradient(135deg, #111010, #1a1917);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
overflow: hidden;
clip-path: polygon(
0 0,
10px 0,
100% 0,
100% 10px,
100% 100%,
calc(100% - 10px) 100%,
0 100%,
0 calc(100% - 10px)
) !important;
}
table.infobox-dune-two-column thead th {
width: 45%;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
text-align: left;
color: var(--dune-gold);
background-color: rgba(200, 161, 101, 0.15);
}
table.infobox-dune-two-column tbody td {
font-weight: 300;
text-align: right;
color: var(--text-primary);
border-bottom: 1px solid var(--gold-border-subtle);
background: transparent;
padding: 0.75rem 0.5rem;
font-size: 0.95rem;
vertical-align: middle;
box-sizing: border-box;
word-wrap: break-word;
overflow-wrap: break-word;
}
/* STANDARD MULTI-ROW TABLE */
table.infobox-dune-standard-table {
width: 100%;
table-layout: fixed;
border-collapse: collapse;
background-color: rgba(0, 0, 2, 0.7);
border: var(--border-thin) solid var(--dune-gold);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
overflow: hidden;
clip-path: polygon(
0 0,
10px 0,
100% 0,
100% 10px,
100% 100%,
calc(100% - 10px) 100%,
0 100%,
0 calc(100% - 10px)
) !important;
}
table.infobox-dune-standard-table thead th {
background-color: rgba(200, 161, 101, 0.15);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
text-align: left;
border-bottom: 1px solid rgba(200, 161, 101, 0.3);
color: var(--dune-gold);
padding: 0.75rem 0.5rem;
font-size: 0.95rem;
vertical-align: middle;
box-sizing: border-box;
}
table.infobox-dune-standard-table tbody td {
font-weight: 300;
color: var(--text-primary);
padding: 0.75rem 0.5rem;
font-size: 0.95rem;
vertical-align: middle;
box-sizing: border-box;
word-wrap: break-word;
overflow-wrap: break-word;
}
table.infobox-dune-standard-table tbody td:not(:last-child) {
border-bottom: 1px solid var(--gold-border-subtle);
}
/*--------------------------------------------------------------
# 9. DUNE CARD COMPONENT - WITH DIAGONAL EDGES
--------------------------------------------------------------*/
.skin-pivot .dune-card {
position: relative;
background-color: rgba(0, 0, 2, 0.7) !important;
/* Card container text is now subtle white */
color: var(--text-primary);
width: auto !important;
max-width: 100% !important;
padding: var(--spacing-lg) !important;
margin: 0 0 var(--spacing-xl) 0 !important;
border: var(--border-thin) solid var(--dune-gold) !important;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.5) !important;
transition: box-shadow 0.3s ease;
overflow: visible !important;
clip-path: polygon(
0 0,
10px 0,
100% 0,
100% 10px,
100% 100%,
calc(100% - 10px) 100%,
0 100%,
0 calc(100% - 10px)
) !important;
}
.skin-pivot .dune-card:hover {
box-shadow: 0 0 12px rgba(200, 161, 101, 0.5) !important;
}
/* Card header remains gold */
.skin-pivot .dune-card-title {
margin: 0;
font-size: var(--font-size-xl);
color: var(--dune-gold);
text-transform: uppercase;
border-bottom: var(--border-thin) solid var(--dune-gold);
padding-bottom: 4px;
margin-bottom: 8px;
display: flex;
align-items: center;
position: relative;
}
.skin-pivot .dune-card-title::after {
content: '';
position: absolute;
bottom: -1px;
right: 0;
width: 12px;
height: 1px;
background-color: transparent;
border-bottom: 1px solid var(--dune-gold);
transform: rotate(-45deg);
transform-origin: bottom right;
}
.skin-pivot .dune-card-title .icon {
margin-right: 8px;
color: var(--dune-gold);
}
.skin-pivot .dune-card-description {
font-size: 1.1em !important;
line-height: 1.5 !important;
background-color: rgba(22, 22, 24, 0.4) !important;
border-radius: var(--border-radius-sm);
border: var(--border-thin) solid #444;
padding: var(--spacing-md);
margin-bottom: var(--spacing-md);
display: block !important;
/* Card description now uses subtle white */
color: var(--text-primary) !important;
}
/*--------------------------------------------------------------
# 10. LOCKED COMPONENT
--------------------------------------------------------------*/
.skin-pivot .dune-card-locked {
margin: var(--spacing-lg) 0 !important;
background-color: rgba(12, 10, 20, 0.6) !important;
border: var(--border-thin) solid var(--dune-gold) !important;
border-radius: var(--border-radius-sm) !important;
padding: var(--spacing-md) !important;
position: relative !important;
text-align: center !important;
}
.skin-pivot .dune-card-locked-label {
color: var(--dune-gold) !important;
font-weight: bold !important;
font-size: var(--font-size-sm) !important;
letter-spacing: 0.8px !important;
margin-bottom: var(--spacing-sm) !important;
border-bottom: var(--border-thin) solid rgba(200, 161, 101, 0.3) !important;
padding-bottom: var(--spacing-xs) !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
text-transform: uppercase !important;
}
.skin-pivot .dune-card-locked-icon {
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
width: 18px !important;
height: 18px !important;
margin-right: var(--spacing-xs) !important;
color: var(--dune-gold) !important;
font-size: 16px !important;
}
.skin-pivot .dune-card-locked-value {
/* Locked value text is now subtle white */
color: var(--text-primary) !important;
font-weight: normal !important;
padding: var(--spacing-xs) var(--spacing-sm) !important;
background-color: rgba(22, 22, 24, 0.4) !important;
border: var(--border-thin) solid rgba(200, 161, 101, 0.2) !important;
border-radius: var(--border-radius-sm) !important;
display: inline-block !important;
}
.skin-pivot .dune-card-locked-value a {
color: var(--dune-gold) !important;
}
.skin-pivot .locked-behind-header {
background-color: rgba(200, 161, 101, 0.15) !important;
border-bottom: var(--border-thin) solid var(--dune-gold) !important;
padding: var(--spacing-sm) var(--spacing-md) !important;
margin: -12px -12px 12px -12px !important;
position: relative !important;
text-transform: uppercase !important;
font-weight: bold !important;
color: var(--dune-gold) !important;
letter-spacing: 0.8px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.skin-pivot .locked-behind-header .icon {
margin-right: var(--spacing-xs) !important;
}
/*--------------------------------------------------------------
# 11. GAME PANEL COMPONENT
--------------------------------------------------------------*/
.skin-pivot .game-panel {
background: rgba(0, 0, 2, 0.7);
border: var(--border-thin) solid var(--dune-gold);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.5) !important;
margin-bottom: var(--spacing-xl) !important;
position: relative;
padding: var(--spacing-md) !important;
overflow: visible !important;
clip-path: polygon(
0 0,
10px 0,
100% 0,
100% 10px,
100% 100%,
calc(100% - 10px) 100%,
0 100%,
0 calc(100% - 10px)
) !important;
}
.skin-pivot .game-panel-header {
background-color: rgba(200, 161, 101, 0.15);
border-bottom: 1px solid var(--dune-gold);
padding: 6px 10px;
margin: -12px -12px 12px -12px !important;
position: relative;
text-transform: uppercase;
font-weight: bold;
color: var(--dune-gold);
letter-spacing: 0.5px;
display: flex;
align-items: center;
}
.skin-pivot .game-panel-header::after {
content: '';
position: absolute;
bottom: -1px;
right: 0;
width: 12px;
height: 1px;
background-color: transparent;
border-bottom: 1px solid var(--dune-gold);
transform: rotate(-45deg);
transform-origin: bottom right;
}
.skin-pivot .game-panel-header::before {
content: '';
display: inline-block;
width: 12px;
height: 12px;
border-top: 2px solid var(--dune-gold);
border-left: 2px solid var(--dune-gold);
transform: rotate(-45deg);
margin: 0 12px;
}
.skin-pivot .game-panel-content {
padding: 8px 12px;
/* Game panel content text now uses subtle white */
color: var(--text-primary);
font-size: 0.9em;
overflow: visible !important;
}
/*--------------------------------------------------------------
# 12. UI ELEMENTS - GAME ACCURATE
--------------------------------------------------------------*/
/* Resource Item */
.skin-pivot .resource {
display: inline-flex !important;
align-items: center !important;
padding: var(--spacing-xs) var(--spacing-sm) !important;
background-color: rgba(12, 10, 20, 0.6);
border: var(--border-thin) solid var(--gold-border-subtle);
border-radius: var(--border-radius-sm);
margin: 0 5px 5px 0 !important;
color: var(--text-primary);
position: relative;
}
.skin-pivot .resource:before,
.skin-pivot .resource:after {
content: '';
position: absolute;
width: 4px;
height: 4px;
background-color: var(--dune-gold);
}
.skin-pivot .resource:before {
top: -2px;
left: -2px;
}
.skin-pivot .resource:after {
bottom: -2px;
right: -2px;
}
.skin-pivot .resource .resource-icon {
margin-right: var(--spacing-xs);
color: var(--dune-gold);
}
.skin-pivot .resource .resource-amount {
font-weight: bold;
color: var(--dune-gold);
}
/* Buttons */
.skin-pivot .game-button {
background: linear-gradient(to bottom, var(--dune-gold), var(--dune-gold-dark));
border: var(--border-thin) solid var(--dune-gold);
color: #E2D3AE;
padding: 8px 12px;
border-radius: 3px;
cursor: pointer;
text-transform: uppercase;
font-size: var(--font-size-sm);
letter-spacing: 0.5px;
transition: all 0.2s ease;
position: relative;
text-align: center;
display: inline-block;
}
.skin-pivot .game-button:hover {
background: linear-gradient(to bottom, var(--dune-gold-hover), var(--dune-gold));
box-shadow: 0 0 8px rgba(200, 161, 101, 0.5);
}
.skin-pivot .game-button:active {
top: 1px;
}
/* Progress Bar */
.skin-pivot .progress-bar {
height: 10px;
background-color: rgba(15, 20, 25, 0.8);
border: var(--border-thin) solid var(--dune-gold);
border-radius: 5px;
overflow: hidden;
margin: 5px 0;
position: relative;
}
.skin-pivot .progress-fill {
height: 100%;
background: linear-gradient(to right, var(--dune-gold), var(--dune-gold-hover));
width: 0%;
transition: width 0.3s ease;
}
/* Tooltip */
.skin-pivot .tooltip {
position: relative;
display: inline-block;
cursor: help;
}
.skin-pivot .tooltip .tooltip-text {
visibility: hidden;
width: 200px;
background-color: #1F2A37;
color: var(--text-primary);
text-align: center;
border: var(--border-thin) solid var(--dune-gold);
border-radius: 5px;
padding: 8px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
font-size: 0.85em;
}
.skin-pivot .tooltip:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
/* Badge Indicators */
.skin-pivot .badge {
display: inline-block;
padding: 3px 6px;
border-radius: 3px;
font-size: 0.75em;
margin-left: 5px;
text-transform: uppercase;
}
.skin-pivot .badge-functional {
background-color: rgba(65, 130, 65, 0.3);
border: var(--border-thin) solid #5a9d5a;
color: #a3d9a3;
}
.skin-pivot .badge-locked {
background-color: rgba(130, 65, 65, 0.3);
border: var(--border-thin) solid #9d5a5a;
color: #d9a3a3;
}
/* Loading Animation */
@keyframes pulsate {
0%, 100% { opacity: 0.6; }
50% { opacity: 1; }
}
.skin-pivot .loading {
animation: pulsate 1.5s infinite;
}
/* Breadcrumbs */
.skin-pivot .breadcrumbs-container,
.skin-pivot .breadcrumb-trail {
background: transparent;
border: none;
margin: 0;
padding: 0;
}
.skin-pivot .breadcrumb-trail {
display: inline-flex;
align-items: center;
padding: 5px 0;
color: var(--text-primary);
font-size: var(--font-size-sm);
}
.skin-pivot .breadcrumb-trail a {
color: var(--dune-gold);
transition: var(--transition-standard);
}
.skin-pivot .breadcrumb-trail a:hover {
color: var(--dune-gold);
text-decoration: none;
}
.skin-pivot .breadcrumb-trail .separator {
margin: 0 8px;
color: var(--text-primary);
}
.skin-pivot .breadcrumb-unavailable {
background-color: rgba(15, 20, 25, 0.6);
border: var(--border-thin) solid var(--dune-gold);
padding: 5px 10px;
margin-bottom: 10px;
color: var(--text-primary);
font-size: 0.9em;
border-radius: var(--border-radius-sm);
}
/* Miscellaneous */
.skin-pivot .fromdb {
color: var(--text-secondary);
font-size: 0.85em;
margin: -5px 0 15px 0;
opacity: 0.7;
font-style: italic;
}
.skin-pivot .video-container {
border: var(--border-thin) solid var(--dune-gold);
overflow: hidden;
margin: 0 0 15px 0 !important;
position: relative;
clip-path: polygon(
0 0,
10px 0,
100% 0,
100% 10px,
100% 100%,
calc(100% - 10px) 100%,
0 100%,
0 calc(100% - 10px)
) !important;
}
.skin-pivot .related-buildings {
padding: 8px;
background-color: rgba(15, 20, 25, 0.4);
}
.skin-pivot .related-buildings p {
margin: 5px 0;
color: var(--text-primary);
font-size: 0.9em;
}
.skin-pivot .schematic-section,
.skin-pivot .crafting-section,
.skin-pivot .tutorials-section {
margin-bottom: 10px;
}
.skin-pivot .schematic-section .game-panel,
.skin-pivot .crafting-section .game-panel,
.skin-pivot .tutorials-section .game-panel {
margin-bottom: 8px;
}
/*--------------------------------------------------------------
# 13. INVENTORY UI STYLING
--------------------------------------------------------------*/
.skin-pivot .inventory-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
gap: 4px;
padding: 5px;
background-color: rgba(12, 10, 20, 0.8);
border: var(--border-thin) solid var(--dune-gold);
position: relative;
clip-path: polygon(
0 0,
10px 0,
100% 0,
100% 10px,
100% 100%,
calc(100% - 10px) 100%,
0 100%,
0 calc(100% - 10px)
) !important;
}
.skin-pivot .inventory-slot {
background-color: rgba(22, 22, 24, 0.8);
border: var(--border-thin) solid var(--gold-border-subtle);
display: flex;
align-items: center;
justify-content: center;
height: 75px;
width: 75px;
transition: var(--transition-standard);
position: relative;
color: var(--text-primary);
}
.skin-pivot .inventory-slot.empty {
background-image:
linear-gradient(to bottom right, transparent calc(50% - 1px), var(--gold-border-subtle), transparent calc(50% + 1px));
}
.skin-pivot .inventory-slot:before,
.skin-pivot .inventory-slot:after {
content: '';
position: absolute;
width: 3px;
height: 3px;
}
.skin-pivot .inventory-slot:before {
top: -1px;
left: -1px;
border-top: var(--border-thin) solid var(--dune-gold);
border-left: var(--border-thin) solid var(--dune-gold);
}
.skin-pivot .inventory-slot:after {
bottom: -1px;
right: -1px;
border-bottom: var(--border-thin) solid var(--dune-gold);
border-right: var(--border-thin) solid var(--dune-gold);
}
.skin-pivot .inventory-slot:hover {
border-color: var(--dune-gold);
box-shadow: 0 0 5px rgba(200, 161, 101, 0.4) inset;
}
.skin-pivot .inventory-slot img {
max-width: 85%;
max-height: 85%;
}
.skin-pivot .dune-selected {
border: var(--border-thin) solid var(--dune-gold) !important;
box-shadow: 0 0 8px rgba(200, 161, 101, 0.5) inset, 0 0 2px var(--dune-gold) !important;
background-color: rgba(200, 161, 101, 0.1) !important;
}
.skin-pivot .item-count {
position: absolute;
bottom: 2px;
right: 2px;
background-color: rgba(12, 10, 20, 0.8);
color: var(--text-primary);
font-size: 10px;
padding: 1px 3px;
border-radius: 2px;
border: var(--border-thin) solid rgba(200, 161, 101, 0.5);
min-width: 14px;
text-align: center;
}
.skin-pivot .item-quality {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
}
.skin-pivot .item-quality.common {
background-color: #a0a0a0;
}
.skin-pivot .item-quality.uncommon {
background-color: #2d862d;
}
.skin-pivot .item-quality.rare {
background-color: #2970c3;
}
.skin-pivot .item-quality.epic {
background-color: #9c43c8;
}
.skin-pivot .item-quality.legendary {
background-color: #cf7a30;
}
/* Section header remains gold */
.skin-pivot .section-header {
background-color: rgba(12, 10, 20, 0.8);
border: var(--border-thin) solid var(--dune-gold);
color: var(--dune-gold);
padding: 5px 10px;
font-size: var(--font-size-sm);
text-transform: uppercase;
letter-spacing: 1px;
display: flex;
align-items: center;
position: relative;
margin-bottom: 5px;
font-weight: bold;
}
.skin-pivot .section-header:before,
.skin-pivot .section-header:after {
content: '';
position: absolute;
width: 6px;
height: 6px;
border: var(--border-thin) solid var(--dune-gold);
}
.skin-pivot .section-header:before {
top: -3px;
left: -3px;
border-right: none;
border-bottom: none;
}
.skin-pivot .section-header:after {
bottom: -3px;
right: -3px;
border-left: none;
border-top: none;
}
/* Experience bar */
.skin-pivot .xp-bar {
height: 6px;
width: 100%;
background-color: rgba(12, 10, 20, 0.6);
border: var(--border-thin) solid var(--dune-gold);
position: relative;
overflow: hidden;
}
.skin-pivot .xp-progress {
height: 100%;
background: linear-gradient(to right, var(--dune-gold), var(--dune-gold-hover));
width: 0%;
}
.skin-pivot .xp-level {
position: absolute;
right: 10px;
top: -18px;
background-color: rgba(12, 10, 20, 0.8);
border: var(--border-thin) solid var(--dune-gold);
color: var(--text-primary);
padding: 2px 6px;
font-size: var(--font-size-xs);
letter-spacing: 0.5px;
}