Actions

MediaWiki

Pivot.css: Difference between revisions

From Dune Awakening DB

mNo edit summary
mNo edit summary
 
(109 intermediate revisions by the same user not shown)
Line 1: Line 1:
/**********************************************************
/**********************************************************
  * Dune-Themed Pivot Skin (Integrated Full CSS with
  * Enhanced Pivot skin – Dune Awakening UI inspired (v3)
  * Full-Screen Background & Infobox Overrides)
  * Complete overhaul for game-accurate aesthetics
  **********************************************************/
  **********************************************************/
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@400;500;600;700&display=swap');


/* 1) RESET MARGINS & ENSURE BODY CAN GROW AS TALL AS NEEDED */
/*─────────────────────────────────────────
1 · ENHANCED DESIGN TOKENS
─────────────────────────────────────────*/
:root{
  /* Core Dune palette - richer, more vibrant */
  --dune-black: rgba(8, 6, 12, 0.95);
  --dune-panel-bg-dark: rgba(0, 0, 2, 0.9);
  --dune-panel-bg-light: rgba(22, 22, 24, 0.6);
  --dune-dark: rgba(20, 18, 28, 0.85);
  --dune-darker: rgba(10, 8, 16, 0.9);
 
  /* Enhanced gold spectrum */
  --dune-gold: #fce7c8;
  --dune-gold-bright: #fff4e6;
  --dune-gold-hover: #E3BB7A;
  --dune-gold-dark: #A07B40;
  --dune-gold-glow: rgba(252, 231, 200, 0.4);
 
  /* Text hierarchy */
  --text-primary: #E8E8E8;
  --text-secondary: #C8C8C8;
  --text-title: #fce7c8;
  --text-inactive: #666666;
  --text-highlight: #FFFFFF;
  --text-error: #ff4444;
 
  /* Spacing system */
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 20px;
  --spacing-xl: 24px;
  --spacing-xxl: 32px;
 
  /* Borders & effects */
  --border-thin: 1px;
  --border-medium: 2px;
  --border-thick: 3px;
  --border-radius-sm: 3px;
  --border-radius-lg: 6px;
  --border-angle: 30deg;
 
  /* Enhanced shadows */
  --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 30px var(--dune-gold-glow);
 
  /* Typography - game-inspired fonts */
  --font-primary: "Rajdhani", "Segoe UI", sans-serif;
  --font-display: "Orbitron", "Arial Black", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
 
  /* Layout */
  --nav-height: 48px;
  --sidebar-width: 280px;
}
 
/*─────────────────────────────────────────
2 · ENHANCED RESET & BODY
─────────────────────────────────────────*/
html, body {
html, body {
   margin: 0;
   margin: 0;
Line 10: Line 77:
   height: 100%;
   height: 100%;
   min-height: 100%;
   min-height: 100%;
  overflow-x: hidden;
}
}


/* 2) FULLSCREEN BACKGROUND IMAGE */
/* Uses your [[:File:DuneDB Background.jpg]] file */
body.skin-pivot {
body.skin-pivot {
   background: url('https://dunedb.com/images/5/57/DuneDB_Background.jpg') no-repeat center center fixed;
   background:  
   background-size: cover;
    /* Tech overlay pattern */
   background-attachment: fixed;
    radial-gradient(circle at 20% 50%, rgba(252, 231, 200, 0.02) 0%, transparent 50%),
   color: #E0E0E0;
    radial-gradient(circle at 80% 80%, rgba(252, 231, 200, 0.02) 0%, transparent 50%),
   font-family: "Orbitron", sans-serif;
    /* Main background */
    url('https://dunedb.com/images/5/57/DuneDB_Background.jpg') no-repeat center/cover fixed;
   color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.5;
  font-size: 16px;
   position: relative;
}
 
/* Animated background overlay */
body.skin-pivot::before {
  content: '';
  position: fixed;
   top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:  
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(252, 231, 200, 0.03) 2px,
      rgba(252, 231, 200, 0.03) 4px
    );
   pointer-events: none;
  z-index: 1;
  animation: scanlines 8s linear infinite;
}
}


/* 3) TRANSPARENT MAIN CONTAINERS */
@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}
 
/*─────────────────────────────────────────
3 · ENHANCED TRANSPARENT WRAPPERS
─────────────────────────────────────────*/
.skin-pivot #content,
.skin-pivot #content,
.skin-pivot .mw-body,
.skin-pivot .mw-body,
Line 28: Line 128:
.skin-pivot .mw-content-rtl {
.skin-pivot .mw-content-rtl {
   background: transparent;
   background: transparent;
   padding: 15px;
   padding: var(--spacing-xl);
  border-radius: 10px;
   margin: 0;
   margin: 0;
  position: relative;
  z-index: 2;
}
}


/* 4) FORCE MAJOR WRAPPERS TO BE TRANSPARENT */
/* Remove all default backgrounds */
.skin-pivot .off-canvas-wrap,
.skin-pivot .off-canvas-wrap,
.skin-pivot .docs-wrap,
.skin-pivot .docs-wrap,
.skin-pivot .inner-wrap,
.skin-pivot .inner-wrap,
.skin-pivot #page-base,
#page-base, .page-base,
.skin-pivot .page-base,
#main-section.main-section,
.skin-pivot #main-section.main-section,
#page-content,
.skin-pivot #page-content,
.row, .columns,
.skin-pivot .row,
#sidebar.large-2.medium-3.columns.hide-for-small.hide-for-print,
.skin-pivot .columns,
.exit-off-canvas {
.skin-pivot #sidebar.large-2.medium-3.columns.hide-for-small.hide-for-print,
.skin-pivot .exit-off-canvas {
   background: transparent !important;
   background: transparent !important;
   border: none !important;
   border: none !important;
  overflow: visible !important;
}
}


