MediaWiki:Common.css: Difference between revisions

From CoraTO Wiki - Official Wiki
Jump to navigation Jump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 1: Line 1:
/* ========================================
/* CSS NAVIGATION GUIDE
  NEWCORA WIKI THEME - OPTIMIZED CSS
   ========================================
   ========================================
    
    
   NAVIGATION GUIDE:
   QUICK NAVIGATION - Use Ctrl+F to find sections:
   • [VARIABLES] - CSS custom properties & design tokens
    
  • [GLOBAL] - Base styles & resets
  1. THEME FOUNDATION
  • [MEDIAWIKI] - MediaWiki compatibility
      • [VARIABLES] - CSS custom properties & color system
   • [LAYOUT] - Page structure & containers
      • [GLOBAL] - Base styles & resets
  • [COMPONENTS] - UI components (buttons, cards, etc.)
      • [MEDIAWIKI] - MediaWiki compatibility layer
  • [NAVIGATION] - Tab system & menus
 
   • [TYPOGRAPHY] - Text styling
   2. PAGE STRUCTURE
  • [TABLES] - Table styling
      • [HERO] - Main banner/hero section
  • [FORMS] - Form elements
      • [NAVIGATION] - Enhanced tab navigation with animations
   • [UTILITIES] - Helper classes
      • [CONTENT] - Content sections & animations
  • [ANIMATIONS] - Keyframes & transitions
      • [GRIDS] - Responsive layout grids (highlights, info, cards)
   • [RESPONSIVE] - Media queries
      • [SIDEBAR] - Sidebar components
  • [ACCESSIBILITY] - A11y improvements
 
  • [PRINT] - Print styles
   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
      • [DESTAQUE CARDS] - cards with responsive grid
 
  5. UTILITIES & EFFECTS
      • [UTILITIES] - Helper classes & effects
      • [ANIMATIONS] - Keyframe animations & transitions
      • [CHANGELOG-BOX] - Styled changelog containers
    
  6. RESPONSIVE DESIGN
      • [RESPONSIVE] - Mobile & tablet breakpoints
      • [ACCESSIBILITY] - A11y improvements & focus states
      • [PRINT] - Print-friendly styles
 
  RECENT UPDATES:
  - Enhanced navigation with shimmer effects and accessibility
  - Responsive destaques-grid with mobile optimization
  - Improved focus states and ARIA support
  - Modern backdrop filters and glass morphism effects
 
  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 fully responsive
    
    
   ======================================== */
   ======================================== */


/* [VARIABLES] CSS CUSTOM PROPERTIES
/* [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 {
   /* Brand Colors - Pink Palette */
   /* PRIMARY BRAND COLORS - Pink Palette */
   --primary-pink: #ff6b9d;
   --primary-pink: #ff6b9d;
   --secondary-pink: #ffc3e0;
   --secondary-pink: #ffc3e0;
Line 30: Line 64:
   --light-pink: #fff0f7;
   --light-pink: #fff0f7;
   --dark-pink: #d63384;
   --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);
    
    
   /* Extended Pink Scale */
   /* ADDITIONAL PINK SCALE  */
   --pink-50: #fff0f6;
   --pink-50: #fff0f6;
   --pink-100: #ffd9e9;
   --pink-100: #ffd9e9;
Line 43: Line 81:
   --pink-900: #8d1c4b;
   --pink-900: #8d1c4b;
    
    
   /* Gradients & Effects */
   /* NEUTRAL COLORS */
  --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);
 
  /* Neutral Colors */
   --text-primary: #2d2d2d;
   --text-primary: #2d2d2d;
   --text-secondary: #666666;
   --text-secondary: #666666;
Line 56: Line 88:
   --ink-700: #444;
   --ink-700: #444;
   --ink-500: #666;
   --ink-500: #666;
 
  /* Background Colors */
   --background-primary: #ffffff;
   --background-primary: #ffffff;
   --background-secondary: #fafafa;
   --background-secondary: #fafafa;
   --background-tertiary: #f5f5f5;
   --background-tertiary: #f5f5f5;
   --surface: #ffffff;
   --surface: #ffffff;
 
  /* Border Colors */
   --border-color: #e0e0e0;
   --border-color: #e0e0e0;
   --border-light: #f0f0f0;
   --border-light: #f0f0f0;
   --border: rgba(0,0,0,0.08);
   --border: rgba(0,0,0,0.08);
    
    
   /* Layout Variables */
   /* LAYOUT VARIABLES */
  --sidebar-width: 220px;
  --content-margin: calc(var(--sidebar-width) + 20px);
   --container-max: 1200px;
   --container-max: 1200px;
 
  /* Border Radius */
   --border-radius: 12px;
   --border-radius: 12px;
   --border-radius-small: 8px;
   --border-radius-small: 8px;
Line 77: Line 105:
   --radius-md: 14px;
   --radius-md: 14px;
   --radius-sm: 10px;
   --radius-sm: 10px;
 
  /* Spacing Scale */
   --spacing-xs: 4px;
   --spacing-xs: 4px;
   --spacing-sm: 8px;
   --spacing-sm: 8px;
Line 85: Line 111:
   --spacing-xl: 32px;
   --spacing-xl: 32px;
    
    
   /* Shadows */
   /* SHADOWS AND EFFECTS */
   --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
   --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
   --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
   --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
Line 92: Line 118:
   --shadow-pink: 0 4px 20px var(--pink-shadow);
   --shadow-pink: 0 4px 20px var(--pink-shadow);
   --shadow-pink-hover: 0 8px 30px var(--pink-shadow);
   --shadow-pink-hover: 0 8px 30px var(--pink-shadow);
 
  /* Effects */
   --blur-glass: blur(10px);
   --blur-glass: blur(10px);
    
    
   /* Transitions */
   /* TRANSITIONS */
   --transition-fast: 0.15s ease;
   --transition-fast: 0.15s ease;
   --transition-normal: 0.3s ease;
   --transition-normal: 0.3s ease;
Line 103: Line 127:


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


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


/* [MEDIAWIKI] UTILITY BANNER - Supports MediaWiki file syntax overlays */
.utility-banner {
.utility-banner {
   position: relative;
   position: relative;
Line 140: Line 167:
}
}


/* MediaWiki Main Content */
/* [MEDIAWIKI] MAIN CONTENT CONTAINER - Skin Vector Legacy specific */
body.skin-vector-legacy #content,
body.skin-vector-legacy #content,
body.skin-vector-legacy .mw-body {
body.skin-vector-legacy .mw-body {
   border: 1px solid var(--border-light) !important;
   border: 1px solid var(--border-light) !important;
   border-radius: var(--border-radius) !important;
   border-radius: var(--border-radius) !important;
   margin: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 0 !important;
   margin-top: var(--spacing-lg) !important;
  margin-bottom: var(--spacing-lg) !important;
  margin-right: var(--spacing-lg) !important;
   box-shadow: 0 0px 20px rgb(253, 91, 205) !important;
   box-shadow: 0 0px 20px rgb(253, 91, 205) !important;
   background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255, 205, 233, 0));
   background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255, 205, 233, 0));
Line 154: Line 183:
   content: '' !important;
   content: '' !important;
   position: absolute !important;
   position: absolute !important;
   inset: -1px !important;
   top: -1px !important;
  left: -1px !important;
  right: -1px !important;
  bottom: -1px !important;
   background: var(--pink-gradient) !important;
   background: var(--pink-gradient) !important;
   border-radius: var(--border-radius) !important;
   border-radius: var(--border-radius) !important;
Line 161: Line 193:
}
}


/* [LAYOUT] PAGE STRUCTURE
/* [HERO] HERO / BANNER SECTION */
  ======================================== */
.hero {
.hero {
   background: rgba(255,255,255,0.85);
   background: rgba(255,255,255,0.85);
Line 185: Line 216:
   -webkit-background-clip: text;
   -webkit-background-clip: text;
   background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent !important;
   -webkit-text-fill-color: none !important;
}
}


Line 204: Line 235:
}
}


.content {
@keyframes fadeInOut {
   max-width: var(--container-max);
  0% { opacity: 0.6; }
   margin: 0 auto;
   50% { opacity: 1; }
   100% { opacity: 0.6; }
}
}


.tab-content {
/* Tip Box */
  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;
}
 
/* [COMPONENTS] UI COMPONENTS
  ======================================== */
/* Info Boxes */
.tip-box {
.tip-box {
   background-color: rgba(144, 238, 144, 0.2);
   background-color: rgba(144, 238, 144, 0.2);
Line 243: Line 259:
}
}


/* Warning Box */
.warning-box {
.warning-box {
   background-color: rgba(255, 165, 0, 0.2);
   background-color: rgba(255, 165, 0, 0.2);
Line 260: Line 277:
}
}


/* Cards */
/* [NAVIGATION] TAB NAVIGATION SYSTEM */
.card {
.nav-tabs {
   background: var(--surface);
   display: flex;
   border: 1px solid var(--border);
  flex-wrap: wrap;
   border-left: 3px solid transparent;
  gap: 8px;
   border-radius: var(--radius-md);
  align-items: center;
   overflow: hidden;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
   background: rgba(255,255,255,0.95);
   padding: 0;
   border: 2px solid rgba(255, 111, 163, 0.18);
}
   border-radius: var(--radius-lg);
 
   max-width: var(--container-max);
.card:hover {
   margin: 0 auto 16px auto;
   transform: translateY(-3px);
   padding: 8px;
   box-shadow: var(--shadow);
   box-shadow: var(--shadow);
   background: #fff5fb;
   backdrop-filter: blur(10px);
   border-left-color: var(--primary-pink);
   position: relative;
   padding-left: 4px;
   z-index: 10;
}
}


.card-media {
.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.9);
  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;
  position: relative;
  overflow: hidden;
   text-align: center;
   text-align: center;
   padding-top: 6px;
   font-size: 14px;
  line-height: 1.4;
}
}


