Actions

MediaWiki

Pivot.css: Difference between revisions

From Dune Awakening DB

mNo edit summary
mNo edit summary
 
(139 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* FINAL: Dune-Themed Pivot Skin using Approach #1 (No Parallax, 100% Stretch)
/**********************************************************
  1) The gradient covers the entire vertical page, regardless of scroll.
*  Enhanced Pivot skin – Dune Awakening UI inspired (v3)
  2) The footer is transparent, so no white band at the bottom.
*  Complete overhaul for game-accurate aesthetics
  3) All major containers are transparent so the background shows through.
**********************************************************/
*/
@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;
   padding: 0;
   padding: 0;
   height: auto;         /* Let the page grow vertically as needed */
   height: 100%;
   min-height: 100%;     /* Start at least full viewport height */
   min-height: 100%;
  overflow-x: hidden;
}
}


/********************************************/
/* 2) BODY GRADIENT (APPROACH #1: STRETCH)  */
/********************************************/
body.skin-pivot {
body.skin-pivot {
   background-color: #171F23; /* fallback */
   background:  
  /* Linear gradient from dark (75%) to brown */
    /* Tech overlay pattern */
  background: linear-gradient(
    radial-gradient(circle at 20% 50%, rgba(252, 231, 200, 0.02) 0%, transparent 50%),
    to bottom,
    radial-gradient(circle at 80% 80%, rgba(252, 231, 200, 0.02) 0%, transparent 50%),
    #171F23 0%,
     /* Main background */
    #171F23 75%,
    url('https://dunedb.com/images/5/57/DuneDB_Background.jpg') no-repeat center/cover fixed;
     #784220 100%
   color: var(--text-primary);
  ) no-repeat center top;
   font-family: var(--font-primary);
   background-size: 100% 100%;
   line-height: 1.5;
   background-attachment: scroll;
   font-size: 16px;
   color: #F0DFAF;
  position: relative;
   font-family: "Orbitron", sans-serif;
}
}


/************************************************/
/* Animated background overlay */
/* 3) FORCE MAJOR WRAPPERS TO BE TRANSPARENT    */
body.skin-pivot::before {
/************************************************/
  content: '';
.skin-pivot .off-canvas-wrap,
  position: fixed;
.skin-pivot .docs-wrap,
  top: 0;
.skin-pivot .inner-wrap,
  left: 0;
.skin-pivot #page-base,
  right: 0;
.skin-pivot .page-base,
  bottom: 0;
.skin-pivot #main-section.main-section,
  background:
.skin-pivot #page-content,
    repeating-linear-gradient(
.skin-pivot .row,
      0deg,
.skin-pivot .columns,
      transparent,
.skin-pivot #sidebar.large-2.medium-3.columns.hide-for-small.hide-for-print,
      transparent 2px,
.skin-pivot .exit-off-canvas {
      rgba(252, 231, 200, 0.03) 2px,
   background: transparent !important;
      rgba(252, 231, 200, 0.03) 4px
   border: none !important;
    );
  pointer-events: none;
   z-index: 1;
   animation: scanlines 8s linear infinite;
}
}


/***********************************************************/
@keyframes scanlines {
/* 4) FOOTER, CATLINKS, PRINTFOOTER: ALSO TRANSPARENT      */
   0% { transform: translateY(0); }
/***********************************************************/
   100% { transform: translateY(4px); }
.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: #F0DFAF !important;
}
}


/************************************************************/
/*─────────────────────────────────────────
/* 5) MAIN CONTENT OVERLAY BOX (Darkish, slightly transparent) */
3 · ENHANCED TRANSPARENT WRAPPERS
/************************************************************/
─────────────────────────────────────────*/
.skin-pivot #content,
.skin-pivot #content,
.skin-pivot .mw-body,
.skin-pivot .mw-body,
.skin-pivot .mw-content-ltr,
.skin-pivot .mw-content-ltr,
.skin-pivot .mw-content-rtl {
.skin-pivot .mw-content-rtl {
   background-color: #171F23; /* fallback */
   background: transparent;
   background: rgba(23, 31, 35, 0.85);
   padding: var(--spacing-xl);
   padding: 20px;
   margin: 0;
   border-radius: 10px;
   position: relative;
   box-shadow: 0 0 15px rgba(255, 204, 102, 0.3);
   z-index: 2;
  margin-bottom: 20px;
}
}