/* 5) FOOTER, CATLINKS, PRINTFOOTER: ALSO TRANSPARENT */
footer, .footer, #footer, .mw-footer,
.skin-pivot footer,
#mw-footer-container, #mw-footer,
.skin-pivot .footer,
#catlinks, .catlinks, .printfooter,
.skin-pivot #footer,
#mw-data-after-content {
.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;
   background: transparent !important;
   border: none !important;
   border: none !important;
   color: #E0E0E0 !important;
   color: var(--dune-gold) !important;
  margin-top: var(--spacing-xxl);
}
 
/*─────────────────────────────────────────
4 · ENHANCED NAVIGATION
─────────────────────────────────────────*/
/* Main navbar with hexagonal design */
.skin-pivot .navbar {
  background: linear-gradient(90deg,
    var(--dune-darker) 0%,
    rgba(10, 8, 16, 0.95) 50%,
    var(--dune-darker) 100%
  ) !important;
  border: none !important;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}
 
/* Hexagonal border effect */
.skin-pivot .navbar::before,
.skin-pivot .navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--border-medium);
  background: linear-gradient(90deg,
    transparent 0%,
    var(--dune-gold) 10%,
    var(--dune-gold-hover) 50%,
    var(--dune-gold) 90%,
    transparent 100%
  );
  animation: navGlow 3s ease-in-out infinite;
}
 
@keyframes navGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
}


/**********************************************************
/* Navbar links with enhanced styling */
* NAVIGATION & HEADINGS
.skin-pivot .navbar-nav {
**********************************************************/
  display: flex;
  justify-content: center;
  width: 100%;
  gap: var(--spacing-xs);
}


/* Navbars */
.skin-pivot .navbar-nav > li > a {
.skin-pivot .navbar,
  color: var(--dune-gold) !important;
.skin-pivot .navbar-default,
  font-family: var(--font-display);
.skin-pivot .navbar-inverse {
  font-weight: 600;
   background: rgba(15, 20, 25, 0.9) !important;
  text-transform: uppercase;
   border: none !important;
  letter-spacing: 2px;
   color: #E0E0E0 !important;
  padding: 12px 24px;
   margin: 0;
   position: relative;
  transition: all 0.3s ease;
   overflow: hidden;
}
}
.skin-pivot .navbar-nav > li > a,
 
.skin-pivot .dropdown-menu > li > a {
/* Hover effect with sliding background */
   color: #C47F3A !important;
.skin-pivot .navbar-nav > li > a::before {
   font-weight: bold !important;
  content: '';
   text-decoration: none;
  position: absolute;
  top: 0;
  left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg,
    transparent 0%,
    rgba(252, 231, 200, 0.1) 50%,
    transparent 100%
  );
  transition: left 0.3s ease;
}
}
.skin-pivot .navbar-nav > li > a:hover,
 
.skin-pivot .dropdown-menu > li > a:hover {
.skin-pivot .navbar-nav > li > a:hover {
   color: #E28D4F !important;
   color: var(--dune-gold-bright) !important;
   text-decoration: underline;
   text-shadow: 0 0 10px var(--dune-gold-glow);
}
}


/* Sidebar & Panels */
.skin-pivot .navbar-nav > li > a:hover::before {
.skin-pivot #nav,
   left: 100%;
.skin-pivot #nav-wrapper,
.skin-pivot .nav-content,
.skin-pivot .list-group,
.skin-pivot .list-group-item {
  background: rgba(15, 20, 25, 0.9);
  border: none;
   color: #E0E0E0;
}
}
.skin-pivot .list-group-item:hover {
 
   background-color: rgba(15, 20, 25, 1);
.skin-pivot .navbar-nav > li.active > a {
  color: var(--dune-gold-bright) !important;
  background: rgba(252, 231, 200, 0.1);
   box-shadow:  
    inset 0 -3px 0 var(--dune-gold),
    0 0 20px rgba(252, 231, 200, 0.2);
}
}


/* Sidebar / Panel Headings */
/* Mobile tab-bar enhancement */
.skin-pivot #nav h3,
nav.tab-bar.hide-for-print {
.skin-pivot #nav-wrapper h3,
  background: var(--dune-darker);
.skin-pivot .panel-heading,
  border-bottom: var(--border-medium) solid var(--dune-gold);
.skin-pivot .nav-content h3 {
   color: var(--dune-gold);
   background-color: transparent;
   height: var(--nav-height);
   border: none;
   display: flex;
   color: #E2D3AE;
   align-items: center;
   margin: 10px 0 5px;
   padding: 0 var(--spacing-md);
   font-weight: bold;
   box-shadow: var(--shadow-medium);
   text-transform: uppercase;
}
}