.card-body {
.nav-tab::before {
   padding: 10px 12px;
   content: '';
}
  position: absolute;
 
  top: 0;
.card-title {
  left: -100%;
   margin: 0;
   width: 100%;
   font-size: clamp(14px, 2.2vw, 18px);
   height: 100%;
   color: var(--ink-900);
   background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
   text-align: center;
   transition: left 0.5s ease;
}
}


/* Step List */
.nav-tab:hover::before {
.step-list {
   left: 100%;
  counter-reset: step-counter;
  list-style-type: none;
   padding-left: 0;
  margin: 25px 0;
}
}


.step-item {
.nav-tab:hover {
   position: relative;
   transform: translateY(-2px);
   padding-left: 50px;
  box-shadow: var(--shadow);
   margin-bottom: 25px;
  color: var(--pink-900);
   counter-increment: step-counter;
  background: #fff5fb;
  border-left-color: var(--primary-pink);
   padding-left: 20px;
}
 
.nav-tab:focus {
   outline: 2px solid var(--primary-pink);
   outline-offset: 2px;
}
}


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


/* Quick Stats Grid */
.nav-tab.active:hover {
.quick-stats {
   background: linear-gradient(135deg, var(--pink-600), var(--pink-800));
   display: grid;
   transform: translateY(-3px);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
   box-shadow: var(--shadow-pink-hover);
   gap: 15px;
   margin: 25px 0;
}
}


