MediaWiki:Vector.css: Difference between revisions

From CoraTO Wiki - Official Wiki
Jump to navigation Jump to search
No edit summary
Tags: Manual revert Reverted
No edit summary
Tag: Reverted
Line 1: Line 1:
/* ========================================
/* ========================================
   CORA TO WIKI - VECTOR LEGACY SPECIFIC STYLES
   CORA TO WIKI - GENERAL WIKI STYLES
   Styles specific to Vector Legacy 2010 skin
   Styles applicable to all skins
   ======================================== */
   ======================================== */


/***********************
/* CSS NAVIGATION GUIDE
* Palette (inherits if available)
  ========================================
***********************/
 
  QUICK NAVIGATION - Use Ctrl+F to find sections:
 
  1. THEME FOUNDATION
      • [VARIABLES] - CSS custom properties & color system
      • [GLOBAL] - Base styles & resets
 
  2. PAGE STRUCTURE
      • [HERO] - Main banner/hero section
      • [NAVIGATION] - Tab navigation system
      • [CONTENT] - Content sections & animations
      • [GRIDS] - Layout grids (highlights, info, cards)
      • [SIDEBAR] - Sidebar components
 
  3. UI COMPONENTS
      • [TYPOGRAPHY] - Headings & text styling
      • [LINKS] - Link states & interactions
      • [BUTTONS] - Button styles & hover effects
      • [TABLES] - WikiTable styling
      • [FORMS] - Input fields & form elements
 
  4. MEDIAWIKI SPECIFIC
      • [MW-ELEMENTS] - MediaWiki specific selectors
      • [MW-COMPATIBILITY] - Editor & system integration
 
  5. UTILITIES & EFFECTS
      • [UTILITIES] - Helper classes & effects
      • [ANIMATIONS] - Keyframe animations
 
  6. RESPONSIVE DESIGN
      • [RESPONSIVE] - Mobile & tablet breakpoints
      • [ACCESSIBILITY] - A11y improvements
      • [PRINT] - Print-friendly styles
 
  HOW TO USE THIS GUIDE:
  - Search for [SECTION] to jump to specific parts
  - Each section has detailed comments explaining functionality
  - CSS variables are defined at the top for easy customization
  - All styles are MediaWiki compatible and responsive
 
  ======================================== */
 
/* [VARIABLES] THEME FOUNDATION - CSS Custom Properties
  ========================================
  Define all colors, spacing, shadows, and design tokens used throughout the theme.
  Modify these variables to customize the entire theme appearance.
  ======================================== */
:root {
:root {
   --cora-vl-primary: var(--primary-pink, #ff6b9d);
   /* PRIMARY BRAND COLORS - Pink Palette  */
   --cora-vl-accent: var(--accent-pink, #ff8fb0);
  --primary-pink: #ff6b9d;
   --cora-vl-bg: rgba(255,255,255,0.96);
  --secondary-pink: #ffc3e0;
   --cora-vl-bg-2: #fff0f7;
   --accent-pink: #ff8fb0;
   --cora-vl-border: rgba(255, 107, 157, 0.25);
  --light-pink: #fff0f7;
   --cora-vl-border-2: #f7d6e6;
  --dark-pink: #d63384;
   --cora-vl-shadow: 0 6px 20px rgba(255, 107, 157, 0.15);
  --pink-gradient: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
   --cora-vl-radius: 14px;
   --pink-glass: rgba(255, 107, 157, 0.15);
   --cora-vl-radius-sm: 10px;
   --pink-shadow: rgba(255, 107, 157, 0.3);
   --cora-vl-space-xs: 4px;
   --pink-border: rgba(255, 107, 157, 0.2);
   --cora-vl-space-sm: 8px;
 
   --cora-vl-space-md: 12px;
  /* ADDITIONAL PINK SCALE  */
   --cora-vl-space-lg: 18px;
  --pink-50: #fff0f6;
  --pink-100: #ffd9e9;
  --pink-200: #ffb3cf;
  --pink-300: #ff8cb6;
  --pink-400: #ff6fa3;
  --pink-500: #ff4f91;
  --pink-600: #e93c81;
  --pink-700: #d02f72;
  --pink-800: #b32561;
  --pink-900: #8d1c4b;
 
  /* NEUTRAL COLORS */
  --text-primary: #2d2d2d;
  --text-secondary: #666666;
   --text-muted: #999999;
  --ink-900: #222;
  --ink-700: #444;
  --ink-500: #666;
  --background-primary: #ffffff;
  --background-secondary: #fafafa;
  --background-tertiary: #f5f5f5;
  --surface: #ffffff;
  --border-color: #e0e0e0;
   --border-light: #f0f0f0;
  --border: rgba(0,0,0,0.08);
 
  /* LAYOUT VARIABLES */
  --sidebar-width: 220px;
  --content-margin: calc(var(--sidebar-width) + 20px);
   --container-max: 1200px;
  --border-radius: 12px;
  --border-radius-small: 8px;
  --radius-lg: 20px;
   --radius-md: 14px;
  --radius-sm: 10px;
   --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
 
  /* SHADOWS AND EFFECTS */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
   --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow: 0 6px 24px rgba(255, 79, 145, 0.18);
  --shadow-pink: 0 4px 20px var(--pink-shadow);
  --shadow-pink-hover: 0 8px 30px var(--pink-shadow);
   --blur-glass: blur(10px);
 
  /* TRANSITIONS */
  --transition-fast: 0.15s ease;
   --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
}


/* ========================================
/* [GLOBAL] BASE STYLES & RESETS
   VECTOR LEGACY SIDEBAR STYLES
  ========================================
   Universal styles, box-sizing, typography, and body background.
  Sets up the foundation for all other styles to build upon.
   ======================================== */
   ======================================== */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, "Noto Sans", sans-serif !important;
  line-height: 1.6 !important;
  color: var(--text-primary) !important;
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100) 40%, var(--pink-200)) !important;
  background-attachment: fixed !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh !important;
}
/* [MEDIAWIKI] COMPATIBILITY WRAPPER - Scoping for MediaWiki pages */
.mw-page-scope {
  padding: 16px;
}


/* Base container */
/* [MEDIAWIKI] UTILITY BANNER - Supports MediaWiki file syntax overlays */
body.skin-vector-legacy #mw-panel {
.utility-banner {
   background: var(--cora-vl-bg);
   position: relative;
   border-right: 2px solid var(--cora-vl-border);
   min-height: 48px;
  box-shadow: var(--cora-vl-shadow);
  padding: var(--cora-vl-space-lg) 0;
}
}


/* Logo area */
.utility-banner > * {
body.skin-vector-legacy #p-logo {
   position: absolute;
   margin: 0 var(--cora-vl-space-md) var(--cora-vl-space-lg);
  top: 0;
  right: 8px;
}
}
body.skin-vector-legacy #p-logo a {
 