/* Main content headings */
/*─────────────────────────────────────────
5 · ENHANCED TYPOGRAPHY
─────────────────────────────────────────*/
/* Headings with game-style treatment */
.skin-pivot h1,
.skin-pivot h1,
.skin-pivot h2,
.skin-pivot h2,
Line 123: Line 279:
.skin-pivot h5,
.skin-pivot h5,
.skin-pivot h6 {
.skin-pivot h6 {
   color: #E2D3AE;
  font-family: var(--font-display);
   font-weight: bold;
   color: var(--dune-gold);
   margin-top: 1em;
   font-weight: 700;
   margin-bottom: 0.5em;
   text-transform: uppercase;
   border-bottom: none;
   margin: 1.5em 0 0.75em 0;
  text-transform: none;
   position: relative;
   padding-bottom: 5px;
   letter-spacing: 1px;
}
}
.skin-pivot h1,
 
.skin-pivot h3 {
.skin-pivot h1 {
   border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  font-size: var(--font-size-xxl);
   background: linear-gradient(135deg, var(--dune-gold) 0%, var(--dune-gold-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px var(--dune-gold-glow);
}
}


/* Links site-wide */
.skin-pivot h2 {
.skin-pivot a {
  font-size: var(--font-size-xl);
   color: #C47F3A;
   color: var(--dune-gold);
   text-decoration: none;
   padding-bottom: var(--spacing-sm);
   font-weight: bold;
   border-bottom: 2px solid rgba(252, 231, 200, 0.3);
}
}
.skin-pivot a:hover {
 
   color: #E28D4F;
.skin-pivot h2::after {
   text-decoration: underline;
   content: '';
}
   position: absolute;
.skin-pivot a.new,
  bottom: -2px;
.skin-pivot a.new:visited {
  left: 0;
   color: #BA0000 !important;
   width: 60px;
   text-decoration: underline;
   height: 2px;
}
  background: var(--dune-gold);
.skin-pivot a.new:hover {
   box-shadow: 0 0 10px var(--dune-gold-glow);
   color: #DD0000 !important;
}
}


/**********************************************************
/* Enhanced links */
* PIVOT NAV OVERRIDES
.skin-pivot a {
**********************************************************/
   color: var(--dune-gold);
.skin-pivot nav.tab-bar.hide-for-print {
   font-weight: 500;
  background: rgba(15, 20, 25, 0.9);
  border: none;
  color: #E0E0E0;
  padding: 0.5em;
}
.skin-pivot nav.tab-bar.hide-for-print a {
   color: #C47F3A;
  font-weight: bold;
}
.skin-pivot nav.tab-bar.hide-for-print a:hover {
  color: #E28D4F;
  text-decoration: underline;
}
.skin-pivot nav.tab-bar.hide-for-print .title a {
  color: #E2D3AE;
  font-size: 1.2em;
  text-transform: uppercase;
}
.skin-pivot #left-nav-aside,
.skin-pivot #middle-nav,
.skin-pivot #right-nav-aside {
  background-color: transparent;
  color: #E0E0E0;
}
.skin-pivot li.name.logo img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
.skin-pivot li.has-form input[type="search"] {
  background: rgba(30, 40, 50, 0.8);
  color: #E0E0E0;
  border: 1px solid #C47F3A;
  padding: 0.5em;
  width: 100%;
}
.skin-pivot li.has-form input[type="search"]::placeholder {
  color: #C9B795;
}
.skin-pivot label.sidebar {
  background-color: transparent;
  color: #E2D3AE;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.5em 0;
  display: block;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5em;
}
.skin-pivot li.mw-list-item a {
  color: #C47F3A;
   font-weight: bold;
   text-decoration: none;
   text-decoration: none;
   display: block;
   transition: all 0.2s ease;
  padding: 0.25em 0;
   position: relative;
}
.skin-pivot li.mw-list-item a:hover {
  color: #E28D4F;
   text-decoration: underline;
}
}


/**********************************************************
.skin-pivot a:hover {
* SIDEBAR/HIDING TOOLS
  color: var(--dune-gold-bright);
**********************************************************/
  text-shadow: 0 0 5px var(--dune-gold-glow);
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;
}
}


/**********************************************************
/* Content links with underline animation */
* TABLES
.mw-body-content a {
**********************************************************/
   display: inline-block;
/* Two-Column Table */
   position: relative;
.skin-pivot table.two-column-table {
  background-color: #1A232F !important;
  border: none !important;
  width: 100% !important;
  table-layout: fixed;
}
.skin-pivot table.two-column-table thead,
.skin-pivot table.two-column-table tbody,
.skin-pivot table.two-column-table tfoot {
  background-color: #1A232F !important;
  border: none !important;
}
.skin-pivot table.two-column-table th,
.skin-pivot table.two-column-table td {
   background-color: #1A232F !important;
  border: none !important;
  vertical-align: top;
}
.skin-pivot table.two-column-table > tbody > tr > td:first-child {
  border-right: 2px solid rgba(255, 255, 255, 0.2) !important;
}
@media only screen and (max-width: 600px) {
  .skin-pivot table.two-column-table > tbody > tr {
    display: flex;
    flex-direction: column;
   }
  .skin-pivot table.two-column-table > tbody > tr > td {
    width: 100%;
    border: none !important;
  }
}
}