.stat-card {
.nav-tab .short-text {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
   display: none;
  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 {
.nav-tab .full-text {
   transform: translateY(-5px);
   display: inline;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
}


.stat-card h3 {
/* Navigation accessibility improvements */
   margin: 0 0 10px 0;
.nav-tabs[role="tablist"] .nav-tab[role="tab"] {
  font-size: 1.2rem;
   position: relative;
  color: var(--primary-pink);
}
}


.stat-card p {
.nav-tabs[role="tablist"] .nav-tab[role="tab"][aria-selected="true"]::after {
   font-size: 2rem;
   content: '';
   font-weight: bold;
  position: absolute;
   margin: 0;
  bottom: -2px;
   background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
  left: 50%;
  -webkit-background-clip: text;
   transform: translateX(-50%);
   background-clip: text;
  width: 80%;
  color: transparent;
   height: 3px;
   background: var(--primary-pink);
   border-radius: 2px;
}
}


/* Changelog Box */
/* [CONTENT] CONTENT SECTIONS & ANIMATIONS */
.changelog-box {
.content {
   background: linear-gradient(135deg, #ffeef7 0%, #ffffff 50%, #f8f9fa 100%) !important;
   max-width: var(--container-max);
  padding: 25px 30px !important;
   margin: 0 auto;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 107, 157, 0.15) !important;
  border-left: 5px solid #ff6b9d !important;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
   margin: 25px 0 !important;
  transition: all 0.3s ease !important;
  font-size: 1.05em !important;
  line-height: 1.6 !important;
  color: #2c3e50 !important;
  position: relative !important;
}
}


.changelog-box:hover {
.tab-content {
   transform: translateY(-2px) !important;
   display: none;
   box-shadow: 0 6px 25px rgba(255, 107, 157, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08) !important;
   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);
}
}


.changelog-with-image {
.tab-content.active {
   display: flex !important;
   display: block;
  align-items: center !important;
   animation: fadeIn .35s ease;
  gap: 25px !important;
   margin: 25px 0 !important;
}
}


.changelog-with-image .changelog-box {
@keyframes fadeIn {
   flex: 1 !important;
   from {
  margin: 0 !important;
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
}


.image-container {
/* Step List */
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #ffeef7 100%) !important;
.step-list {
   border: 1px solid rgba(255, 107, 157, 0.15) !important;
   counter-reset: step-counter;
  border-radius: 12px !important;
   list-style-type: none;
   padding: 15px !important;
   padding-left: 0;
  margin-bottom: 12px !important;
   margin: 25px 0;
  box-shadow: 0 2px 10px rgba(255, 107, 157, 0.06) !important;
   text-align: center !important;
  font-size: 0.9em !important;
  line-height: 1.4 !important;
  max-width: 100% !important;
  overflow: hidden !important;
}
}


.image-container img {
.step-item {
   max-width: 100% !important;
   position: relative;
   height: auto !important;
   padding-left: 50px;
   display: block !important;
   margin-bottom: 25px;
   margin: 0 auto !important;
   counter-increment: step-counter;
}
}


.image-container strong {
.step-item::before {
   color: #2c3e50 !important;
  content: counter(step-counter);
   display: block !important;
  position: absolute;
   margin-bottom: 8px !important;
  left: 0;
   font-size: 1.1em !important;
  top: 0;
   font-style: italic !important;
  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);
}
}


.image-container p {
/* External Link */
   color: #5a6c7d !important;
.external-link {
   margin: 0 !important;
   color: var(--primary-pink);
   font-size: 0.85em !important;
   text-decoration: none;
   font-style: italic !important;
   border-bottom: 1px dashed var(--primary-pink);
  transition: all 0.3s ease;
   padding-right: 20px;
  position: relative;
}
}


/* Collapsible Elements */
.external-link::after {
.mw-body .collapsible,
   content: '↗';
#content .collapsible,
   position: absolute;
#mw-content-text .collapsible,
   right: 0;
button.collapsible {
   top: 0;
  background-color: #f1f1f1;
   font-size: 0.8em;
  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,
.external-link:hover {
#content .collapsible:hover,
  color: var(--dark-pink);
#mw-content-text .collapsible:hover,
   border-bottom-color: var(--dark-pink);
button.collapsible:hover {
   background-color: #ddd;
}
}


.mw-body .collapsible::after,
.section-header {
#content .collapsible::after,
   text-align: center;
#mw-content-text .collapsible::after,
   margin-bottom: clamp(12px, 2.5vw, 24px);
button.collapsible::after {
   content: '+';
  font-size: 18px;
  font-weight: bold;
  float: right;
   margin-left: 5px;
}
}


.mw-body .collapsible.active::after,
.section-header h2 {
#content .collapsible.active::after,
  margin: 0;
#mw-content-text .collapsible.active::after,
  font-size: clamp(20px, 3vw, 28px);
button.collapsible.active::after {
  color: var(--ink-900);
   content: '-';
 
  display: inline-block;
   padding-bottom: 6px;
}
}


.mw-body .collapsible-content,
.section-lead {
#content .collapsible-content,
  margin-top: 6px;
#mw-content-text .collapsible-content,
  color: var(--ink-500);
button.collapsible + .collapsible-content {
  font-size: clamp(13px, 2vw, 16px);
   padding: 0 18px;
}
   max-height: 0;
 
   overflow: hidden;
/* [GRIDS] HIGHLIGHTS GRID */
   transition: max-height 0.2s ease-out;
.highlights-grid {
  background-color: white;
   display: grid;
  border-radius: 0 0 4px 4px;
   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;
}
}


.mw-body .collapsible-content.active,
.stat-card {
#content .collapsible-content.active,
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
#mw-content-text .collapsible-content.active,
    backdrop-filter: blur(10px);
button.collapsible + .collapsible-content.active {
    -webkit-backdrop-filter: blur(10px);
  max-height: 500px;
    border-radius: 10px;
  padding: 18px;
    padding: 20px;
  border: 1px solid #ddd;
    text-align: center;
  border-top: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
}


/* [NAVIGATION] TAB SYSTEM
.stat-card:hover {
  ======================================== */
    transform: translateY(-5px);
.nav-tabs {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;
}
  flex-wrap: wrap;
 
  gap: 8px;
.stat-card h3 {
  align-items: center;
    margin: 0 0 10px 0;
  justify-content: center;
    font-size: 1.2rem;
  background: rgba(255,255,255,0.95);
    color: var(--primary-pink);
  border: 2px solid rgba(255, 111, 163, 0.18);
}
  border-radius: var(--radius-lg);
 
  max-width: var(--container-max);
.stat-card p {
  margin: 0 auto 16px auto;
    font-size: 2rem;
  padding: 8px;
    font-weight: bold;
  box-shadow: var(--shadow);
    margin: 0;
  backdrop-filter: blur(10px);
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
  position: relative;
    -webkit-background-clip: text;
  z-index: 10;
    background-clip: text;
    color: transparent;
}
}


.nav-tab {
.card {
   appearance: none;
   background: var(--surface);
   border: 0;
   border: 1px solid var(--border);
   cursor: pointer;
   border-left: 3px solid transparent;
  padding: 12px 16px;
   border-radius: var(--radius-md);
   border-radius: var(--radius-md);
   font-weight: 700;
   overflow: hidden;
  color: var(--ink-700);
   transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
  background: rgba(255,255,255,0.9);
   padding: 0;
  border: 2px solid transparent;
}
  border-left: 3px solid transparent;
 
  min-width: 120px;
.card:hover {
  flex: 1 1 160px;
  transform: translateY(-3px);
   transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease, padding .2s ease;
  box-shadow: var(--shadow);
   position: relative;
  background: #fff5fb;
   overflow: hidden;
  border-left-color: var(--primary-pink);
   padding-left: 4px;
}
 
.card-media {
   text-align: center;
   text-align: center;
   font-size: 14px;
   padding-top: 6px;
  line-height: 1.4;
}
}


.nav-tab::before {
.card-body {
   content: '';
   padding: 10px 12px;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
  transition: left 0.5s ease;
}
}


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


.nav-tab:hover {
/* [GRIDS] INFO GRID */
   transform: translateY(-2px);
.info-grid {
   box-shadow: var(--shadow);
   display: grid;
   color: var(--pink-900);
   gap: clamp(10px, 2vw, 16px);
   background: #fff5fb;
   grid-template-columns: repeat(3, 1fr);
  border-left-color: var(--primary-pink);
   margin-top: clamp(12px, 2.5vw, 24px);
  padding-left: 20px;
}
}


.nav-tab:focus {
.info-card {
   outline: 2px solid var(--primary-pink);
  background: var(--surface);
   outline-offset: 2px;
  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;
}
}


.nav-tab.active {
.info-card:hover {
   background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
   transform: translateY(-2px);
   color: #fff;
  box-shadow: var(--shadow-light);
   transform: translateY(-1px);
   background: #fff5fb;
   box-shadow: var(--shadow-pink);
   border-left-color: var(--primary-pink);
   padding-left: clamp(16px, 3vw, 22px);
}
}


.nav-tab.active:hover {
.inline-list {
   background: linear-gradient(135deg, var(--pink-600), var(--pink-800));
  list-style: none;
   transform: translateY(-3px);
  padding: 0;
   box-shadow: var(--shadow-pink-hover);
   margin: 0;
   display: flex;
  flex-wrap: wrap;
   gap: 8px 14px;
}
}


.nav-tab .short-text {
.inline-list li {
   display: none;
   white-space: nowrap;
}
}


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


/* Navigation accessibility */
.wikitable-like .column {
.nav-tabs[role="tablist"] .nav-tab[role="tab"][aria-selected="true"]::after {
   background: var(--surface);
   content: '';
   border: 1px solid var(--border);
   position: absolute;
   border-left: 3px solid transparent;
   bottom: -2px;
   border-radius: var(--radius-md);
  left: 50%;
   padding: 16px;
   transform: translateX(-50%);
   transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
   width: 80%;
   height: 3px;
  background: var(--primary-pink);
  border-radius: 2px;
}
}


/* Nested Tabs */
.wikitable-like .column:hover {
.nested-tabs {
   transform: translateY(-2px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255, 111, 163, 0.18);
  border-radius: var(--radius-md);
   max-width: var(--container-max);
  margin: 16px auto;
  padding: 8px;
   box-shadow: var(--shadow-light);
   box-shadow: var(--shadow-light);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
  padding-left: 20px;
}
}


.nested-tab {
.wikitable-like ul {
   appearance: none;
   margin: 0;
   border: 0;
   padding-left: 18px;
  cursor: pointer;
}
  padding: 8px 12px;
 
   border-radius: var(--radius-sm);
/* [SIDEBAR] SIDEBAR COMPONENTS */
  font-weight: 600;
.sidebar {
   color: var(--ink-700);
   margin-top: 16px;
   background: rgba(255,255,255,0.9);
}
   border: 1px solid transparent;
 
   border-left: 2px solid transparent;
.sidebar-inner {
   min-width: 100px;
   background: var(--surface);
   flex: 1 1 auto;
   border: 1px solid var(--border);
   transition: all .2s ease;
   border-left: 3px solid transparent;
  position: relative;
   border-radius: var(--radius-md);
  overflow: hidden;
   padding: 16px;
  text-align: center;
   box-shadow: var(--shadow);
  font-size: 13px;
   transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
  line-height: 1.4;
}
}


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


.nested-tab.active {
.sidebar-title {
   background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
   margin: 0 0 8px 0;
   color: #fff;
   font-size: clamp(16px, 2.5vw, 20px);
  transform: translateY(-1px);
  box-shadow: var(--shadow-light);
}
}


.nested-content {
.sidebar-list {
   display: none;
   margin: 0;
   padding: 16px;
   padding-left: 18px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  margin-top: 8px;
  border: 1px solid rgba(255, 111, 163, 0.1);
}
}


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


/* [TYPOGRAPHY] TEXT STYLING
.back-to-top {
  ======================================== */
   display: inline-block;
h1, h2, h3, h4, h5, h6 {
  padding: 10px 16px;
   color: var(--primary-pink) !important;
   font-weight: 700;
   font-weight: 700 !important;
   border-radius: 999px;
   font-style: italic;
   text-decoration: none;
   margin-bottom: var(--spacing-md) !important;
  color: #fff;
  margin-top: var(--spacing-lg) !important;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
}
}


h1, h2 {
/* Fixed Back to Top Button */
   background: var(--pink-gradient) !important;
.back-to-top-fixed {
   -webkit-background-clip: text !important;
  position: fixed;
   border-bottom: 2px solid var(--pink-500);
  bottom: 20px;
   background-clip: text !important;
  right: 20px;
   font-size: 2.5em !important;
   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;
}
}


h4 {
.back-to-top-fixed:hover {
   font-size: 2em !important;
   opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
}


.section-header {
.back-to-top-fixed::before {
   text-align: center;
   content: '↑';
   margin-bottom: clamp(12px, 2.5vw, 24px);
   font-size: 20px;
}
}


.section-header h2 {
/* [TYPOGRAPHY] HEADINGS STYLE */
   margin: 0;
h1, h2, h3, h4, h5, h6 {
   font-size: clamp(20px, 3vw, 28px);
   color: var(--primary-pink) !important;
   color: var(--ink-900);
  font-weight: 700 !important;
   display: inline-block;
   font-style: italic;
  padding-bottom: 6px;
   margin-bottom: var(--spacing-md) !important;
   margin-top: var(--spacing-lg) !important;
}
}


.section-lead {
h1,h2 {
   margin-top: 6px;
  background: var(--pink-gradient) !important;
   color: var(--ink-500);
   -webkit-background-clip: text !important;
   font-size: clamp(13px, 2vw, 16px);
   border-bottom: 2px solid var(--pink-500);
  background-clip: text !important;
   font-size: 2.5em !important;
}
}


/* Links */
h4 {
#mw-content-text a:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *) {
   font-size: 2em !important;
   color: #9a3b5f !important;
  display: inline-block !important;
  padding: 2px 4px !important;
  border-radius: 10px !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:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *):hover {
/* Collapsible Elements - Only for page content */
  color: var(--primary-pink) !important;
.mw-body .collapsible,
  background: #fff5fb !important;
#content .collapsible,
  border-left-color: var(--primary-pink) !important;
#mw-content-text .collapsible,
  padding-left: 8px !important;
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;
}
}


.external-link {
.mw-body .collapsible:hover,
  color: var(--primary-pink);
#content .collapsible:hover,
  text-decoration: none;
#mw-content-text .collapsible:hover,
  border-bottom: 1px dashed var(--primary-pink);
button.collapsible:hover {
  transition: all 0.3s ease;
    background-color: #ddd;
  padding-right: 20px;
  position: relative;
}
}


.external-link::after {
.mw-body .collapsible::after,
  content: '';
#content .collapsible::after,
  position: absolute;
#mw-content-text .collapsible::after,
  right: 0;
button.collapsible::after {
  top: 0;
    content: '+';
  font-size: 0.8em;
    font-size: 18px;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
}


.external-link:hover {
.mw-body .collapsible.active::after,
  color: var(--dark-pink);
#content .collapsible.active::after,
  border-bottom-color: var(--dark-pink);
#mw-content-text .collapsible.active::after,
button.collapsible.active::after {
    content: '-';
}
}


.mw-link-internal {
.mw-body .collapsible-content,
  color: var(--primary-pink) !important;
#content .collapsible-content,
  text-decoration: none !important;
#mw-content-text .collapsible-content,
  transition: var(--transition-normal) !important;
button.collapsible + .collapsible-content {
  border-bottom: 1px dotted transparent !important;
    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-link-internal:hover {
.mw-body .collapsible-content.active,
  color: var(--dark-pink) !important;
#content .collapsible-content.active,
  border-bottom-color: var(--primary-pink) !important;
#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;
}
}


.mw-redirect {
/* [LINKS] LINKS */
   color: var(--accent-pink) !important;
/* Content area links - enhanced animation */
#mw-content-text a:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *) {
   color: #9a3b5f !important;
 
  display: inline-block !important;
  padding: 2px 4px !important;
  border-radius: 10px !important;
  border-left: 3px solid transparent !important;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease !important;
}
}


/* [TABLES] TABLE STYLING
#mw-content-text a:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *):hover {
  ======================================== */
  color: var(--primary-pink) !important;
table.wikitable,
  background: #fff5fb !important;
.mw-datatable,
  border-left-color: var(--primary-pink) !important;
.faq-table,
  padding-left: 8px !important;
.daily-table {
 
   background: var(--background-primary) !important;
}
   border: 1px solid var(--border-light) !important;
 
 
/* [BUTTONS] BUTTONS */
.mw-ui-button:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *),
button:not(.nav-tab):not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *) {
  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:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *):hover,
button:not(.nav-tab):not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *):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;
   border-radius: var(--border-radius-small) !important;
   box-shadow: var(--shadow-light) !important;
   box-shadow: var(--shadow-light) !important;
   overflow: hidden !important;
   overflow: hidden !important;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  table-layout: auto;
  word-wrap: break-word;
}
}


table.wikitable th,
table.wikitable th,
.mw-datatable th,
.mw-datatable th,
.faq-table th,
.faq-table th {
.daily-table th {
   background: var(--secondary-pink) !important;
   background: var(--secondary-pink) !important;
   color: var(--text-primary) !important;
   color: var(--text-primary) !important;
Line 799: Line 870:
   padding: var(--spacing-md) !important;
   padding: var(--spacing-md) !important;
   border-bottom: 2px solid var(--primary-pink) !important;
   border-bottom: 2px solid var(--primary-pink) !important;
  text-align: left;
  word-wrap: break-word;
  hyphens: auto;
}
}


table.wikitable td,
table.wikitable td,
.mw-datatable td,
.mw-datatable td,
.faq-table td,
.faq-table td {
.daily-table td {
   padding: var(--spacing-md) !important;
   padding: var(--spacing-md) !important;
   border-bottom: 1px solid var(--border-light) !important;
   border-bottom: 1px solid var(--border-light) !important;
  word-wrap: break-word;
  hyphens: auto;
  min-width: 0;
}
}


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