/***********************************************************/
/* Remove all default backgrounds */
/* 6) ADDITIONAL "DUNE" THEME STYLES (NAV, HEADINGS, ETC.) */
.skin-pivot .off-canvas-wrap,
/***********************************************************/
.skin-pivot .docs-wrap,
 
.skin-pivot .inner-wrap,
/* Navbars */
#page-base, .page-base,
.skin-pivot .navbar,
#main-section.main-section,
.skin-pivot .navbar-default,
#page-content,
.skin-pivot .navbar-inverse {
.row, .columns,
  background-color: #171F23;  /* fallback */
#sidebar.large-2.medium-3.columns.hide-for-small.hide-for-print,
  background: rgba(23, 31, 35, 0.9) !important;
.exit-off-canvas {
  background: transparent !important;
   border: none !important;
   border: none !important;
   color: #F0DFAF !important;
   overflow: visible !important;
}
.skin-pivot .navbar-nav > li > a,
.skin-pivot .dropdown-menu > li > a {
  color: #D97D3A !important;
  font-weight: bold !important;
  text-decoration: none;
}
.skin-pivot .navbar-nav > li > a:hover,
.skin-pivot .dropdown-menu > li > a:hover {
  color: #E28D4F !important;
  text-decoration: underline;
}
}


/* Sidebar & panels */
footer, .footer, #footer, .mw-footer,
.skin-pivot #nav,
#mw-footer-container, #mw-footer,
.skin-pivot #nav-wrapper,
#catlinks, .catlinks, .printfooter,
.skin-pivot .nav-content,
#mw-data-after-content {
.skin-pivot .list-group,
   background: transparent !important;
.skin-pivot .list-group-item {
   border: none !important;
  background-color: #171F23; /* fallback */
   color: var(--dune-gold) !important;
  background: rgba(23, 31, 35, 0.9);
   margin-top: var(--spacing-xxl);
  border: none;
  color: #F0DFAF;
}
.skin-pivot .list-group-item:hover {
  background-color: rgba(23, 31, 35, 1);
}
 
/* Panel/Sidebar headings */
.skin-pivot #nav h3,
.skin-pivot #nav-wrapper h3,
.skin-pivot .panel-heading,
.skin-pivot .nav-content h3 {
  background-color: transparent;
  border: none;
  color: #F8E4B8;
  margin: 10px 0 5px;
  font-weight: bold;
  text-transform: uppercase;
}
 
/* Common styles for all headings in main content without text transformation */
.skin-pivot h1,
.skin-pivot h2,
.skin-pivot h3,
.skin-pivot h4,
.skin-pivot h5,
.skin-pivot h6 {
  color: #F8E4B8;
  font-weight: bold;
  padding-bottom: 5px;
  margin-top: 1em;
  margin-bottom: 0.5em;
  border-bottom: none;
  text-transform: none;
}
 
/* Only H1 and H3 are uppercase and have an underline */
.skin-pivot h1,
.skin-pivot h3 {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
 
.skin-pivot h4,
.skin-pivot h5,
.skin-pivot h6 {
  color: #F8E4B8;
  font-weight: bold;
  padding-bottom: 3px;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: none;
}
 
/* Links site-wide */
.skin-pivot a {
   color: #D97D3A;
  text-decoration: none;
  font-weight: bold;
}
.skin-pivot a:hover {
  color: #E28D4F;
  text-decoration: underline;
}
 
/* Make non-existing page links (redlinks) appear red again */
.skin-pivot a.new,
.skin-pivot a.new:visited {
  color: #BA0000 !important;
   text-decoration: underline;
}
.skin-pivot a.new:hover {
  color: #DD0000 !important;
}
 
/***********************************************************/
/* Additional Pivot Nav Overrides */
/***********************************************************/
.skin-pivot nav.tab-bar.hide-for-print {
   background: rgba(23, 31, 35, 0.9);
  border: none;
  color: #F0DFAF;
  padding: 0.5em;
}
.skin-pivot nav.tab-bar.hide-for-print a {
  color: #D97D3A;
  text-decoration: none;
  font-weight: bold;
}
.skin-pivot nav.tab-bar.hide-for-print a:hover {
  color: #E28D4F;
  text-decoration: underline;
}
 
/* Title link in the middle nav area */
.skin-pivot nav.tab-bar.hide-for-print .title a {
  color: #F8E4B8;
  font-size: 1.2em;
  text-transform: uppercase;
}
 
/* Left/middle/right nav sections inside the tab-bar */
.skin-pivot #left-nav-aside,
.skin-pivot #middle-nav,
.skin-pivot #right-nav-aside {
  background-color: transparent;
  color: #F0DFAF;
}
 