/**********************************************************
.mw-body-content a::after {
* INFOBOX COLORS & STYLES
   content: '';
**********************************************************/
/* Infobox Dune: Outer container with background #010005 */
.skin-pivot table.infobox-dune {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-bottom: 0.5em !important;
  background-color: #010005 !important;
  border: 1px solid #444 !important;
  border-radius: 4px !important;
}
/* Infobox inner cells: background #000002 */
.skin-pivot table.infobox-dune th,
.skin-pivot table.infobox-dune td {
  padding: 6px 8px !important;
  font-size: 0.85em !important;
  color: #E2D3AE !important;
  border-bottom: 1px solid #3A3A3A !important;
  background-color: #000002 !important;
  vertical-align: middle !important;
  text-align: left !important;
}
.skin-pivot table.infobox-dune tr:last-child th,
.skin-pivot table.infobox-dune tr:last-child td {
  border-bottom: none !important;
}
/* .dune-infobox module override */
.skin-pivot .dune-infobox {
  position: relative;
  background-color: #010005;
  color: #E2D3AE;
  width: 100%;
  padding: 16px;
  margin: 1em 0;
  border: 1px solid #E2D3AE;
  border-radius: 6px;
  box-sizing: border-box;
}
.skin-pivot .dune-infobox::before {
   content: "";
   position: absolute;
   position: absolute;
   top: 0;
   bottom: -2px;
   left: 0;
   left: 0;
   width: 100%;
   width: 0;
   height: 100%;
   height: 1px;
   pointer-events: none;
   background: var(--dune-gold);
  border: 2px solid #E2D3AE;
   transition: width 0.3s ease;
  border-radius: 6px;
  transform: translate(4px, 4px);
}
.skin-pivot .dune-infobox-title {
   font-size: 1.4em;
  color: #E2D3AE;
  text-transform: uppercase;
  border-bottom: 1px solid #444;
  padding-bottom: 4px;
  margin-bottom: 8px;
}
}


/**********************************************************
.mw-body-content a:hover::after {
* DUNE-CARD STYLES
**********************************************************/
.dune-card {
  position: relative;
  background-color: #1F2A37;
  color: #E2D3AE;
  width: auto !important;
  max-width: 100% !important;
  padding: 16px;
  margin: 1em;
  border: 1px solid #E2D3AE;
  border-radius: 6px;
  box-sizing: border-box;
}
.dune-card-decoration {
  position: absolute;
  top: 0;
  left: 0;
   width: 100%;
   width: 100%;
  height: 100%;
  pointer-events: none;
  border: 2px solid #E2D3AE;
  border-radius: 6px;
  transform: translate(4px, 4px);
}
}
.dune-card-inner {
 
   position: relative;
/*─────────────────────────────────────────
   z-index: 1;
6 · ENHANCED FORM ELEMENTS
─────────────────────────────────────────*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea,
select {
  background: rgba(0, 0, 2, 0.8);
  border: 2px solid rgba(252, 231, 200, 0.3);
  color: var(--text-primary);
   padding: var(--spacing-sm) var(--spacing-md);
   font-family: var(--font-primary);
  transition: all 0.3s ease;
}
}
.dune-card-label {
 
  color: #b6a896;
input[type="text"]:focus,
  font-size: 0.8em;
input[type="password"]:focus,
   text-transform: uppercase;
input[type="email"]:focus,
   margin-bottom: 6px;
input[type="search"]:focus,
   border-bottom: 1px solid #444;
textarea:focus,
   padding-bottom: 4px;
select:focus {
   outline: none;
   border-color: var(--dune-gold);
   box-shadow: 0 0 10px var(--dune-gold-glow);
   background: rgba(0, 0, 2, 0.9);
}
}
.dune-card-title {
 
   margin: 0;
/* Enhanced buttons */
   font-size: 1.4em;
button,
   color: #E2D3AE;
.button,
input[type="submit"],
input[type="button"] {
  background: linear-gradient(135deg, rgba(252, 231, 200, 0.2) 0%, rgba(252, 231, 200, 0.1) 100%);
  border: 2px solid var(--dune-gold);
  color: var(--dune-gold);
   padding: var(--spacing-sm) var(--spacing-lg);
   font-family: var(--font-display);
   font-weight: 600;
   text-transform: uppercase;
   text-transform: uppercase;
   border-bottom: 1px solid #444;
   letter-spacing: 1px;
   padding-bottom: 4px;
   cursor: pointer;
   margin-bottom: 8px;
  transition: all 0.3s ease;
  position: relative;
   overflow: hidden;
}
}
.dune-card-description {
 
  font-size: 0.9em;
button:hover,
  line-height: 1.4;
.button:hover,
  background-color: #262626;
input[type="submit"]:hover,
  border-radius: 4px;
input[type="button"]:hover {
   border: 1px solid #444;
   background: linear-gradient(135deg, rgba(252, 231, 200, 0.3) 0%, rgba(252, 231, 200, 0.2) 100%);
   padding: 10px;
   color: var(--dune-gold-bright);
   margin-bottom: 10px;
   box-shadow: 0 0 20px var(--dune-gold-glow);
   display: block !important;
   transform: translateY(-2px);
}
}