/* [HERO] HERO / BANNER SECTION */
.hero {
  background: rgba(255,255,255,0.85);
  border: 2px solid rgba(255, 111, 163, 0.18);
  border-radius: var(--radius-lg);
  max-width: var(--container-max);
  margin: 0 auto 16px auto;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
 
.hero-inner {
  padding: clamp(18px, 3vw, 36px);
  text-align: center;
}
 
.hero-title {
  margin: 8px 0 4px 0;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.hero-subtitle {
  color: var(--ink-500);
  font-size: clamp(14px, 2.2vw, 18px);
}
 
.status-pill {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
}
 
/* Tip Box */
.tip-box {
  background-color: rgba(144, 238, 144, 0.2);
  border-left: 4px solid #4CAF50;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
 
.tip-box::before {
  content: "💡 Tip";
   display: block;
   display: block;
   background-color: var(--cora-vl-bg-2);
  font-weight: bold;
   border: 1px solid var(--cora-vl-border-2);
  margin-bottom: 10px;
   border-radius: var(--cora-vl-radius);
  color: #4CAF50;
   padding: var(--cora-vl-space-md);
}
   transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
 
/* Warning Box */
.warning-box {
   background-color: rgba(255, 165, 0, 0.2);
  border-left: 4px solid #FF9800;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
 
.warning-box::before {
  content: "⚠️ Warning";
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FF9800;
}
 
/* [NAVIGATION] TAB NAVIGATION SYSTEM */
.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
   border: 2px solid rgba(255, 111, 163, 0.18);
  border-radius: var(--radius-lg);
  max-width: var(--container-max);
  margin: 0 auto 16px auto;
  padding: 8px;
  box-shadow: var(--shadow);
}
 
.nav-tab {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
   border-radius: var(--radius-md);
  font-weight: 700;
   color: var(--ink-700);
  background: rgba(255,255,255,0.8);
  border: 2px solid transparent;
  border-left: 3px solid transparent;
  min-width: 120px;
  flex: 1 1 160px;
   transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease, padding .2s ease;
}
}
body.skin-vector-legacy #p-logo a:hover {
 
.nav-tab:hover {
   transform: translateY(-2px);
   transform: translateY(-2px);
   border-color: var(--cora-vl-primary);
   box-shadow: var(--shadow);
   box-shadow: 0 8px 24px rgba(255, 107, 157, 0.18);
  color: var(--pink-900);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
   padding-left: 20px;
}
 
.nav-tab.active {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  color: #fff;
}
 
.nav-tab .short-text {
  display: none;
}
 
/* [CONTENT] CONTENT SECTIONS & ANIMATIONS */
.content {
  max-width: var(--container-max);
  margin: 0 auto;
}
}


/* Portals */
.tab-content {
body.skin-vector-legacy #mw-panel .vector-menu-portal,
  display: none;
body.skin-vector-legacy #mw-panel .portal {
   background: rgba(255,255,255,0.98);
   margin: 0 var(--cora-vl-space-md) var(--cora-vl-space-md);
  border-radius: var(--radius-lg);
   border: 1px solid var(--cora-vl-border-2);
   border: 2px solid rgba(255, 111, 163, 0.18);
   border-radius: var(--cora-vl-radius);
   box-shadow: var(--shadow);
   overflow: hidden;
   padding: clamp(16px, 3vw, 36px);
   background: #fff;
}
   transition: all 0.3s ease;
 
.tab-content.active {
   display: block;
   animation: fadeIn .35s ease;
}
}


/* Default expanded state - keep first portal (usually Navigation) always expanded */
@keyframes fadeIn {
body.skin-vector-legacy #mw-panel .vector-menu-portal:first-of-type,
  from {
body.skin-vector-legacy #mw-panel .portal:first-of-type {
    opacity: 0;
   /* Navigation section stays expanded by default */
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
   }
}
}


/* Auto-collapse other sections on page load */
/* Step List */
body.skin-vector-legacy #mw-panel .vector-menu-portal:not(:first-of-type),
.step-list {
body.skin-vector-legacy #mw-panel .portal:not(:first-of-type) {
  counter-reset: step-counter;
   /* Other sections start collapsed */
  list-style-type: none;
  padding-left: 0;
   margin: 25px 0;
}
}


/* Headings - Now clickable and collapsible */
.step-item {
body.skin-vector-legacy #mw-panel .vector-menu-portal .vector-menu-heading,
body.skin-vector-legacy #mw-panel .portal h3 {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.92em;
  font-weight: 700;
  letter-spacing: .3px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--cora-vl-primary), var(--cora-vl-accent));
  border-bottom: 1px solid var(--cora-vl-border-2);
  text-shadow: 0 1px 2px rgb(0, 0, 0) !important;
  cursor: pointer;
  user-select: none;
   position: relative;
   position: relative;
   transition: background 0.3s ease, transform 0.2s ease;
   padding-left: 50px;
  margin-bottom: 25px;
  counter-increment: step-counter;
}
}


/* Hover effect for headings */
.step-item::before {
body.skin-vector-legacy #mw-panel .vector-menu-portal .vector-menu-heading:hover,
  content: counter(step-counter);
body.skin-vector-legacy #mw-panel .portal h3:hover {
  position: absolute;
   background: linear-gradient(135deg, var(--cora-vl-accent), var(--cora-vl-primary));
  left: 0;
   transform: translateY(-1px);
  top: 0;
  width: 35px;
  height: 35px;
   background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
   color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
}


/* Collapse/Expand indicator */
/* External Link */
body.skin-vector-legacy #mw-panel .vector-menu-portal .vector-menu-heading::after,
.external-link {
body.skin-vector-legacy #mw-panel .portal h3::after {
  color: var(--primary-pink);
   content: '';
  text-decoration: none;
  border-bottom: 1px dashed var(--primary-pink);
  transition: all 0.3s ease;
  padding-right: 20px;
  position: relative;
}
 
.external-link::after {
   content: '';
   position: absolute;
   position: absolute;
   right: 12px;
   right: 0;
   top: 50%;
   top: 0;
  transform: translateY(-50%);
   font-size: 0.8em;
   font-size: 0.8em;
  transition: transform 0.3s ease;
}
}


/* Collapsed state indicator */
.external-link:hover {
body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed .vector-menu-heading::after,
  color: var(--dark-pink);
body.skin-vector-legacy #mw-panel .portal.collapsed h3::after {
  border-bottom-color: var(--dark-pink);
   transform: translateY(-50%) rotate(-90deg);
}
 
.section-header {
   text-align: center;
  margin-bottom: clamp(12px, 2.5vw, 24px);
}
}


/* Lists - Now collapsible */
.section-header h2 {
body.skin-vector-legacy #mw-panel .vector-menu-content ul,
body.skin-vector-legacy #mw-panel .portal .body ul {
  list-style: none;
   margin: 0;
   margin: 0;
   padding: var(--cora-vl-space-xs) 0;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--ink-900);
  border-bottom: 2px solid var(--pink-500);
  display: inline-block;
   padding-bottom: 6px;
}
 
.section-lead {
  margin-top: 6px;
  color: var(--ink-500);
  font-size: clamp(13px, 2vw, 16px);
}
 
/* [GRIDS] HIGHLIGHTS GRID */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 2vw, 16px);
  margin: 1rem 0;
}
 
/* Quick Stats Grid */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}
 
.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
 
.stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--primary-pink);
}
 
.stat-card p {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
}