/* Logo element */
.skin-pivot li.name.logo img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
 
/* Search bar in <li class="has-form"> */
.skin-pivot li.has-form input[type="search"] {
  background-color: #1E140A; /* fallback */
  background: rgba(30, 20, 10, 0.8);
  color: #F0DFAF;
  border: 1px solid #D97D3A;
  padding: 0.5em;
  width: 100%;
}
.skin-pivot li.has-form input[type="search"]::placeholder {
  color: #C9B795;
}
 
/* Navigation labels (sidebar) */
.skin-pivot label.sidebar {
  background-color: transparent;
  color: #F8E4B8;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.5em 0;
  display: block;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
   margin-bottom: 0.5em;
}
.skin-pivot li.mw-list-item a {
  color: #D97D3A;
  font-weight: bold;
  text-decoration: none;
  display: block;
  padding: 0.25em 0;
}
.skin-pivot li.mw-list-item a:hover {
  color: #E28D4F;
  text-decoration: underline;
}
 
/***********************************************************/
/* SIDEBAR/HIDING TOOLS (Preserved) */
/***********************************************************/
html body.skin-pivot #p-tb,
html body.skin-pivot #p-tb + ul {
  display: none !important;
}
html body.skin-pivot #p-tb + li {
  display: none !important;
}
li[id^="t-"] {
  display: none !important;
}
}


/***********************************************************/
/*─────────────────────────────────────────
/* Two‑Column Table Overrides (Dark Gray) */
4 · ENHANCED NAVIGATION
/***********************************************************/
─────────────────────────────────────────*/
.skin-pivot table.two-column-table {
/* Main navbar with hexagonal design */
   background-color: #171F23 !important;
.skin-pivot .navbar {
  border: none !important;
   background: linear-gradient(90deg,
  width: 100% !important;
    var(--dune-darker) 0%,  
  table-layout: fixed;
    rgba(10, 8, 16, 0.95) 50%,  
}
    var(--dune-darker) 100%
.skin-pivot table.two-column-table > thead,
   ) !important;
.skin-pivot table.two-column-table > thead > tr,
.skin-pivot table.two-column-table > thead > tr > th,
.skin-pivot table.two-column-table > thead > tr > td {
  background-color: #171F23 !important;
  border: none !important;
  vertical-align: top;
}
.skin-pivot table.two-column-table > tbody,
.skin-pivot table.two-column-table > tbody > tr {
  background-color: #171F23 !important;
  border: none !important;
}
.skin-pivot table.two-column-table > tbody > tr > td,
.skin-pivot table.two-column-table > tbody > tr > th {
   background-color: #171F23 !important;
   border: none !important;
   border: none !important;
   vertical-align: top;
   height: var(--nav-height);
}
/* Vertical divider on first column */
.skin-pivot table.two-column-table > tbody > tr > td:first-child {
  border-right: 2px solid rgba(255, 255, 255, 0.3) !important;
}
.skin-pivot table.two-column-table > tfoot,
.skin-pivot table.two-column-table > tfoot > tr,
.skin-pivot table.two-column-table > tfoot > tr > td,
.skin-pivot table.two-column-table > tfoot > tr > th {
  background-color: #171F23 !important;
  border: none !important;
  vertical-align: top;
}
.skin-pivot table.two-column-table > tbody > tr > td p,
.skin-pivot table.two-column-table > thead > tr > td p,
.skin-pivot table.two-column-table > thead > tr > th p,
.skin-pivot table.two-column-table > tfoot > tr > td p,
.skin-pivot table.two-column-table > tfoot > tr > th p {
  margin: 0;
  padding: 0;
  background-color: #171F23 !important;
}
 
/***********************************************************/
/* Responsive: Switch Two‑Column to Single‑Column */
/***********************************************************/
@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,
  .skin-pivot table.two-column-table > tbody > tr > th {
    display: block;
    width: 100%;
    border: none !important;
    box-sizing: border-box;
    vertical-align: top;
  }
}
 