/**********************************************************
/*─────────────────────────────────────────
  * RESPONSIVE LAYOUT
  7 · RESPONSIVE GRID SYSTEM
**********************************************************/
─────────────────────────────────────────*/
.responsive-container {
.responsive-container {
   display: flex;
   display: flex;
   flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 0.25em;
   gap: var(--spacing-lg);
   align-items: stretch;
   align-items: stretch;
   width: 100%;
   width: 100%;
   margin: 0.25em 0;
   margin: var(--spacing-lg) 0;
   box-sizing: border-box;
   box-sizing: border-box;
}
}
.responsive-col {
.responsive-col {
   display: flex;
   display: flex;
   flex-direction: column;
   flex-direction: column;
   box-sizing: border-box;
   flex: 1 1 100%;
  width: 100%;
   min-width: 320px;
   min-width: 350px;
}
}
@media screen and (min-width: 700px) {
 
@media (min-width: 768px) {
   .responsive-col {
   .responsive-col {
     width: calc(50% - 0.3em);
     flex: 1 1 calc((100% - var(--spacing-lg)) / 2);
   }
   }
}
}
@media screen and (min-width: 1100px) {
 
@media (min-width: 1024px) {
   .responsive-col {
   .responsive-col {
     width: calc(33.333% - 0.26em);
     flex: 1 1 calc((100% - 2 * var(--spacing-lg)) / 3);
   }
   }
}
}
.responsive-col .skin-pivot:last-child {
 
  flex: 1 1 auto;
.responsive-col .skin-pivot {
   display: flex;
   display: flex;
   flex-direction: column;
   flex-direction: column;
}
.responsive-col .skin-pivot:last-child .dune-card {
   flex: 1 1 auto;
   flex: 1 1 auto;
   display: flex;
   height: 100%;
  flex-direction: column;
}
}