/* Collapsible content containers */
.card {
body.skin-vector-legacy #mw-panel .vector-menu-content,
  background: var(--surface);
body.skin-vector-legacy #mw-panel .portal .body {
  border: 1px solid var(--border);
  max-height: none;
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
   overflow: hidden;
   overflow: hidden;
   transition: max-height 0.4s ease, opacity 0.3s ease;
   transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
   opacity: 1;
  padding: 0;
}
 
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
  padding-left: 4px;
}
 
.card-media {
  text-align: center;
  padding-top: 6px;
}
 
.card-body {
  padding: 10px 12px;
}
 
.card-title {
  margin: 0;
  font-size: clamp(14px, 2.2vw, 18px);
  color: var(--ink-900);
  text-align: center;
}
 
/* [GRIDS] INFO GRID */
.info-grid {
  display: grid;
  gap: clamp(10px, 2vw, 16px);
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(12px, 2.5vw, 24px);
}
 
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: clamp(12px, 2.5vw, 18px);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
}
 
.info-card:hover {
   transform: translateY(-2px);
  box-shadow: var(--shadow-light);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
  padding-left: clamp(16px, 3vw, 22px);
}
}


/* Collapsed state */
.inline-list {
body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed .vector-menu-content,
   list-style: none;
body.skin-vector-legacy #mw-panel .portal.collapsed .body {
   max-height: 0 !important;
  opacity: 0;
   padding: 0;
   padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.inline-list li {
  white-space: nowrap;
}
/* [GRIDS] TABLE-LIKE RESPONSIVE COLUMNS */
.wikitable-like {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
}


/* Collapsed portal styling */
.wikitable-like .column {
body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed,
  background: var(--surface);
body.skin-vector-legacy #mw-panel .portal.collapsed {
  border: 1px solid var(--border);
   margin-bottom: var(--cora-vl-space-sm);
  border-left: 3px solid transparent;
   border-radius: var(--radius-md);
  padding: 16px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
}
}


/* Smooth border transition for collapsed state */
.wikitable-like .column:hover {
body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed .vector-menu-heading,
  transform: translateY(-2px);
body.skin-vector-legacy #mw-panel .portal.collapsed h3 {
  box-shadow: var(--shadow-light);
   border-bottom: none;
   background: #fff5fb;
   border-radius: var(--cora-vl-radius);
   border-left-color: var(--primary-pink);
  padding-left: 20px;
}
}


body.skin-vector-legacy #mw-panel .vector-menu-content li,
.wikitable-like ul {
body.skin-vector-legacy #mw-panel .portal .body li {
  margin: 0;
   border-bottom: 1px solid #f3e2ea;
   padding-left: 18px;
}
}
body.skin-vector-legacy #mw-panel .vector-menu-content li:last-child,
 
body.skin-vector-legacy #mw-panel .portal .body li:last-child {
/* [SIDEBAR] SIDEBAR COMPONENTS */
   border-bottom: 0;
.sidebar {
   margin-top: 16px;
}
}


/* Links */
.sidebar-inner {
body.skin-vector-legacy #mw-panel .vector-menu-content a,
   background: var(--surface);
body.skin-vector-legacy #mw-panel .portal .body a {
   border: 1px solid var(--border);
   display: block;
   padding: 8px 14px;
  color: #9a3b5f;
  text-decoration: none;
   border-left: 3px solid transparent;
   border-left: 3px solid transparent;
   transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow);
   transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
}
}
body.skin-vector-legacy #mw-panel .vector-menu-content a:hover,
 
body.skin-vector-legacy #mw-panel .portal .body a:hover {
.sidebar-inner:hover {
   color: var(--cora-vl-primary);
  transform: translateY(-2px);
   box-shadow: var(--shadow-medium);
   background: #fff5fb;
   background: #fff5fb;
   border-left-color: var(--cora-vl-primary);
   border-left-color: var(--primary-pink);
  padding-left: 20px;
}
 
.sidebar-title {
  margin: 0 0 8px 0;
  font-size: clamp(16px, 2.5vw, 20px);
}
 
.sidebar-list {
  margin: 0;
   padding-left: 18px;
   padding-left: 18px;
}
}


/* Scrollbar */
/* [CONTENT] TAB FOOTER / NAVIGATION */
body.skin-vector-legacy #mw-panel::-webkit-scrollbar { width: 6px; }
.tab-footer {
body.skin-vector-legacy #mw-panel::-webkit-scrollbar-track { background: #ffe6f0; }
  display: flex;
body.skin-vector-legacy #mw-panel::-webkit-scrollbar-thumb { background: var(--cora-vl-accent); border-radius: 3px; }
  justify-content: center;
body.skin-vector-legacy #mw-panel::-webkit-scrollbar-thumb:hover { background: var(--cora-vl-primary); }
  margin-top: clamp(12px, 2.5vw, 24px);
 
/* Content spacing (desktop) */
@media (min-width: 1025px) {
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body { margin-left: 220px; }
}
}


/* Responsiveness */
.back-to-top {
@media (max-width: 1024px) {
  display: inline-block;
   body.skin-vector-legacy #content,
  padding: 10px 16px;
   body.skin-vector-legacy .mw-body { margin-left: 190px; }
  font-weight: 700;
   border-radius: 999px;
  text-decoration: none;
  color: #fff;
   background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
}
}


/* Mobile hamburger menu button */
/* Fixed Back to Top Button */
.mobile-hamburger-menu {
.back-to-top-fixed {
  display: none;
   position: fixed;
   position: fixed;
   top: 20px;
   bottom: 20px;
   left: 20px;
   right: 20px;
  z-index: 1002;
   background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
  width: 50px;
   color: white;
  height: 50px;
  width: 40px;
   background: linear-gradient(135deg, var(--cora-vl-primary), var(--cora-vl-accent));
  height: 40px;
   border: none;
   border-radius: 50%;
   border-radius: var(--cora-vl-radius);
   display: flex;
   cursor: pointer;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   justify-content: center;
   align-items: center;
   text-decoration: none;
   gap: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
   box-shadow: var(--cora-vl-shadow);
  opacity: 0.8;
   transition: transform .3s ease, box-shadow .3s ease;
  transition: all 0.3s ease;
   padding: 0;
  z-index: 1000;
}
 
.back-to-top-fixed:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
 
.back-to-top-fixed::before {
  content: '↑';
  font-size: 20px;
}
 
/* [TYPOGRAPHY] HEADINGS STYLE */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-pink) !important;
  font-weight: 700 !important;
  margin-bottom: var(--spacing-md) !important;
  margin-top: var(--spacing-lg) !important;
}
 