.faq-table tr:nth-child(odd) td,
/* FAQ Table specific styles */
.daily-table tr:nth-child(odd) {
.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;
   background-color: rgba(255, 107, 157, 0.05) !important;
}
}


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


.daily-table img {
/* [FORMS] FORM ELEMENTS */
   max-width: 100px;
input[type="text"],
   height: auto;
input[type="search"],
   display: block;
textarea,
   margin: 0 auto;
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;
}
}


/* Responsive table behavior - natural adaptation first, scroll as fallback */
input[type="text"]:focus,
@media (max-width: 768px) {
input[type="search"]:focus,
  table.wikitable,
textarea:focus,
  .mw-datatable,
select:focus {
  .faq-table,
   border-color: var(--primary-pink) !important;
  .daily-table {
   outline: none !important;
    font-size: 0.9em;
   box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2) !important;
  }
 
  table.wikitable th,
  .mw-datatable th,
  .faq-table th,
   .daily-table th {
    padding: var(--spacing-sm) !important;
   }
    
  table.wikitable td,
  .mw-datatable td,
  .faq-table td,
  .daily-table td {
    padding: var(--spacing-sm) !important;
  }
}
}


/* Horizontal scroll only for very small screens */
/* [MW-ELEMENTS] SPECIAL MEDIAWIKI ELEMENTS */
@media (max-width: 550px) {
.mw-editsection {
   .table-container {
   color: var(--accent-pink) !important;
    width: 100%;
   font-size: 0.8em !important;
    overflow-x: auto;
    margin: 16px 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-pink) #f1f1f1;
  }
 
  .table-container table.wikitable,
  .table-container .mw-datatable,
  .table-container .faq-table,
  .table-container .daily-table {
    min-width: 400px;
    margin: 0;
    table-layout: fixed;
    width: max-content;
  }
 
  .table-container table.wikitable th,
  .table-container .mw-datatable th,
  .table-container .faq-table th,
  .table-container .daily-table th,
  .table-container table.wikitable td,
  .table-container .mw-datatable td,
  .table-container .faq-table td,
  .table-container .daily-table td {
    min-width: 120px;
    white-space: nowrap;
    scroll-snap-align: start;
    padding: 8px 12px;
  }
 
  .table-container::-webkit-scrollbar {
    height: 8px;
   }
 
  .table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
    margin: 0 4px;
  }
 
  .table-container::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 4px;
    border: 1px solid #f1f1f1;
  }
 
  .table-container::-webkit-scrollbar-thumb:hover {
    background: var(--dark-pink);
  }
 
  .table-container::-webkit-scrollbar-corner {
    background: #f1f1f1;
  }
}
}


/* [FORMS] FORM ELEMENTS
.mw-headline {
  ======================================== */
   border-bottom: 2px solid var(--pink-border) !important;
input[type="text"],
   padding-bottom: var(--spacing-sm) !important;
input[type="search"],
}
textarea,
 
select {
/* [UTILITIES] UTILITY CLASSES */
   border: 2px solid var(--border-light) !important;
.fade-in {
  border-radius: var(--border-radius-small) !important;
   animation: fadeInUp 0.6s ease-out;
   padding: var(--spacing-sm) var(--spacing-md) !important;
  font-family: inherit !important;
   transition: var(--transition-fast) !important;
}
}


input[type="text"]:focus,
.pulse {
input[type="search"]:focus,
   animation: pulse 2s infinite;
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;
}
}


/* Buttons */
.glass-effect {
.mw-ui-button:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *),
  background: rgba(255, 255, 255, 0.8) !important;
button:not(.nav-tab):not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *) {
  backdrop-filter: var(--blur-glass) !important;
   background: var(--pink-gradient) !important;
   border: 1px solid var(--pink-border) !important;
  color: white !important;
}
  border: none !important;
 
  border-radius: var(--border-radius-small) !important;
.pink-gradient-text {
   padding: var(--spacing-sm) var(--spacing-md) !important;
   background: var(--pink-gradient) !important;
   font-weight: 600 !important;
   -webkit-background-clip: text !important;
   cursor: pointer !important;
   -webkit-text-fill-color: transparent !important;
  transition: var(--transition-normal) !important;
   background-clip: text !important;
   box-shadow: var(--shadow-light) !important;
}
}


.mw-ui-button:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *):hover,
/* Shimmer animation */
button:not(.nav-tab):not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *):hover {
@keyframes shimmer {
   transform: translateY(-2px) !important;
   0% {
   box-shadow: var(--shadow-pink-hover) !important;
    background-position: -1000px 0;
   }
  100% {
    background-position: 1000px 0;
  }
}
}