/**********************************************************
/*─────────────────────────────────────────
  * ADDITIONAL PANEL & TABLE STYLES (Game UI Feel)
  8 · UTILITY CLASSES
**********************************************************/
─────────────────────────────────────────*/
.skin-pivot .game-panel {
/* Text utilities */
  background: linear-gradient(to bottom, #1a1a1a, #1F2A37);
.text-gold { color: var(--dune-gold) !important; }
  border: 1px solid #364957;
.text-bright { color: var(--dune-gold-bright) !important; }
  border-radius: 5px;
.text-glow { text-shadow: 0 0 10px var(--dune-gold-glow); }
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 215, 128, 0.1) inset;
 
  margin-bottom: 10px;
/* Background utilities */
  position: relative;
.bg-dark { background: var(--dune-dark) !important; }
  overflow: hidden;
.bg-darker { background: var(--dune-darker) !important; }
}
.bg-panel { background: var(--dune-panel-bg-dark) !important; }
.skin-pivot .game-panel-header {
 
  background-color: rgba(196,127,58,0.2);
/* Border utilities */
  border-bottom: 1px solid #C47F3A;
.border-gold { border-color: var(--dune-gold) !important; }
  padding: 6px 10px;
.border-glow { box-shadow: 0 0 10px var(--dune-gold-glow) !important; }
  position: relative;
 
  text-transform: uppercase;
/* Animation utilities */
  font-weight: bold;
.animate-pulse { animation: techPulse 2s ease-in-out infinite; }
  color: #E2D3AE;
.animate-glow { animation: borderGlow 3s ease-in-out infinite; }
  letter-spacing: 0.5px;
.animate-slide { animation: slideGlow 3s ease-in-out infinite; }
  display: flex;
 
  align-items: center;
/*─────────────────────────────────────────
}
9 · SCROLLBAR STYLING
.skin-pivot .game-panel-header::before,
─────────────────────────────────────────*/
.skin-pivot .game-panel-header::after {
::-webkit-scrollbar {
  content: '';
  display: inline-block;
   width: 12px;
   width: 12px;
   height: 12px;
   background: rgba(0, 0, 2, 0.8);
  border-top: 2px solid #C47F3A;
  border-left: 2px solid #C47F3A;
  transform: rotate(-45deg);
  margin: 0 12px;
}
}
.skin-pivot .game-panel-header::after {
 
  transform: rotate(135deg);
::-webkit-scrollbar-track {
}
   background: rgba(0, 0, 2, 0.8);
.skin-pivot .game-panel-content {
   border: 1px solid rgba(252, 231, 200, 0.1);
  padding: 8px 12px;
  color: #E0E0E0;
  font-size: 0.9em;
}
/* Enhanced Table Styling */
.skin-pivot .game-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.skin-pivot .game-table th {
   background-color: rgba(196,127,58,0.2);
  color: #E2D3AE;
  padding: 6px;
  text-align: left;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #C47F3A;
}
.skin-pivot .game-table td {
  padding: 4px 6px;
  border-bottom: 1px solid rgba(196,127,58, 0.3);
  vertical-align: middle;
}
.skin-pivot .game-table tr:nth-child(even) td {
  background-color: rgba(15, 20, 25, 0.4);
}
.skin-pivot .game-table tr:last-child td {
  border-bottom: none;
}
/* Resource Item Styling */
.skin-pivot .resource {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  background-color: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(196,127,58, 0.6);
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  color: #E0E0E0;
}
.skin-pivot .resource .resource-icon {
  margin-right: 4px;
}
.skin-pivot .resource .resource-amount {
  font-weight: bold;
  color: #C47F3A;
}
/* Buttons */
.skin-pivot .game-button {
  background: linear-gradient(to bottom, #C47F3A, #9F6230);
  border: 1px solid #C47F3A;
  color: #E2D3AE;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85em;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  position: relative;
}
.skin-pivot .game-button:hover {
  background: linear-gradient(to bottom, #E28D4F, #B97233);
  box-shadow: 0 0 8px rgba(226, 141, 79, 0.4);
}
.skin-pivot .game-button:active {
  top: 1px;
}
/* Progress Bar */
.skin-pivot .progress-bar {
  height: 10px;
  background-color: rgba(15, 20, 25, 0.8);
   border: 1px solid #C47F3A;
  border-radius: 5px;
  overflow: hidden;
  margin: 5px 0;
}
.skin-pivot .progress-fill {
  height: 100%;
  background: linear-gradient(to right, #C47F3A, #E28D4F);
  width: 0%;
  transition: width 0.3s ease;
}
/* Hover Effects for Interactive Elements */
.skin-pivot a:not(.game-button),
.skin-pivot .clickable {
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.skin-pivot a:not(.game-button):hover,
.skin-pivot .clickable:hover {
  color: #E28D4F;
  text-shadow: 0 0 5px rgba(226, 141, 79, 0.4);
}
/* Tooltip */
.skin-pivot .tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}
.skin-pivot .tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #1F2A37;
  color: #E0E0E0;
  text-align: center;
  border: 1px solid #C47F3A;
  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: 1px solid #5a9d5a;
  color: #a3d9a3;
}
.skin-pivot .badge-locked {
  background-color: rgba(130, 65, 65, 0.3);
  border: 1px solid #9d5a5a;
  color: #d9a3a3;
}
/* Animation for loading */
@keyframes pulsate {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.skin-pivot .loading {
  animation: pulsate 1.5s infinite;
}
}


/**********************************************************
::-webkit-scrollbar-thumb {
* BREADCRUMBS, HEADINGS, ETC.
   background: linear-gradient(180deg, var(--dune-gold-dark) 0%, var(--dune-gold-hover) 100%);
**********************************************************/
   border: 1px solid var(--dune-gold);
.skin-pivot .breadcrumbs-container,
   border-radius: 2px;
.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: #C47F3A;
}
.skin-pivot .breadcrumb-unavailable {
  background-color: rgba(15, 20, 25, 0.6);
  border: 1px solid #C47F3A;
  padding: 5px 10px;
  margin-bottom: 10px;
  color: #E0E0E0;
  font-size: 0.9em;
}
.skin-pivot h1.firstHeading,
.skin-pivot .page-header h1 {
  color: #E2D3AE;
  font-size: 1.6em;
  font-weight: bold;
  margin: 0 0 10px 0;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(196,127,58, 0.4);
  text-transform: uppercase;
}
.skin-pivot .fromdb {
  color: #C47F3A;
  font-size: 0.85em;
  margin: -5px 0 15px 0;
  opacity: 0.7;
}
.skin-pivot .video-container {
  border: 1px solid #364957;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.skin-pivot .related-buildings {
  padding: 8px;
  background-color: rgba(15, 20, 25, 0.4);
}
.skin-pivot .related-buildings p {
  margin: 5px 0;
  color: #E0E0E0;
  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;
}
/* DuneDB Updated Infobox Colors */


/* OUTER BOX — darker black for main box */
::-webkit-scrollbar-thumb:hover {
.skin-pivot .dune-infobox,
  background: linear-gradient(180deg, var(--dune-gold-hover) 0%, var(--dune-gold) 100%);
.skin-pivot table.infobox-dune,
.skin-pivot .dune-card,
.skin-pivot .game-panel {
  background-color: #000002 !important;
  border-color: #3a3a3a !important;
}
}


/* INNER BOXES — use subtle graphite color */
/*─────────────────────────────────────────
.skin-pivot .dune-infobox-description,
10 · MEDIA QUERIES & RESPONSIVE ADJUSTMENTS
.skin-pivot .dune-infobox-stats td,
─────────────────────────────────────────*/
.skin-pivot .dune-infobox-stats th,
@media (max-width: 768px) {
.skin-pivot table.infobox-dune td,
  :root {
.skin-pivot table.infobox-dune th,
    --nav-height: 40px;
.skin-pivot .game-table td,
    --spacing-lg: 16px;
.skin-pivot .game-table th,
    --spacing-xl: 20px;
.skin-pivot .dune-card-description,
  }
.skin-pivot .dune-card-infobox td,
 
.skin-pivot .dune-card-infobox th {
  .skin-pivot h1 { font-size: var(--font-size-xl); }
  background-color: #161618 !important;
  .skin-pivot h2 { font-size: var(--font-size-lg); }
  color: #e2d3ae !important;
 
  border-color: #333 !important;
  .skin-pivot .navbar-nav > li > a {
    padding: 8px 16px;
    font-size: var(--font-size-sm);
    letter-spacing: 1px;
  }
}
}

Latest revision as of 13:02, 23 May 2025

/**********************************************************
 *  Enhanced Pivot skin – Dune Awakening UI inspired (v3)
 *  Complete overhaul for game-accurate aesthetics
 **********************************************************/
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@400;500;600;700&display=swap');

/*─────────────────────────────────────────
 1 · ENHANCED DESIGN TOKENS
─────────────────────────────────────────*/
:root{
  /* Core Dune palette - richer, more vibrant */
  --dune-black: rgba(8, 6, 12, 0.95);
  --dune-panel-bg-dark: rgba(0, 0, 2, 0.9);
  --dune-panel-bg-light: rgba(22, 22, 24, 0.6);
  --dune-dark: rgba(20, 18, 28, 0.85);
  --dune-darker: rgba(10, 8, 16, 0.9);
  
  /* Enhanced gold spectrum */
  --dune-gold: #fce7c8;
  --dune-gold-bright: #fff4e6;
  --dune-gold-hover: #E3BB7A;
  --dune-gold-dark: #A07B40;
  --dune-gold-glow: rgba(252, 231, 200, 0.4);
  
  /* Text hierarchy */
  --text-primary: #E8E8E8;
  --text-secondary: #C8C8C8;
  --text-title: #fce7c8;
  --text-inactive: #666666;
  --text-highlight: #FFFFFF;
  --text-error: #ff4444;
  
  /* Spacing system */
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 20px;
  --spacing-xl: 24px;
  --spacing-xxl: 32px;
  
  /* Borders & effects */
  --border-thin: 1px;
  --border-medium: 2px;
  --border-thick: 3px;
  --border-radius-sm: 3px;
  --border-radius-lg: 6px;
  --border-angle: 30deg;
  
  /* Enhanced shadows */
  --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 30px var(--dune-gold-glow);
  
  /* Typography - game-inspired fonts */
  --font-primary: "Rajdhani", "Segoe UI", sans-serif;
  --font-display: "Orbitron", "Arial Black", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  
  /* Layout */
  --nav-height: 48px;
  --sidebar-width: 280px;
}

/*─────────────────────────────────────────
 2 · ENHANCED RESET & BODY
─────────────────────────────────────────*/
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body.skin-pivot {
  background: 
    /* Tech overlay pattern */
    radial-gradient(circle at 20% 50%, rgba(252, 231, 200, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(252, 231, 200, 0.02) 0%, transparent 50%),
    /* Main background */
    url('https://dunedb.com/images/5/57/DuneDB_Background.jpg') no-repeat center/cover fixed;
  color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.5;
  font-size: 16px;
  position: relative;
}

/* Animated background overlay */
body.skin-pivot::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(252, 231, 200, 0.03) 2px,
      rgba(252, 231, 200, 0.03) 4px
    );
  pointer-events: none;
  z-index: 1;
  animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/*─────────────────────────────────────────
 3 · ENHANCED TRANSPARENT WRAPPERS
─────────────────────────────────────────*/
.skin-pivot #content,
.skin-pivot .mw-body,
.skin-pivot .mw-content-ltr,
.skin-pivot .mw-content-rtl {
  background: transparent;
  padding: var(--spacing-xl);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Remove all default backgrounds */
.skin-pivot .off-canvas-wrap,
.skin-pivot .docs-wrap,
.skin-pivot .inner-wrap,
#page-base, .page-base,
#main-section.main-section,
#page-content,
.row, .columns,
#sidebar.large-2.medium-3.columns.hide-for-small.hide-for-print,
.exit-off-canvas {
  background: transparent !important;
  border: none !important;
  overflow: visible !important;
}

footer, .footer, #footer, .mw-footer,
#mw-footer-container, #mw-footer,
#catlinks, .catlinks, .printfooter,
#mw-data-after-content {
  background: transparent !important;
  border: none !important;
  color: var(--dune-gold) !important;
  margin-top: var(--spacing-xxl);
}

/*─────────────────────────────────────────
 4 · ENHANCED NAVIGATION
─────────────────────────────────────────*/
/* Main navbar with hexagonal design */
.skin-pivot .navbar {
  background: linear-gradient(90deg, 
    var(--dune-darker) 0%, 
    rgba(10, 8, 16, 0.95) 50%, 
    var(--dune-darker) 100%
  ) !important;
  border: none !important;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

/* Hexagonal border effect */
.skin-pivot .navbar::before,
.skin-pivot .navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--border-medium);
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--dune-gold) 10%, 
    var(--dune-gold-hover) 50%, 
    var(--dune-gold) 90%, 
    transparent 100%
  );
  animation: navGlow 3s ease-in-out infinite;
}