h1 {
  background: var(--pink-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 2.5em !important;
}
 
/* Collapsible Elements - Only for page content */
.mw-body .collapsible,
#content .collapsible,
#mw-content-text .collapsible,
button.collapsible {
    background-color: #f1f1f1;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 4px;
    margin-bottom: 5px;
    position: relative;
}
 
.mw-body .collapsible:hover,
#content .collapsible:hover,
#mw-content-text .collapsible:hover,
button.collapsible:hover {
    background-color: #ddd;
}
 
.mw-body .collapsible::after,
#content .collapsible::after,
#mw-content-text .collapsible::after,
button.collapsible::after {
    content: '+';
    font-size: 18px;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
 
.mw-body .collapsible.active::after,
#content .collapsible.active::after,
#mw-content-text .collapsible.active::after,
button.collapsible.active::after {
    content: '-';
}
 
.mw-body .collapsible-content,
#content .collapsible-content,
#mw-content-text .collapsible-content,
button.collapsible + .collapsible-content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: white;
    border-radius: 0 0 4px 4px;
}
 
.mw-body .collapsible-content.active,
#content .collapsible-content.active,
#mw-content-text .collapsible-content.active,
button.collapsible + .collapsible-content.active {
    max-height: 500px;
    padding: 18px;
    border: 1px solid #ddd;
    border-top: none;
    margin-bottom: 15px;
}
 
/* [LINKS] LINKS */
a {
  color: var(--primary-pink) !important;
  text-decoration: none !important;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease !important;
  display: inline-block !important;
  padding: 2px 4px !important;
  border-radius: 4px !important;
  border-left: 3px solid transparent !important;
}
 
a:hover {
  color: var(--dark-pink) !important;
  background: rgba(255, 107, 157, 0.08) !important;
  border-left-color: var(--primary-pink) !important;
  padding-left: 8px !important;
   text-decoration: none !important;
}
 
/* Content area links - enhanced animation */
#mw-content-text a {
  color: #9a3b5f !important;
  text-decoration: none !important;
  display: inline-block !important;
  padding: 2px 4px !important;
  border-radius: 4px !important;
  border-left: 3px solid transparent !important;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease !important;
}
 
#mw-content-text a:hover {
  color: var(--primary-pink) !important;
  background: #fff5fb !important;
  border-left-color: var(--primary-pink) !important;
  padding-left: 8px !important;
  text-decoration: none !important;
}
 
/* [BUTTONS] BUTTONS */
.mw-ui-button,
.oo-ui-buttonElement-button,
button:not(.nav-tab) {
  background: var(--pink-gradient) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--border-radius-small) !important;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: var(--transition-normal) !important;
  box-shadow: var(--shadow-light) !important;
}
 
.mw-ui-button:hover,
.oo-ui-buttonElement-button:hover,
button:not(.nav-tab):hover {
  transform: translateY(-2px) !important;
   box-shadow: var(--shadow-pink-hover) !important;
}
 
/* [TABLES] TABLES (WikiTable + DataTable) */
table.wikitable,
.mw-datatable,
.faq-table {
  background: var(--background-primary) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--border-radius-small) !important;
  box-shadow: var(--shadow-light) !important;
  overflow: hidden !important;
}
 
table.wikitable th,
.mw-datatable th,
.faq-table th {
  background: var(--secondary-pink) !important;
  color: var(--text-primary) !important;
  font-weight: 700 !important;
  padding: var(--spacing-md) !important;
  border-bottom: 2px solid var(--primary-pink) !important;
}
 
table.wikitable td,
.mw-datatable td,
.faq-table td {
  padding: var(--spacing-md) !important;
  border-bottom: 1px solid var(--border-light) !important;
}
 
table.wikitable tr:hover,
.mw-datatable tr:hover,
.faq-table tr:hover {
  background: var(--light-pink) !important;
}
 
/* FAQ Table specific styles */
.faq-table {
  width: 100% !important;
  box-shadow: var(--shadow-medium) !important;
}
 
.faq-table tr:nth-child(odd) td {
  background-color: rgba(255, 107, 157, 0.05) !important;
}
 
.faq-table tr:hover td {
  background-color: rgba(255, 107, 157, 0.1) !important;
}
 
/* [FORMS] FORM ELEMENTS */
input[type="text"],
input[type="search"],
textarea,
select {
  border: 2px solid var(--border-light) !important;
  border-radius: var(--border-radius-small) !important;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  font-family: inherit !important;
   transition: var(--transition-fast) !important;
}
 
input[type="text"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-pink) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2) !important;
}
 
/* [MW-ELEMENTS] SPECIAL MEDIAWIKI ELEMENTS */
.mw-editsection {
  color: var(--accent-pink) !important;
  font-size: 0.8em !important;
}
 
.mw-headline {
  border-bottom: 2px solid var(--pink-border) !important;
   padding-bottom: var(--spacing-sm) !important;
}
 
/* [UTILITIES] UTILITY CLASSES */
.fade-in {
  animation: fadeInUp 0.6s ease-out;
}
 
.pulse {
  animation: pulse 2s infinite;
}
}


.mobile-hamburger-menu:hover {
.glass-effect {
   transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8) !important;
   box-shadow: 0 8px 30px rgba(255, 107, 157, 0.3);
   backdrop-filter: var(--blur-glass) !important;
   border: 1px solid var(--pink-border) !important;
}
}


.mobile-hamburger-menu span {
.pink-gradient-text {
   display: block;
   background: var(--pink-gradient) !important;
  width: 25px;
   -webkit-background-clip: text !important;
  height: 3px;
   -webkit-text-fill-color: transparent !important;
   background: white;
   background-clip: text !important;
   border-radius: 2px;
   transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
}


.mobile-hamburger-menu.active span:nth-child(1) {
/* Shimmer animation */
  transform: rotate(45deg) translate(6px, 6px);
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
}


.mobile-hamburger-menu.active span:nth-child(2) {
/* [RESPONSIVE] RESPONSIVE DESIGN (Breakpoints & Layout) */
   opacity: 0;
@media (max-width: 1200px) {
  :root {
    --sidebar-width: 200px;
    --content-margin: 220px;
  }
 
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
   }
}
}


.mobile-hamburger-menu.active span:nth-child(3) {
@media (max-width: 900px) {
  transform: rotate(-45deg) translate(6px, -6px);
  .nav-tab {
    flex: 1 1 44%;
    min-width: 44%;
  }
 
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
}


@media (max-width: 768px) {
@media (max-width: 600px) {
   /* Show hamburger menu on mobile */
   .nav-tab {
   .mobile-hamburger-menu {
    flex: 1 1 100%;
     display: flex;
    min-width: 100%;
  }
 
   .nav-tab .full-text {
     display: none;
   }
   }
    
    
   /* Sidebar mobile behavior */
   .nav-tab .short-text {
  body.skin-vector-legacy #mw-panel {  
     display: inline;
     transform: translateX(-100%);
    transition: transform .3s ease;
    position: fixed;
    z-index: 1000;
    height: 100vh;
    width: 220px;
    overflow-y: auto;
    overflow-x: hidden;
   }
   }
  body.skin-vector-legacy #mw-panel.mobile-open { transform: translateX(0); }
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body { margin-left: 0; }
    
    
   /* Add overlay when sidebar is open */
   .highlights-grid {
  body.sidebar-open::before {
     grid-template-columns: 1fr;
     content: '';
  }
    position: fixed;
 
    top: 0;
  .info-grid {
     left: 0;
     grid-template-columns: 1fr;
    right: 0;
  }
    bottom: 0;
 
    background: rgba(0, 0, 0, 0.5);
  .wikitable-like {
     z-index: 999;
     grid-template-columns: 1fr;
    opacity: 1;
    transition: opacity .3s ease;
   }
   }
}


  /* Sidebar peek tab with image (Vector Legacy only) */
@media (max-width: 480px) {
  body.skin-vector-legacy #p-logo { position: absolute; top: 12px; left: calc(100% + 12px); margin: 0; z-index: 1001; }
   :root {
   body.skin-vector-legacy #p-logo a {
     --border-radius: 8px;
     width: 56px; height: 56px; padding: 0; display: block;
     --spacing-xl: 16px;
    border-radius: var(--cora-vl-radius-sm);
     --spacing-lg: 12px;
    /* Keep any existing wiki logo background-image */
    background-color: var(--cora-vl-bg-2);
     background-repeat: no-repeat; background-position: center; background-size: contain;
     border: 1px solid var(--cora-vl-border-2);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.22);
   }
   }
   /* When sidebar is opened, return the logo to the panel */
    
   body.skin-vector-legacy #mw-panel.mobile-open #p-logo { position: relative; left: auto; top: auto; margin: 0 var(--cora-vl-space-md) var(--cora-vl-space-lg); }
   h1 {
  body.skin-vector-legacy #mw-panel.mobile-open #p-logo a {
     font-size: 1.8em !important;
    width: auto; height: auto; padding: var(--cora-vl-space-md);
     background-size: contain; /* Still show the image nicely inside */
   }
   }
}
}