/***********************************************************/
/* Demo Test Table (Scoped to Pivot Skin) */
/***********************************************************/
.skin-pivot table.demo-test-table {
  width: 100% !important;
  table-layout: fixed;
  border-collapse: collapse;
  border: 2px solid red !important;
  background-color: #222 !important;
}
.skin-pivot table.demo-test-table td,
.skin-pivot table.demo-test-table tr {
  vertical-align: top;
  text-align: left !important;
  padding: 0.5em !important;
  border: 1px dotted yellow !important;
}
.skin-pivot table.demo-test-table th {
  vertical-align: top;
  text-align: left !important;
  padding: 0.5em !important;
  border: 1px dotted yellow !important;
}
 
/***********************************************************/
/* Dune Theme Special Header with Pointed Effect          */
/***********************************************************/
.skin-pivot .dune-box {
  height: auto;  /* Allow height to adjust to content */
  line-height: 1.5rem;
  border-top: 3px solid #F8E4B8;
  border-bottom: 3px solid #F8E4B8;
  width: fit-content;
  padding: 0.2rem 0;
  text-align: center;
   display: flex;
   display: flex;
   align-items: center; /* Vertically centers content */
   align-items: center;
   justify-content: center; /* Horizontally centers content */
   justify-content: center;
  font-family: sans-serif;
  color: #F8E4B8;
  flex-grow: 1; /* Allows it to expand */
  font-size: 1.5rem; /* Adjust font size as needed */
}
.skin-pivot .dune-box::before {
  content: '';
  display: inline-block;
   position: relative;
   position: relative;
   left: -0.5em; /* Adjust to position relative to the box */
   box-shadow: var(--shadow-medium);
  transform: rotate(-45deg);
   overflow: hidden;
  border-top: 3px solid #F8E4B8;
  border-left: 3px solid #F8E4B8;
  width: 2em !important;
   height: 2em !important;
}
}
.skin-pivot .dune-box::after {
 
/* Hexagonal border effect */
.skin-pivot .navbar::before,
.skin-pivot .navbar::after {
   content: '';
   content: '';
   display: inline-block;
   position: absolute;
   position: relative;
  bottom: 0;
   right: -0.5em; /* Adjust to position relative to the box */
   left: 0;
   transform: rotate(135deg);
   right: 0;
   border-top: 3px solid #F8E4B8;
   height: var(--border-medium);
  border-left: 3px solid #F8E4B8;
   background: linear-gradient(90deg,
   width: 2em !important;
    transparent 0%,
   height: 2em !important;
    var(--dune-gold) 10%,
    var(--dune-gold-hover) 50%,
    var(--dune-gold) 90%,
    transparent 100%
   );
   animation: navGlow 3s ease-in-out infinite;
}
}


/***********************************************************/
@keyframes navGlow {
/* No-Style Table Overrides (transparent background, no border) */
  0%, 100% { opacity: 0.6; }
/***********************************************************/
   50% { opacity: 1; }
.skin-pivot table.nostyle-table {
  background-color: transparent !important;
   border: none !important;
  width: auto !important;
  table-layout: auto;
}
}


/* Remove borders / backgrounds on thead */
/* Navbar links with enhanced styling */
.skin-pivot table.nostyle-table > thead,
.skin-pivot .navbar-nav {
.skin-pivot table.nostyle-table > thead > tr,
  display: flex;
.skin-pivot table.nostyle-table > thead > tr > th,
   justify-content: center;
.skin-pivot table.nostyle-table > thead > tr > td {
   width: 100%;
   background-color: transparent !important;
   gap: var(--spacing-xs);
   border: none !important;
   vertical-align: top;
}
}