.back-to-top {
/* [RESPONSIVE] RESPONSIVE DESIGN (Breakpoints & Layout) */
   display: inline-block;
@media (max-width: 1200px) {
  padding: 10px 16px;
   :root {
  font-weight: 700;
    --sidebar-width: 200px;
  border-radius: 999px;
    --content-margin: 220px;
   text-decoration: none;
   }
   color: #fff;
    
   background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
   .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
}


.back-to-top-fixed {
@media (max-width: 1024px) {
   position: fixed;
   :root {
  bottom: 20px;
    --sidebar-width: 180px;
  right: 20px;
    --content-margin: 200px;
  background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
   }
  color: white;
    
  width: 40px;
   body.skin-vector-legacy #content,
  height: 40px;
   body.skin-vector-legacy .mw-body {
   border-radius: 50%;
    margin-right: var(--spacing-md) !important;
   display: flex;
    padding: var(--spacing-lg) !important;
   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 {
@media (max-width: 900px) {
   opacity: 1;
   .nav-tab {
   transform: translateY(-3px);
    flex: 1 1 44%;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 44%;
  }
    
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
   }
 
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
}


.back-to-top-fixed::before {
@media (max-width: 768px) {
  content: '↑';
  body.skin-vector-legacy #content,
  font-size: 20px;
  body.skin-vector-legacy .mw-body {
    margin-right: var(--spacing-md) !important;
    margin-top: var(--spacing-md) !important;
    padding: var(--spacing-lg) !important;
  }
}
}


/* [UTILITIES] HELPER CLASSES
@media (max-width: 600px) {
  ======================================== */
  .nav-tab {
.fade-in {
    flex: 1 1 100%;
  animation: fadeInUp 0.6s ease-out;
    min-width: 100%;
}
  }
 
 
.pulse {
  .nav-tab .full-text {
  animation: pulse 2s infinite;
    display: none;
}
  }
 
 
.glass-effect {
  .nav-tab .short-text {
  background: rgba(255, 255, 255, 0.8) !important;
    display: inline;
   backdrop-filter: var(--blur-glass) !important;
   }
   border: 1px solid var(--pink-border) !important;
 
  .highlights-grid {
    grid-template-columns: 1fr;
  }
 
  .info-grid {
    grid-template-columns: 1fr;
   }
 
  .wikitable-like {
    grid-template-columns: 1fr;
  }
}
}


.pink-gradient-text {
@media (max-width: 480px) {
  background: var(--pink-gradient) !important;
  :root {
  -webkit-background-clip: text !important;
    --border-radius: 8px;
  -webkit-text-fill-color: transparent !important;
    --spacing-xl: 16px;
   background-clip: text !important;
    --spacing-lg: 12px;
  }
 
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body {
    margin-top: var(--spacing-sm) !important;
    margin-right: var(--spacing-sm) !important;
    margin-bottom: var(--spacing-sm) !important;
    padding: var(--spacing-md) !important;
    border-radius: var(--border-radius-small) !important;
   }
 
  h1 {
    font-size: 1.8em !important;
  }
}
}


.inline-list {
/* [ACCESSIBILITY] ACCESSIBILITY IMPROVEMENTS */
  list-style: none;
@media (prefers-reduced-motion: reduce) {
   padding: 0;
   * {
  margin: 0;
    animation-duration: 0.01ms !important;
  display: flex;
    animation-iteration-count: 1 !important;
  flex-wrap: wrap;
    transition-duration: 0.01ms !important;
   gap: 8px 14px;
   }
}
}


.inline-list li {
@media (prefers-contrast: high) {
   white-space: nowrap;
   :root {
    --primary-pink: #d63384;
    --text-primary: #000000;
    --border-color: #333333;
  }
}
}


/* Grid Layouts */
/* [PRINT] PRINT STYLES */
.highlights-grid {
@media print {
  display: grid;
  body.skin-vector-legacy #mw-panel,
   grid-template-columns: repeat(6, 1fr);
  body.skin-vector-legacy #mw-head,
   gap: clamp(10px, 2vw, 16px);
  body.skin-vector-legacy .vector-menu-tabs,
  margin: 1rem 0;
  body.skin-vector-legacy #footer {
}
    display: none !important;
 
   }
.info-grid {
 
  display: grid;
  body.skin-vector-legacy #content,
   gap: clamp(10px, 2vw, 16px);
   body.skin-vector-legacy .mw-body {
   grid-template-columns: repeat(3, 1fr);
    margin: 0 !important;
   margin-top: clamp(12px, 2.5vw, 24px);
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: white !important;
  }
 
  body {
    background: white !important;
   }
 
   * {
    color: black !important;
   }
}
}


.info-card {
/* [CHANGELOG-BOX] CHANGELOG BOX STYLES */
   background: var(--surface);
.changelog-box {
   border: 1px solid var(--border);
  /* Modern gradient background with subtle pink-to-white transition */
   border-left: 3px solid transparent;
   background: linear-gradient(135deg, #ffeef7 0%, #ffffff 50%, #f8f9fa 100%) !important;
   border-radius: var(--radius-md);
 
  padding: clamp(12px, 2.5vw, 18px);
  /* Generous internal spacing for better readability */
   transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
  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;
}
}


.info-card:hover {
/* Changelog with image layout */
   transform: translateY(-2px);
.changelog-with-image {
   box-shadow: var(--shadow-light);
   display: flex !important;
  background: #fff5fb;
   align-items: center !important; /* Changed from flex-start to center */
   border-left-color: var(--primary-pink);
   gap: 25px !important;
   padding-left: clamp(16px, 3vw, 22px);
   margin: 25px 0 !important;
}
}


.wikitable-like {
.changelog-with-image .changelog-box {
   display: grid;
   flex: 1 !important;
  gap: 16px;
   margin: 0 !important;
   grid-template-columns: repeat(3, 1fr);
}
}


.wikitable-like .column {
.image-container {
   background: var(--surface);
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #ffeef7 100%) !important;
   border: 1px solid var(--border);
   border: 1px solid rgba(255, 107, 157, 0.15) !important;
   border-left: 3px solid transparent;
   border-radius: 12px !important;
   border-radius: var(--radius-md);
  padding: 15px !important;
   padding: 16px;
   margin-top: 0 !important; /* Removed margin-top */
   transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
  margin-bottom: 12px !important;
  box-shadow: 0 2px 10px rgba(255, 107, 157, 0.06) !important;
   text-align: center !important;
   font-size: 0.9em !important;
  line-height: 1.4 !important;
  max-width: 100% !important; /* Ensure container doesn't overflow its parent */
  overflow: hidden !important; /* Prevent content from overflowing */
}
}


.wikitable-like .column:hover {
/* Make images inside image-container responsive */
   transform: translateY(-2px);
.image-container img {
  box-shadow: var(--shadow-light);
   max-width: 100% !important;
   background: #fff5fb;
   height: auto !important;
   border-left-color: var(--primary-pink);
   display: block !important;
   padding-left: 20px;
   margin: 0 auto !important;
}
}


.wikitable-like ul {
.image-container strong {
   margin: 0;
  color: #2c3e50 !important;
   padding-left: 18px;
  display: block !important;
   margin-bottom: 8px !important;
  font-size: 1.1em !important;
   font-style: italic !important;
}
}


/* Destaques Grid */
.image-container p {
.destaques-grid {
   color: #5a6c7d !important;
   display: grid;
   margin: 0 !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   font-size: 0.85em !important;
  gap: 15px;
   font-style: italic !important;
   margin: 30px auto;
   padding: 0 20px;
   max-width: 1200px;
  width: 100%;
}
}


.destaque-card {
/* Responsive design for changelog with image */
  background: var(--light-pink);
@media (max-width: 768px) {
   border: 2px solid var(--accent-pink);
   .changelog-with-image {
  border-radius: 15px;
    flex-direction: column !important;
  padding: 12px;
    align-items: center !important;
  text-align: center;
    gap: 20px !important;
  transition: all 0.3s ease;
   }
  min-height: 250px;
    
   display: flex;
   .changelog-image {
   flex-direction: column;
    order: -1 !important;
   align-items: center;
   }
  justify-content: flex-start;
    
   gap: 12px;
   .changelog-image img {
   position: relative;
    max-width: 150px !important;
   overflow: hidden;
   }
   cursor: pointer;
}
}


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


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


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


.destaque-card[data-link]:hover .destaque-text h3,
/* [DESTAQUE CARDS] HOLOGRAMSIE SERVICE CARDS */
.destaque-card[data-tab-trigger]:hover .destaque-text h3 {
.destaques-grid {
   color: var(--dark-pink);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 30px auto;
  padding: 0 20px;
  max-width: 1200px;
   width: 100%;
}
}


.destaque-card[data-link] *,
.destaque-card {
.destaque-card[data-tab-trigger] * {
  background: var(--light-pink);
   pointer-events: none;
   border: 2px solid var(--accent-pink);
}
  border-radius: 15px;
 
   padding: 12px;
.destaque-image {
   text-align: center;
  width: 100%;
   transition: all 0.3s ease;
   max-width: 180px;
   min-height: 250px;
   height: 140px;
   overflow: hidden;
   border-radius: 12px;
   display: flex;
   display: flex;
  flex-direction: column;
   align-items: center;
   align-items: center;
   justify-content: center;
   justify-content: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
}


.destaque-image img {
.destaque-card[data-link],
  width: 100%;
.destaque-card[data-tab-trigger] {
  height: 100%;
   cursor: pointer;
  object-fit: cover;
   border-radius: 10px;
}
}


.destaque-text {
.destaque-card[data-link]:hover,
  flex: 1;
.destaque-card[data-tab-trigger]:hover {
   display: flex;
   transform: translateY(-5px);
   flex-direction: column;
   box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
   justify-content: center;
   border-color: var(--primary-pink);
  gap: 10px;
}
}


.destaque-text h3 {
.destaque-card[data-link] .destaque-text h3,
.destaque-card[data-tab-trigger] .destaque-text h3 {
   color: var(--primary-pink);
   color: var(--primary-pink);
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}
}


.destaque-text p {
.destaque-card[data-link]:hover .destaque-text h3,
   color: var(--primary-pink);
.destaque-card[data-tab-trigger]:hover .destaque-text h3 {
  font-size: 0.9em;
   color: var(--dark-pink);
  line-height: 1.4;
  margin: 0;
  opacity: 0.8;
}
}


.destaque-card::before {
.destaque-card[data-link] *,
  content: '';
.destaque-card[data-tab-trigger] * {
  position: absolute;
   pointer-events: none;
  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 {
.destaque-image {
   opacity: 0.1;
  width: 100%;
  max-width: 180px;
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
   justify-content: center;
}
}


.destaque-card:hover {
.destaque-image img {
   transform: translateY(-5px);
  width: 100%;
   box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
   height: 100%;
   border-color: var(--primary-pink);
   object-fit: cover;
   border-radius: 10px;
}
}


 
.destaque-text {
 
  flex: 1;
.tab-footer {
   display: flex;
   display: flex;
  flex-direction: column;
   justify-content: center;
   justify-content: center;
   margin-top: clamp(12px, 2.5vw, 24px);
   gap: 10px;
}
}


/* Guide Styles */
.destaque-text h3 {
.guide-intro {
  color: var(--primary-pink);
   margin-bottom: 2rem;
 
  font-weight: bold;
   margin: 0;
  line-height: 1.2;
}
}


.guide-card {
.destaque-text p {
   background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
   color: var(--primary-pink);
  border-radius: var(--radius-md);
   font-size: 0.9em;
   padding: 1.5rem;
   line-height: 1.4;
   box-shadow: var(--shadow);
   margin: 0;
   border: 1px solid rgba(255, 111, 163, 0.2);
   opacity: 0.8;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  grid-column: span 2;
}
}


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


.guide-card-icon {
.destaque-card:hover::before {
  width: 80px;
   opacity: 0.1;
  height: 80px;
  display: flex;
   align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
}


.guide-card-icon img {
.destaque-card:hover {
   max-width: 100%;
  transform: translateY(-5px);
   max-height: 100%;
   box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
   border-color: var(--primary-pink);
}
}


.guide-section {
/* [ANIMATIONS] ANIMATION KEYFRAMES */
   margin-bottom: 3rem;
@keyframes fadeInUp {
  background: rgba(255,255,255,0.8);
   from {
  border-radius: var(--radius-lg);
    opacity: 0;
   padding: 2rem;
    transform: translateY(20px);
   box-shadow: var(--shadow);
   }
  border: 1px solid rgba(255, 111, 163, 0.15);
   to {
    opacity: 1;
    transform: translateY(0);
  }
}
}


.guide-section-title {
@keyframes pulse {
   color: var(--pink-900);
   0%, 100% {
   font-size: clamp(18px, 2.5vw, 24px);
    opacity: 1;
   margin-bottom: 1.5rem;
   }
  padding-bottom: 0.5rem;
   50% {
   border-bottom: 2px solid var(--pink-300);
    opacity: 0.7;
   }
}
}


.guide-content {
@keyframes slideInLeft {
   display: grid;
   from {
   grid-template-columns: 1fr 1fr;
    transform: translateX(-100%);
   gap: 2rem;
   }
   align-items: start;
   to {
    transform: translateX(0);
   }
}
}
/* Resources Footer Styles */
    .resources-footer {
      background-color: #fff;
      padding: 2rem;
      margin-top: 2rem;
      border-top: 1px solid #e0e0e0;
      box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    }
   
    .resources-footer .section-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }
   
    .resources-footer .info-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
   
    .resources-footer .footer-nav {
      display: flex;
      justify-content: center;
      margin-top: 1.5rem;
    }
   
    .resources-footer .back-to-top {
      display: inline-block;
      padding: 0.5rem 1rem;
      background-color: #f0f0f0;
      border-radius: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: all 0.2s ease;
    }
   
    .resources-footer .back-to-top:hover {
      background-color: #e0e0e0;
      transform: translateY(-2px);
    }


.guide-content.full-width {
/* Guardian Types Styling */
  grid-template-columns: 1fr;
.guardian-selector {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
}


.guide-image {
.selector-header {
  display: flex;
    text-align: center;
  flex-direction: column;
    margin-bottom: 20px;
  align-items: center;
}
}


.guide-image img {
.difficulty-slider-container {
  max-width: 100%;
    margin: 30px 0;
  border-radius: var(--radius-md);
    position: relative;
  box-shadow: var(--shadow);
}
}


.image-caption {
.difficulty-labels {
  margin-top: 0.5rem;
    display: flex;
  font-size: 0.9rem;
    justify-content: space-between;
  color: var(--ink-500);
    margin-bottom: 10px;
  text-align: center;
}
}


.guide-text {
.difficulty-labels span {
  color: var(--ink-700);
    font-size: 0.9em;
    color: #666;
    position: relative;
}
}


.guide-list {
.difficulty-slider {
  padding-left: 1.5rem;
    width: 100%;
  margin: 1rem 0;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, #4CAF50, #FFC107, #FF9800, #F44336, #9C27B0);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
}


.guide-list li {
.difficulty-slider::-webkit-slider-thumb {
  margin-bottom: 0.5rem;
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e91e63;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}
}


.info-box, .cta-box {
.difficulty-slider::-moz-range-thumb {
  padding: 1.5rem;
    width: 25px;
  border-radius: var(--radius-md);
    height: 25px;
  margin: 1.5rem 0;
    border-radius: 50%;
    background: #e91e63;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}
}


.info-box {
.guardian-preview-image {
  background: rgba(236, 239, 255, 0.8);
    margin: 20px auto;
  border-left: 4px solid var(--blue-500);
    max-width: 600px;
}
}


.cta-box {
/* Comparison Table Styling */
  background: linear-gradient(135deg, rgba(255, 236, 246, 0.9), rgba(255, 245, 250, 0.9));
.guardian-comparison-table-container {
  border: 1px solid var(--pink-300);
    margin: 40px 0;
  text-align: center;
  padding: 2rem;
}
}


.cta-box h4 {
.comparison-title {
  color: var(--pink-900);
    text-align: center;
  margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #e91e63;
}
}


.exchange-grid {
.guardian-comparison-table table {
  display: grid;
    width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    border-collapse: collapse;
  gap: 1.5rem;
    border-radius: 10px;
  margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
}


.exchange-card {
.guardian-comparison-table th {
  background: rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, #ff6b9d, #e91e63);
  border-radius: var(--radius-md);
    color: white;
  padding: 1.5rem;
    padding: 15px;
  box-shadow: var(--shadow);
    text-align: left;
  border: 1px solid rgba(255, 111, 163, 0.15);
  transition: transform 0.3s ease;
}
}


.exchange-card:hover {
.guardian-comparison-table td {
  transform: translateY(-3px);
    padding: 15px;
    border-bottom: 1px solid #eee;
}
}


.exchange-card h4 {
.guardian-comparison-table tr:last-child td {
  color: var(--pink-900);
    border-bottom: none;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--pink-200);
}
}


/* Resources Footer */
.guardian-comparison-table tr:nth-child(even) {
.resources-footer {
    background-color: rgba(255, 255, 255, 0.8);
  background-color: #fff;
  padding: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}
}


.resources-footer .section-header {
.guardian-comparison-table tr:nth-child(odd) {
  text-align: center;
    background-color: rgba(248, 248, 248, 0.8);
  margin-bottom: 1.5rem;
}
}


.resources-footer .info-card {
.difficulty-meter {
  background-color: #f9f9f9;
    height: 10px;
  border-radius: 10px;
    background-color: #eee;
  padding: 1.5rem;
    border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
    overflow: hidden;
}
}


.resources-footer .footer-nav {
.difficulty-fill {
  display: flex;
    height: 100%;
  justify-content: center;
    border-radius: 5px;
  margin-top: 1.5rem;
}
}


.resources-footer .back-to-top {
.regular-row .difficulty-fill {
  display: inline-block;
    background-color: #4CAF50;
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}
}


.resources-footer .back-to-top:hover {
.mighty-row .difficulty-fill {
  background-color: #e0e0e0;
    background-color: #FFC107;
  transform: translateY(-2px);
}
}


/* Guardian Types Styling */
.legendary-row .difficulty-fill {
.guardian-selector {
    background-color: #FF9800;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
}


.selector-header {
.superior-row .difficulty-fill {
  text-align: center;
    background-color: #F44336;
  margin-bottom: 20px;
}
}


.difficulty-slider-container {
.accomplished-row .difficulty-fill {
  margin: 30px 0;
    background-color: #9C27B0;
  position: relative;
}
}


.difficulty-labels {
/* Accordion Styling */
  display: flex;
.guardian-types-accordion {
  justify-content: space-between;
    margin: 40px 0;
  margin-bottom: 10px;
}
}


.difficulty-labels span {
.detailed-info-title {
  font-size: 0.9em;
    text-align: center;
  color: #666;
    margin-bottom: 10px;
  position: relative;
    font-size: 1.8em;
    color: #e91e63;
}
}


.difficulty-slider {
.detailed-info-subtitle {
  width: 100%;
    text-align: center;
  height: 10px;
    margin-bottom: 30px;
  border-radius: 5px;
    color: #666;
  background: linear-gradient(to right, #4CAF50, #FFC107, #FF9800, #F44336, #9C27B0);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
}


.difficulty-slider::-webkit-slider-thumb {
.guardian-accordion {
  -webkit-appearance: none;
    background-color: #f8f8f8;
  appearance: none;
    color: #444;
  width: 25px;
    cursor: pointer;
  height: 25px;
    padding: 18px;
  border-radius: 50%;
    width: 100%;
  background: #e91e63;
    text-align: left;
  cursor: pointer;
    border: none;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
    outline: none;
    transition: 0.4s;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
}


.difficulty-slider::-moz-range-thumb {
.guardian-accordion:hover {
  width: 25px;
    background-color: #f1f1f1;
  height: 25px;
  border-radius: 50%;
  background: #e91e63;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}
}


.guardian-preview-image {
.guardian-accordion.active {
  margin: 20px auto;
    border-radius: 10px 10px 0 0;
  max-width: 600px;
    margin-bottom: 0;
}
}


/* Comparison Table Styling */
.guardian-panel {
.guardian-comparison-table-container {
    padding: 0 18px;
  margin: 40px 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-radius: 0 0 10px 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
}


.comparison-title {
.guardian-type-detail {
  text-align: center;
    padding: 20px 0;
  margin-bottom: 20px;
  font-size: 1.8em;
  color: #e91e63;
}
}


.guardian-comparison-table table {
/* Color coding for accordion buttons */
  width: 100%;
.regular-accordion {
  border-collapse: collapse;
    border-left: 5px solid #4CAF50;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
}


.guardian-comparison-table th {
.mighty-accordion {
  background: linear-gradient(135deg, #ff6b9d, #e91e63);
    border-left: 5px solid #FFC107;
  color: white;
  padding: 15px;
  text-align: left;
}
}


.guardian-comparison-table td {
.legendary-accordion {
  padding: 15px;
    border-left: 5px solid #FF9800;
  border-bottom: 1px solid #eee;
}
}


.guardian-comparison-table tr:last-child td {
.superior-accordion {
  border-bottom: none;
    border-left: 5px solid #F44336;
}
}


.guardian-comparison-table tr:nth-child(even) {
.accomplished-accordion {
  background-color: rgba(255, 255, 255, 0.8);
    border-left: 5px solid #9C27B0;
}
}


.guardian-comparison-table tr:nth-child(odd) {
/* Difficulty tags */
  background-color: rgba(248, 248, 248, 0.8);
.difficulty-tag {
    font-size: 0.7em;
    padding: 5px 10px;
    border-radius: 20px;
    color: white;
}
}


.difficulty-meter {
.easy-tag {
  height: 10px;
    background-color: #4CAF50;
  background-color: #eee;
  border-radius: 5px;
  margin-bottom: 5px;
  overflow: hidden;
}
}


.difficulty-fill {
.moderate-tag {
  height: 100%;
    background-color: #FFC107;
  border-radius: 5px;
    color: #333;
}
}


.regular-row .difficulty-fill {
.challenging-tag {
  background-color: #4CAF50;
    background-color: #FF9800;
}
}


.mighty-row .difficulty-fill {
.very-hard-tag {
  background-color: #FFC107;
    background-color: #F44336;
}
}


.legendary-row .difficulty-fill {
.extreme-tag {
  background-color: #FF9800;
    background-color: #9C27B0;
}
}


.superior-row .difficulty-fill {
/* Decision Helper Styling */
  background-color: #F44336;
.decision-helper {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}
}


.accomplished-row .difficulty-fill {
.decision-questions {
  background-color: #9C27B0;
    margin: 30px 0;
}
}


/* Accordion Styling */
.decision-question {
.guardian-types-accordion {
    margin-bottom: 20px;
  margin: 40px 0;
}
}


.detailed-info-title {
.decision-options {
  text-align: center;
    display: flex;
  margin-bottom: 10px;
    flex-wrap: wrap;
  font-size: 1.8em;
    justify-content: center;
  color: #e91e63;
    gap: 10px;
    margin-top: 10px;
}
}


.detailed-info-subtitle {
.option {
  text-align: center;
    padding: 10px 15px;
  margin-bottom: 30px;
    background-color: #f1f1f1;
  color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
}


.guardian-accordion {
.option:hover {
  background-color: #f8f8f8;
    background-color: #e0e0e0;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
}


.guardian-accordion:hover {
.option.selected {
  background-color: #f1f1f1;
    background-color: #e91e63;
    color: white;
}
}


.guardian-accordion.active {
.decision-result {
  border-radius: 10px 10px 0 0;
    margin-top: 30px;
  margin-bottom: 0;
    padding: 15px;
    font-size: 1.1em;
    font-weight: bold;
}
}


.guardian-panel {
.guardian-accordion.recommended {
  padding: 0 18px;
    background-color: #f8e8ff;
  background-color: white;
    border-left: 5px solid #9c27b0;
  max-height: 0;
    animation: pulse 2s infinite;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-radius: 0 0 10px 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
}


.guardian-type-detail {
@keyframes pulse {
  padding: 20px 0;
    0% { box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(156, 39, 176, 0); }
    100% { box-shadow: 0 0 0 0 rgba(156, 39, 176, 0); }
}
}
   


/* Color coding for accordion buttons */
#recommendedType {
.regular-accordion {
    color: #e91e63;
  border-left: 5px solid #4CAF50;
    font-weight: 700;
}
}
 
               
.mighty-accordion {
/* Guardian Decision Helper - Responsive adjustments */
   border-left: 5px solid #FFC107;
@media (max-width: 768px) {
}
  .guardian-comparison-table th,
 
  .guardian-comparison-table td {
.legendary-accordion {
    padding: 10px;
  border-left: 5px solid #FF9800;
    font-size: 0.9em;
  }
 
   .difficulty-labels span {
    font-size: 0.8em;
  }
 
  .guardian-accordion {
    font-size: 1em;
  }
}
}


.superior-accordion {
/* [RESPONSIVE] DESTAQUES GRID - Mobile & Tablet Breakpoints */
  border-left: 5px solid #F44336;
@media (max-width: 1200px) {
  .destaques-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    max-width: 960px;
  }
}
}


.accomplished-accordion {
@media (max-width: 768px) {
  border-left: 5px solid #9C27B0;
  .destaques-grid {
}
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
 
    gap: 12px;
/* Difficulty tags */
    padding: 0 15px;
.difficulty-tag {
    max-width: 100%;
  font-size: 0.7em;
  }
  padding: 5px 10px;
 
   border-radius: 20px;
  .destaque-card {
   color: white;
    min-height: 220px;
    padding: 10px;
   }
 
  .destaque-image {
    height: 120px;
   }
}
}


.easy-tag {
@media (max-width: 480px) {
  background-color: #4CAF50;
  .destaques-grid {
}
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
 
    gap: 10px;
.moderate-tag {
    padding: 0 10px;
   background-color: #FFC107;
  }
  color: #333;
 
}
  .destaque-card {
 
    min-height: 200px;
.challenging-tag {
    padding: 8px;
  background-color: #FF9800;
  }
    
  .destaque-image {
    height: 100px;
    max-width: 140px;
  }
 
 
  .destaque-text p {
    font-size: 0.8em;
  }
}
}


.very-hard-tag {
/* Responsive adjustments for image-container */
  background-color: #F44336;
@media screen and (max-width: 768px) {
}
   .image-container {
 
     padding: 10px !important;
.extreme-tag {
     margin-bottom: 8px !important;
  background-color: #9C27B0;
   }
}
    
 
   .image-container strong {
/* Decision Helper Styling */
     font-size: 1em !important;
.decision-helper {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 25px;
  margin: 40px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
 
.decision-questions {
  margin: 30px 0;
}
 
.decision-question {
  margin-bottom: 20px;
}
 
.decision-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
 
.option {
  padding: 10px 15px;
  background-color: #f1f1f1;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
 
.option:hover {
  background-color: #e0e0e0;
}
 
.option.selected {
  background-color: #e91e63;
  color: white;
}
 
.decision-result {
  margin-top: 30px;
  padding: 15px;
  font-size: 1.1em;
  font-weight: bold;
}
 
.guardian-accordion.recommended {
  background-color: #f8e8ff;
  border-left: 5px solid #9c27b0;
  animation: pulse 2s infinite;
}
 
#recommendedType {
  color: #e91e63;
  font-weight: 700;
}
 
/* 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;
}
 
/* [ANIMATIONS] KEYFRAMES
  ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@keyframes fadeInOut {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}
 
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
 
/* [RESPONSIVE] MEDIA QUERIES
  ======================================== */
@media (max-width: 1200px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
 
  .destaques-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    max-width: 960px;
  }
}
 
@media (max-width: 1024px) {
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body {
    margin-right: var(--spacing-md) !important;
    padding: var(--spacing-lg) !important;
  }
}
 
@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: 768px) {
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body {
    margin-right: var(--spacing-md) !important;
    margin-top: var(--spacing-md) !important;
    padding: var(--spacing-lg) !important;
  }
 
  .guide-content {
    grid-template-columns: 1fr;
  }
 
  .guide-card {
    grid-column: span 3;
  }
 
  .exchange-grid {
    grid-template-columns: 1fr;
  }
 
  .destaques-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    padding: 0 15px;
    max-width: 100%;
  }
 
  .destaque-card {
    min-height: 220px;
    padding: 10px;
  }
 
  .destaque-image {
    height: 120px;
  }
 
  .changelog-with-image {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
 
  .changelog-image {
    order: -1 !important;
  }
 
  .changelog-image img {
    max-width: 150px !important;
  }
 
   .image-container {
     padding: 10px !important;
     margin-bottom: 8px !important;
   }
    
   .image-container strong {
     font-size: 1em !important;
  }
 
  .image-container p {
    font-size: 0.8em !important;
  }
 
  .info-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
 
  .guardian-comparison-table th,
  .guardian-comparison-table td {
    padding: 10px;
    font-size: 0.9em;
  }
 
  .difficulty-labels span {
    font-size: 0.8em;
  }
 
  .guardian-accordion {
    font-size: 1em;
  }
 
  .nested-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
 
  .nested-tab {
    flex: 1 1 calc(33.33% - 8px);
    min-width: calc(33.33% - 8px);
  }
}
 
@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;
  }
 
  .nested-tab {
    flex: 1 1 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
 
  .daily-table {
    display: block;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
 
  .daily-table th,
  .daily-table td {
    scroll-snap-align: start;
    min-width: 100px;
    white-space: nowrap;
  }
}
 
@media (max-width: 480px) {
  :root {
    --border-radius: 8px;
    --spacing-xl: 16px;
    --spacing-lg: 12px;
  }
 
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body {
    margin-top: var(--spacing-sm) !important;
    margin-right: var(--spacing-sm) !important;
    margin-bottom: var(--spacing-sm) !important;
    padding: var(--spacing-md) !important;
    border-radius: var(--border-radius-small) !important;
  }
 
  h1 {
    font-size: 1.8em !important;
  }
 
  .destaques-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    padding: 0 10px;
  }
 
  .destaque-card {
    min-height: 200px;
    padding: 8px;
  }
 
  .destaque-image {
    height: 100px;
    max-width: 140px;
   }
   }
    
    
   .destaque-text p {
   .image-container p {
     font-size: 0.8em;
     font-size: 0.8em !important;
   }
   }
    
    
   .image-container {
   /* Adjust grid layout for better mobile display */
    padding: 8px !important;
  .info-grid {
    margin-bottom: 6px !important;
     grid-template-columns: 1fr !important;
  }
     gap: 10px !important;
}
 
/* [ACCESSIBILITY] A11Y 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;
   }
   }
}
}


/* [PRINT] PRINT STYLES
@media screen and (max-width: 480px) {
  ======================================== */
   .image-container {
@media print {
     padding: 8px !important;
  body.skin-vector-legacy #mw-panel,
     margin-bottom: 6px !important;
  body.skin-vector-legacy #mw-head,
  body.skin-vector-legacy .vector-menu-tabs,
  body.skin-vector-legacy #footer {
    display: none !important;
   }
 
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body {
    margin: 0 !important;
     padding: 0 !important;
     box-shadow: none !important;
    border: none !important;
    background: white !important;
  }
 
  body {
    background: white !important;
  }
 
  * {
    color: black !important;
   }
   }
}
}


/* End of optimized CSS file */
/* End of CSS file - All styles properly closed */

Revision as of 06:05, 17 September 2025

/* CSS NAVIGATION GUIDE 
   ========================================
   
   QUICK NAVIGATION - Use Ctrl+F to find sections:
   
   1. THEME FOUNDATION
      • [VARIABLES] - CSS custom properties & color system
      • [GLOBAL] - Base styles & resets
      • [MEDIAWIKI] - MediaWiki compatibility layer
   
   2. PAGE STRUCTURE
      • [HERO] - Main banner/hero section
      • [NAVIGATION] - Enhanced tab navigation with animations
      • [CONTENT] - Content sections & animations
      • [GRIDS] - Responsive 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
      • [DESTAQUE CARDS] - cards with responsive grid
   
   5. UTILITIES & EFFECTS
      • [UTILITIES] - Helper classes & effects
      • [ANIMATIONS] - Keyframe animations & transitions
      • [CHANGELOG-BOX] - Styled changelog containers
   
   6. RESPONSIVE DESIGN
      • [RESPONSIVE] - Mobile & tablet breakpoints
      • [ACCESSIBILITY] - A11y improvements & focus states
      • [PRINT] - Print-friendly styles
   
   RECENT UPDATES:
   - Enhanced navigation with shimmer effects and accessibility
   - Responsive destaques-grid with mobile optimization
   - Improved focus states and ARIA support
   - Modern backdrop filters and glass morphism effects
   
   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 fully 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;
}

/* [MEDIAWIKI] MAIN CONTENT CONTAINER - Skin Vector Legacy specific */
body.skin-vector-legacy #content,
body.skin-vector-legacy .mw-body {
  border: 1px solid var(--border-light) !important;
  border-radius: var(--border-radius) !important;
  margin-top: var(--spacing-lg) !important;
  margin-bottom: var(--spacing-lg) !important;
  margin-right: var(--spacing-lg) !important;
  box-shadow: 0 0px 20px rgb(253, 91, 205) !important;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255, 205, 233, 0));
}

#content::before,
.mw-body::before {
  content: '' !important;
  position: absolute !important;
  top: -1px !important;
  left: -1px !important;
  right: -1px !important;
  bottom: -1px !important;
  background: var(--pink-gradient) !important;
  border-radius: var(--border-radius) !important;
  z-index: -1 !important;
  opacity: 0.1 !important;
}

/* [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: none !important;
}

.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));
  animation: fadeInOut 2s ease-in-out infinite;
}

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

/* 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.95);
  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);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.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.9);
  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;
  position: relative;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.nav-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-tab:hover::before {
  left: 100%;
}

.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:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

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

.nav-tab.active:hover {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-800));
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink-hover);
}

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

.nav-tab .full-text {
  display: inline;
}

/* Navigation accessibility improvements */
.nav-tabs[role="tablist"] .nav-tab[role="tab"] {
  position: relative;
}

.nav-tabs[role="tablist"] .nav-tab[role="tab"][aria-selected="true"]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: var(--primary-pink);
  border-radius: 2px;
}

/* [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);
  
  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;
  font-style: italic;
  margin-bottom: var(--spacing-md) !important;
  margin-top: var(--spacing-lg) !important;
}

h1,h2 {
  background: var(--pink-gradient) !important;
  -webkit-background-clip: text !important;
  border-bottom: 2px solid var(--pink-500);
  background-clip: text !important;
  font-size: 2.5em !important;
}

h4 {
  font-size: 2em !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 */
/* Content area links - enhanced animation */
#mw-content-text a:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *) {
  color: #9a3b5f !important;
  
  display: inline-block !important;
  padding: 2px 4px !important;
  border-radius: 10px !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:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *):hover {
  color: var(--primary-pink) !important;
  background: #fff5fb !important;
  border-left-color: var(--primary-pink) !important;
  padding-left: 8px !important;
  
}


/* [BUTTONS] BUTTONS */
.mw-ui-button:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *),
button:not(.nav-tab):not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *) {
  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:not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *):hover,
button:not(.nav-tab):not(.ve-ui *):not(.oo-ui-window *):not(.mw-editform *):not(.editOptions *):not(.wikiEditor-ui *):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: 1024px) {
  :root {
    --sidebar-width: 180px;
    --content-margin: 200px;
  }
  
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body {
    margin-right: var(--spacing-md) !important;
    padding: var(--spacing-lg) !important;
  }
}

@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: 768px) {
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body {
    margin-right: var(--spacing-md) !important;
    margin-top: var(--spacing-md) !important;
    padding: var(--spacing-lg) !important;
  }
}

@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;
  }
  
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body {
    margin-top: var(--spacing-sm) !important;
    margin-right: var(--spacing-sm) !important;
    margin-bottom: var(--spacing-sm) !important;
    padding: var(--spacing-md) !important;
    border-radius: var(--border-radius-small) !important;
  }
  
  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;
  }
}

/* [PRINT] PRINT STYLES */
@media print {
  body.skin-vector-legacy #mw-panel,
  body.skin-vector-legacy #mw-head,
  body.skin-vector-legacy .vector-menu-tabs,
  body.skin-vector-legacy #footer {
    display: none !important;
  }
  
  body.skin-vector-legacy #content,
  body.skin-vector-legacy .mw-body {
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: white !important;
  }
  
  body {
    background: white !important;
  }
  
  * {
    color: black !important;
  }
}

/* [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;
}

/* Changelog with image layout */
.changelog-with-image {
  display: flex !important;
  align-items: center !important; /* Changed from flex-start to center */
  gap: 25px !important;
  margin: 25px 0 !important;
}

.changelog-with-image .changelog-box {
  flex: 1 !important;
  margin: 0 !important;
}

.image-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #ffeef7 100%) !important;
  border: 1px solid rgba(255, 107, 157, 0.15) !important;
  border-radius: 12px !important;
  padding: 15px !important;
  margin-top: 0 !important; /* Removed margin-top */
  margin-bottom: 12px !important;
  box-shadow: 0 2px 10px rgba(255, 107, 157, 0.06) !important;
  text-align: center !important;
  font-size: 0.9em !important;
  line-height: 1.4 !important;
  max-width: 100% !important; /* Ensure container doesn't overflow its parent */
  overflow: hidden !important; /* Prevent content from overflowing */
}

/* Make images inside image-container responsive */
.image-container img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
}

.image-container strong {
  color: #2c3e50 !important;
  display: block !important;
  margin-bottom: 8px !important;
  font-size: 1.1em !important;
  font-style: italic !important;
}

.image-container p {
  color: #5a6c7d !important;
  margin: 0 !important;
  font-size: 0.85em !important;
  font-style: italic !important;
}

/* Responsive design for changelog with image */
@media (max-width: 768px) {
  .changelog-with-image {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  
  .changelog-image {
    order: -1 !important;
  }
  
  .changelog-image img {
    max-width: 150px !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(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 30px auto;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
}

.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-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);
  }
}
/* Resources Footer Styles */
    .resources-footer {
      background-color: #fff;
      padding: 2rem;
      margin-top: 2rem;
      border-top: 1px solid #e0e0e0;
      box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    }
    
    .resources-footer .section-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }
    
    .resources-footer .info-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .resources-footer .footer-nav {
      display: flex;
      justify-content: center;
      margin-top: 1.5rem;
    }
    
    .resources-footer .back-to-top {
      display: inline-block;
      padding: 0.5rem 1rem;
      background-color: #f0f0f0;
      border-radius: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: all 0.2s ease;
    }
    
    .resources-footer .back-to-top:hover {
      background-color: #e0e0e0;
      transform: translateY(-2px);
    }

/* Guardian Types Styling */
.guardian-selector {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.selector-header {
    text-align: center;
    margin-bottom: 20px;
}

.difficulty-slider-container {
    margin: 30px 0;
    position: relative;
}

.difficulty-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.difficulty-labels span {
    font-size: 0.9em;
    color: #666;
    position: relative;
}

.difficulty-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, #4CAF50, #FFC107, #FF9800, #F44336, #9C27B0);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.difficulty-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e91e63;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

.difficulty-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e91e63;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

.guardian-preview-image {
    margin: 20px auto;
    max-width: 600px;
}

/* Comparison Table Styling */
.guardian-comparison-table-container {
    margin: 40px 0;
}

.comparison-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #e91e63;
}

.guardian-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.guardian-comparison-table th {
    background: linear-gradient(135deg, #ff6b9d, #e91e63);
    color: white;
    padding: 15px;
    text-align: left;
}

.guardian-comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.guardian-comparison-table tr:last-child td {
    border-bottom: none;
}

.guardian-comparison-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.8);
}