/* High contrast fallback */
/* [ACCESSIBILITY] ACCESSIBILITY IMPROVEMENTS */
@media (prefers-contrast: more) {
@media (prefers-reduced-motion: reduce) {
   body.skin-vector-legacy #mw-panel .vector-menu-content a:hover { text-decoration: underline; }
   * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
}


@media (prefers-contrast: high) {
  :root {
    --primary-pink: #d63384;
    --text-primary: #000000;
    --border-color: #333333;
  }
}


/* ========================================
/* [CHANGELOG-BOX] CHANGELOG BOX STYLES */
  VECTOR LEGACY 2010 HEADER TABS POLISH
.changelog-box {
  Targets: Page/Discussion + Read/Edit/View history/More
  /* Modern gradient background with subtle pink-to-white transition */
  ======================================== */
  background: linear-gradient(135deg, #ffeef7 0%, #ffffff 50%, #f8f9fa 100%) !important;
 
  /* Generous internal spacing for better readability */
  padding: 25px 30px !important;
 
  /* Smooth rounded borders for modern look */
  border-radius: 16px !important;
 
  /* Elegant multi-layered border effect */
  border: 1px solid rgba(255, 107, 157, 0.15) !important;
  border-left: 5px solid #ff6b9d !important;
 
  /* Soft shadow for depth and elevation */
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04) !important;
 
  /* Vertical margins with better spacing */
  margin: 25px 0 !important;
 
  /* Smooth transition for hover effects */
  transition: all 0.3s ease !important;
 
  /* Enhanced typography */
  font-size: 1.05em !important;
  line-height: 1.6 !important;
  color: #2c3e50 !important;
 
  /* Relative positioning for proper layout */
  position: relative !important;
}


/* Variables for header buttons */
.changelog-box:hover {
:root {
   transform: translateY(-2px) !important;
   --cora-hd-radius: 10px;
   box-shadow: 0 6px 25px rgba(255, 107, 157, 0.12),
  --cora-hd-shadow: 0 2px 8px rgba(0,0,0,0.05);
              0 3px 10px rgba(0, 0, 0, 0.08) !important;
   --cora-hd-shadow-hover: 0 8px 30px rgba(255, 107, 157, 0.3);
  --cora-hd-border: rgba(255, 107, 157, 0.22);
  --cora-hd-grad: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
}
}


/* Base button look for tabs (Vector Legacy 2010 ONLY) */
/* [WIKILINKS] MEDIAWIKI INTERNAL LINK PROCESSING */
body.skin-vector-legacy #p-namespaces li a,
.mw-link-internal {
body.skin-vector-legacy #p-views li a,
   color: var(--primary-pink) !important;
body.skin-vector-legacy #p-cactions li a {
  display: inline-block !important;
  padding: 8px 12px !important;
  margin: 4px 6px 0 0 !important;
  border-radius: var(--cora-hd-radius) !important;
  background: rgba(255,255,255,0.92) !important;
   color: var(--primary-pink, #ff6b9d) !important;
  border: 2px solid transparent !important;
  font-weight: 700 !important;
   text-decoration: none !important;
   text-decoration: none !important;
   box-shadow: var(--cora-hd-shadow) !important;
   transition: var(--transition-normal) !important;
   transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease !important;
   border-bottom: 1px dotted transparent !important;
}
 
.mw-link-internal:hover {
  color: var(--dark-pink) !important;
  border-bottom-color: var(--primary-pink) !important;
}
}


/* Hover state */
.mw-redirect {
body.skin-vector-legacy #p-namespaces li a:hover,
   color: var(--accent-pink) !important;
body.skin-vector-legacy #p-views li a:hover,
body.skin-vector-legacy #p-cactions li a:hover {
  transform: translateY(-2px) !important;
   color: var(--dark-pink, #d63384) !important;
  border-color: var(--cora-hd-border) !important;
  box-shadow: var(--cora-hd-shadow-hover) !important;
}
}


/* Active/selected state */
/* [DESTAQUE CARDS] HOLOGRAMSIE SERVICE CARDS */
body.skin-vector-legacy #p-namespaces li.selected a,
.destaques-grid {
body.skin-vector-legacy #p-views li.selected a,
  display: grid;
body.skin-vector-legacy #p-cactions li.selected a {
  grid-template-columns: repeat(6, 1fr);
  background: var(--cora-hd-grad) !important;
   gap: 15px;
   color: #fff !important;
   margin: 30px 0;
   border-color: transparent !important;
   padding: 0 20px;
   box-shadow: var(--cora-hd-shadow-hover) !important;
}
}


/* "More" dropdown trigger to match the tabs */
.destaque-card {
body.skin-vector-legacy #p-cactions .vector-menu-heading {
  background: var(--light-pink);
   display: inline-flex !important;
   border: 2px solid var(--accent-pink);
   align-items: center !important;
   border-radius: 15px;
   gap: 6px !important;
   padding: 12px;
   padding: 8px 12px !important;
   text-align: center;
   margin: 4px 6px 0 0 !important;
   transition: all 0.3s ease;
   border-radius: var(--cora-hd-radius) !important;
   min-height: 250px;
   background: rgba(255,255,255,0.92) !important;
   display: flex;
   color: var(--primary-pink, #ff6b9d) !important;
   flex-direction: column;
   border: 2px solid transparent !important;
  align-items: center;
   font-weight: 700 !important;
  justify-content: flex-start;
   text-decoration: none !important;
   gap: 12px;
   box-shadow: var(--cora-hd-shadow) !important;
   position: relative;
   transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease !important;
   overflow: hidden;
   cursor: pointer;
}
 
.destaque-card[data-link],
.destaque-card[data-tab-trigger] {
   cursor: pointer;
}
}
body.skin-vector-legacy #p-cactions .vector-menu-heading:hover {
 
   transform: translateY(-2px) !important;
.destaque-card[data-link]:hover,
   color: var(--dark-pink, #d63384) !important;
.destaque-card[data-tab-trigger]:hover {
   border-color: var(--cora-hd-border) !important;
   transform: translateY(-5px);
  box-shadow: var(--cora-hd-shadow-hover) !important;
   box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
   border-color: var(--primary-pink);
}
}