@keyframes navGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Navbar links with enhanced styling */
.skin-pivot .navbar-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: var(--spacing-xs);
}

.skin-pivot .navbar-nav > li > a {
  color: var(--dune-gold) !important;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 24px;
  margin: 0;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover effect with sliding background */
.skin-pivot .navbar-nav > li > a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(252, 231, 200, 0.1) 50%, 
    transparent 100%
  );
  transition: left 0.3s ease;
}

.skin-pivot .navbar-nav > li > a:hover {
  color: var(--dune-gold-bright) !important;
  text-shadow: 0 0 10px var(--dune-gold-glow);
}

.skin-pivot .navbar-nav > li > a:hover::before {
  left: 100%;
}

.skin-pivot .navbar-nav > li.active > a {
  color: var(--dune-gold-bright) !important;
  background: rgba(252, 231, 200, 0.1);
  box-shadow: 
    inset 0 -3px 0 var(--dune-gold),
    0 0 20px rgba(252, 231, 200, 0.2);
}

/* Mobile tab-bar enhancement */
nav.tab-bar.hide-for-print {
  background: var(--dune-darker);
  border-bottom: var(--border-medium) solid var(--dune-gold);
  color: var(--dune-gold);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 var(--spacing-md);
  box-shadow: var(--shadow-medium);
}