/* Remove borders / backgrounds on tbody */
.skin-pivot .navbar-nav > li > a {
.skin-pivot table.nostyle-table > tbody,
   color: var(--dune-gold) !important;
.skin-pivot table.nostyle-table > tbody > tr {
   font-family: var(--font-display);
   background-color: transparent !important;
   font-weight: 600;
  border: none !important;
   text-transform: uppercase;
}
   letter-spacing: 2px;
 
  padding: 12px 24px;
/* Remove borders / backgrounds on each cell of tbody */
.skin-pivot table.nostyle-table > tbody > tr > td,
.skin-pivot table.nostyle-table > tbody > tr > th {
  background-color: transparent !important;
   border: none !important;
  vertical-align: top;
}
 
/* Remove borders / backgrounds on tfoot */
.skin-pivot table.nostyle-table > tfoot,
.skin-pivot table.nostyle-table > tfoot > tr,
.skin-pivot table.nostyle-table > tfoot > tr > td,
.skin-pivot table.nostyle-table > tfoot > tr > th {
   background-color: transparent !important;
   border: none !important;
   vertical-align: top;
}
 
/* Eliminate margins/padding for any <p> within the table cells */
.skin-pivot table.nostyle-table > tbody > tr > td p,
.skin-pivot table.nostyle-table > thead > tr > td p,
.skin-pivot table.nostyle-table > thead > tr > th p,
.skin-pivot table.nostyle-table > tfoot > tr > td p,
.skin-pivot table.nostyle-table > tfoot > tr > th p {
   margin: 0;
   margin: 0;
  padding: 0;
  background-color: transparent !important;
}
/***********************************************************/
/* 8) DUNE-STYLE Infobox Table – Overrides Pivot Table Rules */
/***********************************************************/
.skin-pivot table.infobox-dune {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-bottom: 0.5em !important;
 
  background-color: #262626 !important;
  border: 1px solid #444 !important;
  border-radius: 4px !important;
  table-layout: auto;
}
.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;
  vertical-align: middle !important;
  background-color: #262626 !important;
  text-align: left !important;
}
.skin-pivot table.infobox-dune td {
  text-align: right !important;
}
.skin-pivot table.infobox-dune tr:last-child th,
.skin-pivot table.infobox-dune tr:last-child td {
  border-bottom: none !important;
}
/* ===================================================== */
/* DUNE-THEMED MAIN CARD (Card Module Styles)          */
/* ===================================================== */
.dune-card {
   position: relative;
   position: relative;
   background-color: #1c1c1c;
   transition: all 0.3s ease;
   color: #e2d3ae;
   overflow: hidden;
  /* Remove the old fixed width: 400px */
  width: auto !important;
  max-width: 100% !important;  /* Ensures it can fill its parent on small screens */
  padding: 16px;
  margin: 1em;
  border: 1px solid #e2d3ae;
  border-radius: 6px;
  box-sizing: border-box;
}
}


.dune-card-decoration {
/* Hover effect with sliding background */
.skin-pivot .navbar-nav > li > a::before {
  content: '';
   position: absolute;
   position: absolute;
   top: 0;
   top: 0;
   left: 0;
   left: -100%;
   width: 100%;
   width: 100%;
   height: 100%;
   height: 100%;
   pointer-events: none;
   background: linear-gradient(90deg,
  border: 2px solid #e2d3ae;
    transparent 0%,
   border-radius: 6px;
    rgba(252, 231, 200, 0.1) 50%,
   transform: translate(4px, 4px);
    transparent 100%
   );
   transition: left 0.3s ease;
}
}


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


.dune-card-label {
.skin-pivot .navbar-nav > li > a:hover::before {
  color: #b6a896;
   left: 100%;
  font-size: 0.8em;
  text-transform: uppercase;
  margin-bottom: 6px;
  border-bottom: 1px solid #444;
   padding-bottom: 4px;
}
}


.dune-card-title {
.skin-pivot .navbar-nav > li.active > a {
   margin: 0;
   color: var(--dune-gold-bright) !important;
   font-size: 1.4em;
   background: rgba(252, 231, 200, 0.1);
   color: #e2d3ae;
   box-shadow:  
  text-transform: uppercase;
    inset 0 -3px 0 var(--dune-gold),
  border-bottom: 1px solid #444;
    0 0 20px rgba(252, 231, 200, 0.2);
  padding-bottom: 4px;
  margin-bottom: 8px;
}
}


.dune-card-image {
/* Mobile tab-bar enhancement */
   text-align: center;
nav.tab-bar.hide-for-print {
   margin-bottom: 8px;
  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);
}
}