/* Watch star (favorite) - Vector Legacy 2010 */
.destaque-card[data-link] .destaque-text h3,
body.skin-vector-legacy #ca-watch a,
.destaque-card[data-tab-trigger] .destaque-text h3 {
body.skin-vector-legacy #ca-unwatch a {
   color: var(--primary-pink);
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 10px !important;
  margin: 4px 6px 0 0 !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.92) !important;
   color: var(--primary-pink, #ff6b9d) !important;
  border: 2px solid transparent !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: var(--cora-hd-shadow) !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease !important;
}
}
body.skin-vector-legacy #ca-watch a:hover,
 
body.skin-vector-legacy #ca-unwatch a:hover {
.destaque-card[data-link]:hover .destaque-text h3,
  transform: translateY(-2px) !important;
.destaque-card[data-tab-trigger]:hover .destaque-text h3 {
   color: #fff !important;
   color: var(--dark-pink);
  background: var(--cora-hd-grad) !important;
  box-shadow: var(--cora-hd-shadow-hover) !important;
}
}


/* Compact layout for smaller screens */
.destaque-card[data-link] *,
@media (max-width: 840px) {
.destaque-card[data-tab-trigger] * {
  body.skin-vector-legacy #p-namespaces li a,
   pointer-events: none;
  body.skin-vector-legacy #p-views li a,
   body.skin-vector-legacy #p-cactions li a {
    padding: 6px 10px !important;
    margin: 3px 4px 0 0 !important;
    font-size: 0.95em !important;
  }
}
}


/* Vector Legacy specific content spacing */
.destaque-image {
body.skin-vector-legacy #content,
  width: 100%;
body.skin-vector-legacy .mw-body {
  max-width: 180px;
   padding: 1.25em;
   height: 140px;
   background: #fff;
   overflow: hidden;
   border-radius: 12px;
   border-radius: 12px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   display: flex;
  align-items: center;
  justify-content: center;
}
 
.destaque-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
 
.destaque-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
 
.destaque-text h3 {
  color: var(--primary-pink);
  font-size: 0.75em;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}
 
.destaque-text p {
  color: var(--primary-pink);
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0;
  opacity: 0.8;
}
 
.destaque-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--primary-pink);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
}


/* Vector Legacy specific responsive adjustments */
.destaque-card:hover::before {
@media (max-width: 768px) {
  opacity: 0.1;
   body.skin-vector-legacy #content,
}
   body.skin-vector-legacy .mw-body {
 
     padding: 1em;
.destaque-card:hover {
     margin-top: 1em;
   transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
   border-color: var(--primary-pink);
}
 
/* [ANIMATIONS] ANIMATION KEYFRAMES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
     opacity: 1;
     transform: translateY(0);
   }
   }
}
}


.ve-ui-surface, .ve-init-target {
@keyframes pulse {
  all: unset !important;  
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
 
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
}

Revision as of 03:02, 13 August 2025

/* ========================================
   CORA TO WIKI - GENERAL WIKI STYLES
   Styles applicable to all skins
   ======================================== */

/* CSS NAVIGATION GUIDE 
   ========================================
   
   QUICK NAVIGATION - Use Ctrl+F to find sections:
   
   1. THEME FOUNDATION
      • [VARIABLES] - CSS custom properties & color system
      • [GLOBAL] - Base styles & resets
   
   2. PAGE STRUCTURE
      • [HERO] - Main banner/hero section
      • [NAVIGATION] - Tab navigation system
      • [CONTENT] - Content sections & animations
      • [GRIDS] - Layout grids (highlights, info, cards)
      • [SIDEBAR] - Sidebar components
   
   3. UI COMPONENTS
      • [TYPOGRAPHY] - Headings & text styling
      • [LINKS] - Link states & interactions
      • [BUTTONS] - Button styles & hover effects
      • [TABLES] - WikiTable styling
      • [FORMS] - Input fields & form elements
   
   4. MEDIAWIKI SPECIFIC
      • [MW-ELEMENTS] - MediaWiki specific selectors
      • [MW-COMPATIBILITY] - Editor & system integration
   
   5. UTILITIES & EFFECTS
      • [UTILITIES] - Helper classes & effects
      • [ANIMATIONS] - Keyframe animations
   
   6. RESPONSIVE DESIGN
      • [RESPONSIVE] - Mobile & tablet breakpoints
      • [ACCESSIBILITY] - A11y improvements
      • [PRINT] - Print-friendly styles
   
   HOW TO USE THIS GUIDE:
   - Search for [SECTION] to jump to specific parts
   - Each section has detailed comments explaining functionality
   - CSS variables are defined at the top for easy customization
   - All styles are MediaWiki compatible and responsive
   
   ======================================== */

/* [VARIABLES] THEME FOUNDATION - CSS Custom Properties
   ========================================
   Define all colors, spacing, shadows, and design tokens used throughout the theme.
   Modify these variables to customize the entire theme appearance.
   ======================================== */
:root {
  /* PRIMARY BRAND COLORS - Pink Palette  */
  --primary-pink: #ff6b9d;
  --secondary-pink: #ffc3e0;
  --accent-pink: #ff8fb0;
  --light-pink: #fff0f7;
  --dark-pink: #d63384;
  --pink-gradient: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
  --pink-glass: rgba(255, 107, 157, 0.15);
  --pink-shadow: rgba(255, 107, 157, 0.3);
  --pink-border: rgba(255, 107, 157, 0.2);
  
  /* ADDITIONAL PINK SCALE  */
  --pink-50: #fff0f6;
  --pink-100: #ffd9e9;
  --pink-200: #ffb3cf;
  --pink-300: #ff8cb6;
  --pink-400: #ff6fa3;
  --pink-500: #ff4f91;
  --pink-600: #e93c81;
  --pink-700: #d02f72;
  --pink-800: #b32561;
  --pink-900: #8d1c4b;
  
  /* NEUTRAL COLORS */
  --text-primary: #2d2d2d;
  --text-secondary: #666666;
  --text-muted: #999999;
  --ink-900: #222;
  --ink-700: #444;
  --ink-500: #666;
  --background-primary: #ffffff;
  --background-secondary: #fafafa;
  --background-tertiary: #f5f5f5;
  --surface: #ffffff;
  --border-color: #e0e0e0;
  --border-light: #f0f0f0;
  --border: rgba(0,0,0,0.08);
  
  /* LAYOUT VARIABLES */
  --sidebar-width: 220px;
  --content-margin: calc(var(--sidebar-width) + 20px);
  --container-max: 1200px;
  --border-radius: 12px;
  --border-radius-small: 8px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  
  /* SHADOWS AND EFFECTS */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow: 0 6px 24px rgba(255, 79, 145, 0.18);
  --shadow-pink: 0 4px 20px var(--pink-shadow);
  --shadow-pink-hover: 0 8px 30px var(--pink-shadow);
  --blur-glass: blur(10px);
  
  /* TRANSITIONS */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* [GLOBAL] BASE STYLES & RESETS
   ========================================
   Universal styles, box-sizing, typography, and body background.
   Sets up the foundation for all other styles to build upon.
   ======================================== */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, "Noto Sans", sans-serif !important;
  line-height: 1.6 !important;
  color: var(--text-primary) !important;
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100) 40%, var(--pink-200)) !important;
  background-attachment: fixed !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh !important;
}