/*─────────────────────────────────────────
 5 · ENHANCED TYPOGRAPHY
─────────────────────────────────────────*/
/* Headings with game-style treatment */
.skin-pivot h1,
.skin-pivot h2,
.skin-pivot h3,
.skin-pivot h4,
.skin-pivot h5,
.skin-pivot h6 {
  font-family: var(--font-display);
  color: var(--dune-gold);
  font-weight: 700;
  text-transform: uppercase;
  margin: 1.5em 0 0.75em 0;
  position: relative;
  letter-spacing: 1px;
}

.skin-pivot h1 {
  font-size: var(--font-size-xxl);
  background: linear-gradient(135deg, var(--dune-gold) 0%, var(--dune-gold-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px var(--dune-gold-glow);
}

.skin-pivot h2 {
  font-size: var(--font-size-xl);
  color: var(--dune-gold);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid rgba(252, 231, 200, 0.3);
}

.skin-pivot h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--dune-gold);
  box-shadow: 0 0 10px var(--dune-gold-glow);
}

/* Enhanced links */
.skin-pivot a {
  color: var(--dune-gold);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.skin-pivot a:hover {
  color: var(--dune-gold-bright);
  text-shadow: 0 0 5px var(--dune-gold-glow);
}

/* Content links with underline animation */
.mw-body-content a {
  display: inline-block;
  position: relative;
}

.mw-body-content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dune-gold);
  transition: width 0.3s ease;
}

.mw-body-content a:hover::after {
  width: 100%;
}

/*─────────────────────────────────────────
 6 · ENHANCED FORM ELEMENTS
─────────────────────────────────────────*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea,
select {
  background: rgba(0, 0, 2, 0.8);
  border: 2px solid rgba(252, 231, 200, 0.3);
  color: var(--text-primary);
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--dune-gold);
  box-shadow: 0 0 10px var(--dune-gold-glow);
  background: rgba(0, 0, 2, 0.9);
}

/* Enhanced buttons */
button,
.button,
input[type="submit"],
input[type="button"] {
  background: linear-gradient(135deg, rgba(252, 231, 200, 0.2) 0%, rgba(252, 231, 200, 0.1) 100%);
  border: 2px solid var(--dune-gold);
  color: var(--dune-gold);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

button:hover,
.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: linear-gradient(135deg, rgba(252, 231, 200, 0.3) 0%, rgba(252, 231, 200, 0.2) 100%);
  color: var(--dune-gold-bright);
  box-shadow: 0 0 20px var(--dune-gold-glow);
  transform: translateY(-2px);
}

/*─────────────────────────────────────────
 7 · RESPONSIVE GRID SYSTEM
─────────────────────────────────────────*/
.responsive-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: stretch;
  width: 100%;
  margin: var(--spacing-lg) 0;
  box-sizing: border-box;
}

.responsive-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  min-width: 320px;
}

@media (min-width: 768px) {
  .responsive-col {
    flex: 1 1 calc((100% - var(--spacing-lg)) / 2);
  }
}

@media (min-width: 1024px) {
  .responsive-col {
    flex: 1 1 calc((100% - 2 * var(--spacing-lg)) / 3);
  }
}

.responsive-col .skin-pivot {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
}

/*─────────────────────────────────────────
 8 · UTILITY CLASSES
─────────────────────────────────────────*/
/* Text utilities */
.text-gold { color: var(--dune-gold) !important; }
.text-bright { color: var(--dune-gold-bright) !important; }
.text-glow { text-shadow: 0 0 10px var(--dune-gold-glow); }

/* Background utilities */
.bg-dark { background: var(--dune-dark) !important; }
.bg-darker { background: var(--dune-darker) !important; }
.bg-panel { background: var(--dune-panel-bg-dark) !important; }

/* Border utilities */
.border-gold { border-color: var(--dune-gold) !important; }
.border-glow { box-shadow: 0 0 10px var(--dune-gold-glow) !important; }

/* Animation utilities */
.animate-pulse { animation: techPulse 2s ease-in-out infinite; }
.animate-glow { animation: borderGlow 3s ease-in-out infinite; }
.animate-slide { animation: slideGlow 3s ease-in-out infinite; }

/*─────────────────────────────────────────
 9 · SCROLLBAR STYLING
─────────────────────────────────────────*/
::-webkit-scrollbar {
  width: 12px;
  background: rgba(0, 0, 2, 0.8);
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 2, 0.8);
  border: 1px solid rgba(252, 231, 200, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--dune-gold-dark) 0%, var(--dune-gold-hover) 100%);
  border: 1px solid var(--dune-gold);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--dune-gold-hover) 0%, var(--dune-gold) 100%);
}

/*─────────────────────────────────────────
 10 · MEDIA QUERIES & RESPONSIVE ADJUSTMENTS
─────────────────────────────────────────*/
@media (max-width: 768px) {
  :root {
    --nav-height: 40px;
    --spacing-lg: 16px;
    --spacing-xl: 20px;
  }
  
  .skin-pivot h1 { font-size: var(--font-size-xl); }
  .skin-pivot h2 { font-size: var(--font-size-lg); }
  
  .skin-pivot .navbar-nav > li > a {
    padding: 8px 16px;
    font-size: var(--font-size-sm);
    letter-spacing: 1px;
  }
}