.dune-card-description {
/*─────────────────────────────────────────
  font-size: 0.9em;
5 · ENHANCED TYPOGRAPHY
  text-align: left;
─────────────────────────────────────────*/
  line-height: 1.4;
/* Headings with game-style treatment */
   background-color: #262626;
.skin-pivot h1,
  border-radius: 4px;
.skin-pivot h2,
   border: 1px solid #444;
.skin-pivot h3,
  padding: 10px;
.skin-pivot h4,
  margin-bottom: 10px;
.skin-pivot h5,
  width: 100%;
.skin-pivot h6 {
  box-sizing: border-box;
   font-family: var(--font-display);
   display: block !important;
   color: var(--dune-gold);
   height: auto !important;
   font-weight: 700;
   max-height: none !important;
   text-transform: uppercase;
   overflow: visible !important;
   margin: 1.5em 0 0.75em 0;
   white-space: normal;
   position: relative;
   letter-spacing: 1px;
}
}


.dune-card-locked {
.skin-pivot h1 {
   background-color: #262626;
   font-size: var(--font-size-xxl);
   border: 1px solid #444;
   background: linear-gradient(135deg, var(--dune-gold) 0%, var(--dune-gold-hover) 100%);
   border-radius: 4px;
   -webkit-background-clip: text;
   text-align: center;
   -webkit-text-fill-color: transparent;
   padding: 8px;
   background-clip: text;
   margin-bottom: 12px;
   text-shadow: 0 0 30px var(--dune-gold-glow);
}
}


.dune-card-locked-label {
.skin-pivot h2 {
   font-size: 0.9em;
   font-size: var(--font-size-xl);
   margin-bottom: 4px;
  color: var(--dune-gold);
   text-align: center;
   padding-bottom: var(--spacing-sm);
   border-bottom: 2px solid rgba(252, 231, 200, 0.3);
}
}


.dune-card-locked-icon {
.skin-pivot h2::after {
   color: #b6a896;
  content: '';
   margin-right: 4px;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
   height: 2px;
   background: var(--dune-gold);
  box-shadow: 0 0 10px var(--dune-gold-glow);
}
}


.dune-card-infobox table {
/* Enhanced links */
   width: 100%;
.skin-pivot a {
  border-collapse: collapse;
   color: var(--dune-gold);
   margin-bottom: 0.5em;
   font-weight: 500;
   background-color: #262626;
   text-decoration: none;
   border: 1px solid #444;
   transition: all 0.2s ease;
   border-radius: 4px;
   position: relative;
  table-layout: auto;
}
}


.dune-card-infobox th,
.skin-pivot a:hover {
.dune-card-infobox td {
   color: var(--dune-gold-bright);
  padding: 6px 8px;
   text-shadow: 0 0 5px var(--dune-gold-glow);
  font-size: 0.85em;
   color: #e2d3ae;
  border-bottom: 1px solid #3a3a3a;
  vertical-align: middle;
  background-color: #262626;
  text-align: left;
}
 
.dune-card-infobox td {
   text-align: right;
}
 
.dune-card-infobox tr:last-child th,
.dune-card-infobox tr:last-child td {
  border-bottom: none;
}
}


.dune-card-infobox .icon {
/* Content links with underline animation */
.mw-body-content a {
   display: inline-block;
   display: inline-block;
   width: 1.5em;
   position: relative;
  text-align: center;
  margin-right: 4px;
}
}


.dune-card-infobox .infobox-child {
.mw-body-content a::after {
  padding-left: 1.8em;
   content: '';
}
 
/***********************************************************/
/* 9) DUNE-INFOBOX MODULE STYLES (Angled Container)        */
/***********************************************************/
.skin-pivot .dune-infobox {
  position: relative;
  background-color: #1c1c1c;
  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);
}
}


/* =========== Here are the 'omitted' child rules =========== */
.mw-body-content a:hover::after {
 
   width: 100%;
/* Toplevel label (above the title) */
.skin-pivot .dune-infobox-toplabel {
  color: #b6a896;
  font-size: 0.8em;
  text-transform: uppercase;
  margin-bottom: 6px;
  border-bottom: 1px solid #444;
  padding-bottom: 4px;
}
 
/* Main infobox title line */
.skin-pivot .dune-infobox-title {
   margin: 0;
  font-size: 1.4em;
  color: #e2d3ae;
  text-transform: uppercase;
  border-bottom: 1px solid #444;
  padding-bottom: 4px;
  margin-bottom: 8px;
}
}