/* [MEDIAWIKI] COMPATIBILITY WRAPPER - Scoping for MediaWiki pages */
.mw-page-scope {
  padding: 16px;
}

/* [MEDIAWIKI] UTILITY BANNER - Supports MediaWiki file syntax overlays */
.utility-banner {
  position: relative;
  min-height: 48px;
}

.utility-banner > * {
  position: absolute;
  top: 0;
  right: 8px;
}

/* [HERO] HERO / BANNER SECTION */
.hero {
  background: rgba(255,255,255,0.85);
  border: 2px solid rgba(255, 111, 163, 0.18);
  border-radius: var(--radius-lg);
  max-width: var(--container-max);
  margin: 0 auto 16px auto;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-inner {
  padding: clamp(18px, 3vw, 36px);
  text-align: center;
}

.hero-title {
  margin: 8px 0 4px 0;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--ink-500);
  font-size: clamp(14px, 2.2vw, 18px);
}

.status-pill {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
}

/* Tip Box */
.tip-box {
  background-color: rgba(144, 238, 144, 0.2);
  border-left: 4px solid #4CAF50;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tip-box::before {
  content: "💡 Tip";
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #4CAF50;
}

/* Warning Box */
.warning-box {
  background-color: rgba(255, 165, 0, 0.2);
  border-left: 4px solid #FF9800;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.warning-box::before {
  content: "⚠️ Warning";
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FF9800;
}

/* [NAVIGATION] TAB NAVIGATION SYSTEM */
.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(255, 111, 163, 0.18);
  border-radius: var(--radius-lg);
  max-width: var(--container-max);
  margin: 0 auto 16px auto;
  padding: 8px;
  box-shadow: var(--shadow);
}

.nav-tab {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--ink-700);
  background: rgba(255,255,255,0.8);
  border: 2px solid transparent;
  border-left: 3px solid transparent;
  min-width: 120px;
  flex: 1 1 160px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease, padding .2s ease;
}

.nav-tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--pink-900);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
  padding-left: 20px;
}

.nav-tab.active {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  color: #fff;
}

.nav-tab .short-text {
  display: none;
}

/* [CONTENT] CONTENT SECTIONS & ANIMATIONS */
.content {
  max-width: var(--container-max);
  margin: 0 auto;
}

.tab-content {
  display: none;
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 111, 163, 0.18);
  box-shadow: var(--shadow);
  padding: clamp(16px, 3vw, 36px);
}

.tab-content.active {
  display: block;
  animation: fadeIn .35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step List */
.step-list {
  counter-reset: step-counter;
  list-style-type: none;
  padding-left: 0;
  margin: 25px 0;
}

.step-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
  counter-increment: step-counter;
}

.step-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* External Link */
.external-link {
  color: var(--primary-pink);
  text-decoration: none;
  border-bottom: 1px dashed var(--primary-pink);
  transition: all 0.3s ease;
  padding-right: 20px;
  position: relative;
}

.external-link::after {
  content: '↗';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.8em;
}

.external-link:hover {
  color: var(--dark-pink);
  border-bottom-color: var(--dark-pink);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(12px, 2.5vw, 24px);
}

.section-header h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--ink-900);
  border-bottom: 2px solid var(--pink-500);
  display: inline-block;
  padding-bottom: 6px;
}

.section-lead {
  margin-top: 6px;
  color: var(--ink-500);
  font-size: clamp(13px, 2vw, 16px);
}

/* [GRIDS] HIGHLIGHTS GRID */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 2vw, 16px);
  margin: 1rem 0;
}

/* Quick Stats Grid */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--primary-pink);
}

.stat-card p {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
  padding: 0;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
  padding-left: 4px;
}

.card-media {
  text-align: center;
  padding-top: 6px;
}

.card-body {
  padding: 10px 12px;
}

.card-title {
  margin: 0;
  font-size: clamp(14px, 2.2vw, 18px);
  color: var(--ink-900);
  text-align: center;
}

/* [GRIDS] INFO GRID */
.info-grid {
  display: grid;
  gap: clamp(10px, 2vw, 16px);
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(12px, 2.5vw, 24px);
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: clamp(12px, 2.5vw, 18px);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
  padding-left: clamp(16px, 3vw, 22px);
}

.inline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.inline-list li {
  white-space: nowrap;
}

/* [GRIDS] TABLE-LIKE RESPONSIVE COLUMNS */
.wikitable-like {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.wikitable-like .column {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 16px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
}

.wikitable-like .column:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
  padding-left: 20px;
}

.wikitable-like ul {
  margin: 0;
  padding-left: 18px;
}

/* [SIDEBAR] SIDEBAR COMPONENTS */
.sidebar {
  margin-top: 16px;
}

.sidebar-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
}

.sidebar-inner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
  padding-left: 20px;
}

.sidebar-title {
  margin: 0 0 8px 0;
  font-size: clamp(16px, 2.5vw, 20px);
}

.sidebar-list {
  margin: 0;
  padding-left: 18px;
}

/* [CONTENT] TAB FOOTER / NAVIGATION */
.tab-footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(12px, 2.5vw, 24px);
}

.back-to-top {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
}

/* Fixed Back to Top Button */
.back-to-top-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top-fixed:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top-fixed::before {
  content: '↑';
  font-size: 20px;
}

/* [TYPOGRAPHY] HEADINGS STYLE */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-pink) !important;
  font-weight: 700 !important;
  margin-bottom: var(--spacing-md) !important;
  margin-top: var(--spacing-lg) !important;
}

h1 {
  background: var(--pink-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 2.5em !important;
}

/* Collapsible Elements - Only for page content */
.mw-body .collapsible,
#content .collapsible,
#mw-content-text .collapsible,
button.collapsible {
    background-color: #f1f1f1;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 4px;
    margin-bottom: 5px;
    position: relative;
}

.mw-body .collapsible:hover,
#content .collapsible:hover,
#mw-content-text .collapsible:hover,
button.collapsible:hover {
    background-color: #ddd;
}

.mw-body .collapsible::after,
#content .collapsible::after,
#mw-content-text .collapsible::after,
button.collapsible::after {
    content: '+';
    font-size: 18px;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.mw-body .collapsible.active::after,
#content .collapsible.active::after,
#mw-content-text .collapsible.active::after,
button.collapsible.active::after {
    content: '-';
}

.mw-body .collapsible-content,
#content .collapsible-content,
#mw-content-text .collapsible-content,
button.collapsible + .collapsible-content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: white;
    border-radius: 0 0 4px 4px;
}

.mw-body .collapsible-content.active,
#content .collapsible-content.active,
#mw-content-text .collapsible-content.active,
button.collapsible + .collapsible-content.active {
    max-height: 500px;
    padding: 18px;
    border: 1px solid #ddd;
    border-top: none;
    margin-bottom: 15px;
}

/* [LINKS] LINKS */
a {
  color: var(--primary-pink) !important;
  text-decoration: none !important;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease !important;
  display: inline-block !important;
  padding: 2px 4px !important;
  border-radius: 4px !important;
  border-left: 3px solid transparent !important;
}

a:hover {
  color: var(--dark-pink) !important;
  background: rgba(255, 107, 157, 0.08) !important;
  border-left-color: var(--primary-pink) !important;
  padding-left: 8px !important;
  text-decoration: none !important;
}

/* Content area links - enhanced animation */
#mw-content-text a {
  color: #9a3b5f !important;
  text-decoration: none !important;
  display: inline-block !important;
  padding: 2px 4px !important;
  border-radius: 4px !important;
  border-left: 3px solid transparent !important;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease !important;
}