.guardian-comparison-table tr:nth-child(odd) {
    background-color: rgba(248, 248, 248, 0.8);
}

.difficulty-meter {
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}

.difficulty-fill {
    height: 100%;
    border-radius: 5px;
}

.regular-row .difficulty-fill {
    background-color: #4CAF50;
}

.mighty-row .difficulty-fill {
    background-color: #FFC107;
}

.legendary-row .difficulty-fill {
    background-color: #FF9800;
}

.superior-row .difficulty-fill {
    background-color: #F44336;
}

.accomplished-row .difficulty-fill {
    background-color: #9C27B0;
}

/* Accordion Styling */
.guardian-types-accordion {
    margin: 40px 0;
}

.detailed-info-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.8em;
    color: #e91e63;
}

.detailed-info-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.guardian-accordion {
    background-color: #f8f8f8;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.guardian-accordion:hover {
    background-color: #f1f1f1;
}

.guardian-accordion.active {
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.guardian-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-radius: 0 0 10px 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.guardian-type-detail {
    padding: 20px 0;
}

/* Color coding for accordion buttons */
.regular-accordion {
    border-left: 5px solid #4CAF50;
}

.mighty-accordion {
    border-left: 5px solid #FFC107;
}

.legendary-accordion {
    border-left: 5px solid #FF9800;
}

.superior-accordion {
    border-left: 5px solid #F44336;
}

.accomplished-accordion {
    border-left: 5px solid #9C27B0;
}

/* Difficulty tags */
.difficulty-tag {
    font-size: 0.7em;
    padding: 5px 10px;
    border-radius: 20px;
    color: white;
}

.easy-tag {
    background-color: #4CAF50;
}

.moderate-tag {
    background-color: #FFC107;
    color: #333;
}

.challenging-tag {
    background-color: #FF9800;
}

.very-hard-tag {
    background-color: #F44336;
}

.extreme-tag {
    background-color: #9C27B0;
}

/* Decision Helper Styling */
.decision-helper {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.decision-questions {
    margin: 30px 0;
}

.decision-question {
    margin-bottom: 20px;
}

.decision-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.option {
    padding: 10px 15px;
    background-color: #f1f1f1;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    background-color: #e0e0e0;
}

.option.selected {
    background-color: #e91e63;
    color: white;
}

.decision-result {
    margin-top: 30px;
    padding: 15px;
    font-size: 1.1em;
    font-weight: bold;
}

.guardian-accordion.recommended {
    background-color: #f8e8ff;
    border-left: 5px solid #9c27b0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(156, 39, 176, 0); }
    100% { box-shadow: 0 0 0 0 rgba(156, 39, 176, 0); }
}
    

#recommendedType {
    color: #e91e63;
    font-weight: 700;
}
                
/* Guardian Decision Helper - Responsive adjustments */
@media (max-width: 768px) {
  .guardian-comparison-table th,
  .guardian-comparison-table td {
    padding: 10px;
    font-size: 0.9em;
  }
  
  .difficulty-labels span {
    font-size: 0.8em;
  }
  
  .guardian-accordion {
    font-size: 1em;
  }
}

/* [RESPONSIVE] DESTAQUES GRID - Mobile & Tablet Breakpoints */
@media (max-width: 1200px) {
  .destaques-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .destaques-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    padding: 0 15px;
    max-width: 100%;
  }
  
  .destaque-card {
    min-height: 220px;
    padding: 10px;
  }
  
  .destaque-image {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .destaques-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    padding: 0 10px;
  }
  
  .destaque-card {
    min-height: 200px;
    padding: 8px;
  }
  
  .destaque-image {
    height: 100px;
    max-width: 140px;
  }
  
  
  .destaque-text p {
    font-size: 0.8em;
  }
}

/* Responsive adjustments for image-container */
@media screen and (max-width: 768px) {
  .image-container {
    padding: 10px !important;
    margin-bottom: 8px !important;
  }
  
  .image-container strong {
    font-size: 1em !important;
  }
  
  .image-container p {
    font-size: 0.8em !important;
  }
  
  /* Adjust grid layout for better mobile display */
  .info-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

@media screen and (max-width: 480px) {
  .image-container {
    padding: 8px !important;
    margin-bottom: 6px !important;
  }
}

/* End of CSS file - All styles properly closed */