/* Image block */
/*─────────────────────────────────────────
.skin-pivot .dune-infobox-image {
6 · ENHANCED FORM ELEMENTS
   text-align: center;
─────────────────────────────────────────*/
   margin-bottom: 8px;
input[type="text"],
}
input[type="password"],
.skin-pivot .dune-infobox-image img {
input[type="email"],
  max-width: 100%;
input[type="search"],
   max-height: 150px;
textarea,
   object-fit: contain;
select {
   border: 1px solid #444;
   background: rgba(0, 0, 2, 0.8);
  border-radius: 4px;
   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;
}
}


/* Main description area */
input[type="text"]:focus,
.skin-pivot .dune-infobox-description {
input[type="password"]:focus,
  font-size: 0.9em;
input[type="email"]:focus,
  line-height: 1.4;
input[type="search"]:focus,
  margin-bottom: 12px;
textarea:focus,
   background-color: #262626;
select:focus {
   border-radius: 4px;
   outline: none;
   padding: 8px;
   border-color: var(--dune-gold);
   border: 1px solid #444;
   box-shadow: 0 0 10px var(--dune-gold-glow);
   background: rgba(0, 0, 2, 0.9);
}
}


/* 'Locked' block (like an info box about locked features) */
/* Enhanced buttons */
.skin-pivot .dune-infobox-locked-block {
button,
   background-color: #262626;
.button,
   border: 1px solid #444;
input[type="submit"],
  border-radius: 4px;
input[type="button"] {
  text-align: center;
   background: linear-gradient(135deg, rgba(252, 231, 200, 0.2) 0%, rgba(252, 231, 200, 0.1) 100%);
   padding: 8px;
   border: 2px solid var(--dune-gold);
  margin-bottom: 12px;
   color: var(--dune-gold);
}
   padding: var(--spacing-sm) var(--spacing-lg);
.skin-pivot .dune-infobox-locked-header {
   font-family: var(--font-display);
  font-size: 0.9em;
   font-weight: 600;
   margin-bottom: 4px;
   text-transform: uppercase;
}
   letter-spacing: 1px;
.skin-pivot .lock-icon {
   cursor: pointer;
  color: #b6a896;
   transition: all 0.3s ease;
  margin-right: 4px;
   position: relative;
}
   overflow: hidden;
.skin-pivot .dune-infobox-locked-desc {
   font-size: 1em;
  color: #e2d3ae;
}
 
/* Stats table for the infobox */
.skin-pivot .dune-infobox-stats {
  width: 100%;
   border-collapse: collapse;
   margin-bottom: 0.5em;
   background-color: #262626;
  border: 1px solid #444;
  border-radius: 4px;
}
.skin-pivot .dune-infobox-stats th,
.skin-pivot .dune-infobox-stats td {
   padding: 6px 8px;
   font-size: 0.85em;
  border-bottom: 1px solid #3a3a3a;
  color: #e2d3ae;
}
.skin-pivot .dune-infobox-stats th {
  text-align: left;
   font-weight: normal;
}
.skin-pivot .dune-infobox-stats td {
  text-align: right;
}
.skin-pivot .dune-infobox-stats tr:last-child th,
.skin-pivot .dune-infobox-stats tr:last-child td {
   border-bottom: none;
}
}


/* Inline icon usage, e.g. for bullets or small images */
button:hover,
.skin-pivot .icon-inline {
.button:hover,
  display: inline-block;
input[type="submit"]:hover,
  width: 1.5em;
input[type="button"]:hover {
  text-align: center;
   background: linear-gradient(135deg, rgba(252, 231, 200, 0.3) 0%, rgba(252, 231, 200, 0.2) 100%);
   margin-right: 4px;
   color: var(--dune-gold-bright);
}
   box-shadow: 0 0 20px var(--dune-gold-glow);
.skin-pivot .ingredient-list {
   transform: translateY(-2px);
  margin: 0;
   padding-left: 1.2em;
   font-size: 0.85em;  /* match your table’s text size */
  line-height: 1.4;
  list-style-type: square;
   text-align: left;
}
}