#mw-content-text a:hover {
  color: var(--primary-pink) !important;
  background: #fff5fb !important;
  border-left-color: var(--primary-pink) !important;
  padding-left: 8px !important;
  text-decoration: none !important;
}

/* [BUTTONS] BUTTONS */
.mw-ui-button,
.oo-ui-buttonElement-button,
button:not(.nav-tab) {
  background: var(--pink-gradient) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--border-radius-small) !important;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: var(--transition-normal) !important;
  box-shadow: var(--shadow-light) !important;
}

.mw-ui-button:hover,
.oo-ui-buttonElement-button:hover,
button:not(.nav-tab):hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-pink-hover) !important;
}

/* [TABLES] TABLES (WikiTable + DataTable) */
table.wikitable,
.mw-datatable,
.faq-table {
  background: var(--background-primary) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--border-radius-small) !important;
  box-shadow: var(--shadow-light) !important;
  overflow: hidden !important;
}

table.wikitable th,
.mw-datatable th,
.faq-table th {
  background: var(--secondary-pink) !important;
  color: var(--text-primary) !important;
  font-weight: 700 !important;
  padding: var(--spacing-md) !important;
  border-bottom: 2px solid var(--primary-pink) !important;
}

table.wikitable td,
.mw-datatable td,
.faq-table td {
  padding: var(--spacing-md) !important;
  border-bottom: 1px solid var(--border-light) !important;
}

table.wikitable tr:hover,
.mw-datatable tr:hover,
.faq-table tr:hover {
  background: var(--light-pink) !important;
}

/* FAQ Table specific styles */
.faq-table {
  width: 100% !important;
  box-shadow: var(--shadow-medium) !important;
}

.faq-table tr:nth-child(odd) td {
  background-color: rgba(255, 107, 157, 0.05) !important;
}

.faq-table tr:hover td {
  background-color: rgba(255, 107, 157, 0.1) !important;
}

/* [FORMS] FORM ELEMENTS */
input[type="text"],
input[type="search"],
textarea,
select {
  border: 2px solid var(--border-light) !important;
  border-radius: var(--border-radius-small) !important;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  font-family: inherit !important;
  transition: var(--transition-fast) !important;
}

input[type="text"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-pink) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2) !important;
}

/* [MW-ELEMENTS] SPECIAL MEDIAWIKI ELEMENTS */
.mw-editsection {
  color: var(--accent-pink) !important;
  font-size: 0.8em !important;
}

.mw-headline {
  border-bottom: 2px solid var(--pink-border) !important;
  padding-bottom: var(--spacing-sm) !important;
}

/* [UTILITIES] UTILITY CLASSES */
.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: var(--blur-glass) !important;
  border: 1px solid var(--pink-border) !important;
}

.pink-gradient-text {
  background: var(--pink-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* [RESPONSIVE] RESPONSIVE DESIGN (Breakpoints & Layout) */
@media (max-width: 1200px) {
  :root {
    --sidebar-width: 200px;
    --content-margin: 220px;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-tab {
    flex: 1 1 44%;
    min-width: 44%;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nav-tab {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .nav-tab .full-text {
    display: none;
  }
  
  .nav-tab .short-text {
    display: inline;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .wikitable-like {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --border-radius: 8px;
    --spacing-xl: 16px;
    --spacing-lg: 12px;
  }
  
  h1 {
    font-size: 1.8em !important;
  }
}

/* [ACCESSIBILITY] ACCESSIBILITY IMPROVEMENTS */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --primary-pink: #d63384;
    --text-primary: #000000;
    --border-color: #333333;
  }
}

/* [CHANGELOG-BOX] CHANGELOG BOX STYLES */
.changelog-box {
  /* Modern gradient background with subtle pink-to-white transition */
  background: linear-gradient(135deg, #ffeef7 0%, #ffffff 50%, #f8f9fa 100%) !important;
  
  /* Generous internal spacing for better readability */
  padding: 25px 30px !important;
  
  /* Smooth rounded borders for modern look */
  border-radius: 16px !important;
  
  /* Elegant multi-layered border effect */
  border: 1px solid rgba(255, 107, 157, 0.15) !important;
  border-left: 5px solid #ff6b9d !important;
  
  /* Soft shadow for depth and elevation */
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.08), 
              0 2px 8px rgba(0, 0, 0, 0.04) !important;
  
  /* Vertical margins with better spacing */
  margin: 25px 0 !important;
  
  /* Smooth transition for hover effects */
  transition: all 0.3s ease !important;
  
  /* Enhanced typography */
  font-size: 1.05em !important;
  line-height: 1.6 !important;
  color: #2c3e50 !important;
  
  /* Relative positioning for proper layout */
  position: relative !important;
}

.changelog-box:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.12), 
              0 3px 10px rgba(0, 0, 0, 0.08) !important;
}

/* [WIKILINKS] MEDIAWIKI INTERNAL LINK PROCESSING */
.mw-link-internal {
  color: var(--primary-pink) !important;
  text-decoration: none !important;
  transition: var(--transition-normal) !important;
  border-bottom: 1px dotted transparent !important;
}

.mw-link-internal:hover {
  color: var(--dark-pink) !important;
  border-bottom-color: var(--primary-pink) !important;
}

.mw-redirect {
  color: var(--accent-pink) !important;
}

/* [DESTAQUE CARDS] HOLOGRAMSIE SERVICE CARDS */
.destaques-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin: 30px 0;
  padding: 0 20px;
}

.destaque-card {
  background: var(--light-pink);
  border: 2px solid var(--accent-pink);
  border-radius: 15px;
  padding: 12px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.destaque-card[data-link],
.destaque-card[data-tab-trigger] {
  cursor: pointer;
}

.destaque-card[data-link]:hover,
.destaque-card[data-tab-trigger]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
  border-color: var(--primary-pink);
}

.destaque-card[data-link] .destaque-text h3,
.destaque-card[data-tab-trigger] .destaque-text h3 {
  color: var(--primary-pink);
}

.destaque-card[data-link]:hover .destaque-text h3,
.destaque-card[data-tab-trigger]:hover .destaque-text h3 {
  color: var(--dark-pink);
}

.destaque-card[data-link] *,
.destaque-card[data-tab-trigger] * {
  pointer-events: none;
}

.destaque-image {
  width: 100%;
  max-width: 180px;
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destaque-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.destaque-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.destaque-text h3 {
  color: var(--primary-pink);
  font-size: 0.75em;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

.destaque-text p {
  color: var(--primary-pink);
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0;
  opacity: 0.8;
}

.destaque-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--primary-pink);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.destaque-card:hover::before {
  opacity: 0.1;
}

.destaque-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
  border-color: var(--primary-pink);
}

/* [ANIMATIONS] ANIMATION KEYFRAMES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}