/***********************************************************/
/*─────────────────────────────────────────
/* FLEX-BASED LAYOUT: Column 1 = 400px, 2 & 3 flexible    */
7 · RESPONSIVE GRID SYSTEM
/* Stacks on screens under 600px                          */
─────────────────────────────────────────*/
/***********************************************************/
 
/* The outer container is a flex row */
.responsive-container {
.responsive-container {
   display: flex;
   display: flex;
   flex-wrap: nowrap;         /* columns stay on one row unless small screen */
   flex-wrap: wrap;
   align-items: stretch;       /* match tallest column's height on large screens */
  gap: var(--spacing-lg);
   align-items: stretch;
   width: 100%;
   width: 100%;
   margin-top: 1em;           /* optional */
   margin: var(--spacing-lg) 0;
   margin-bottom: 1em;
   box-sizing: border-box;
  overflow-x: auto;           /* horizontal scroll if total columns exceed container width */
}
}


/* Each column is a vertical flex container */
.responsive-col {
.responsive-col {
   display: flex;
   display: flex;
   flex-direction: column;    /* stack child cards top-to-bottom */
   flex-direction: column;
  box-sizing: border-box;
   flex: 1 1 100%;
   margin-right: 1em;         /* space between columns */
   min-width: 320px;
}
.responsive-col:last-child {
   margin-right: 0;           /* no margin on the last column */
}
}


/* Column 1: fixed at 400px */
@media (min-width: 768px) {
.responsive-col.col1 {
  .responsive-col {
  flex: 0 0 400px/* no shrinking/growing, exactly 400px wide */
    flex: 1 1 calc((100% - var(--spacing-lg)) / 2);
   }
}
}


/* Columns 2 & 3: flexible, min base 400px */
@media (min-width: 1024px) {
.responsive-col.col2,
  .responsive-col {
.responsive-col.col3 {
    flex: 1 1 calc((100% - 2 * var(--spacing-lg)) / 3);
  flex: 1 1 400px;  /* can grow/shrink, base ~400px */
   }
   min-width: 0;      /* allow shrink if space is tight */
}
}


/* Let the last pivot in each column stretch to fill leftover vertical space */
.responsive-col .skin-pivot {
.responsive-col .skin-pivot:last-child {
  flex: 1 1 auto;
   display: flex;
   display: flex;
   flex-direction: column;
   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);
}
}
.responsive-col .skin-pivot:last-child .dune-card {
 
   flex: 1 1 auto;
::-webkit-scrollbar-track {
   display: flex;
   background: rgba(0, 0, 2, 0.8);
  flex-direction: column;
   border: 1px solid rgba(252, 231, 200, 0.1);
}
}


/* Make sure .dune-card isn't stuck at 400px */
::-webkit-scrollbar-thumb {
.dune-card {
  background: linear-gradient(180deg, var(--dune-gold-dark) 0%, var(--dune-gold-hover) 100%);
   width: auto !important;
   border: 1px solid var(--dune-gold);
   max-width: 100% !important;
   border-radius: 2px;
}
}


/* On very narrow screens (< 600px), stack columns in one column */
::-webkit-scrollbar-thumb:hover {
@media screen and (max-width: 600px) {
  background: linear-gradient(180deg, var(--dune-gold-hover) 0%, var(--dune-gold) 100%);
  .responsive-container {
}
    flex-wrap: wrap;    /* allow columns to break onto new lines */
    overflow-x: visible; /* no need horizontal scroll once they wrap */
  }


  .responsive-col.col1,
/*─────────────────────────────────────────
   .responsive-col.col2,
10 · MEDIA QUERIES & RESPONSIVE ADJUSTMENTS
  .responsive-col.col3 {
─────────────────────────────────────────*/
     flex: 1 1 100%;
@media (max-width: 768px) {
     margin-right: 0;
   :root {
    --nav-height: 40px;
     --spacing-lg: 16px;
     --spacing-xl: 20px;
   }
   }
   .skin-pivot .dune-card {
 
     margin: 1em 0 !important;
  .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;
   }
   }
}
}

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;
  }
}