MediaWiki:Common.css: Difference between revisions

From CoraTO Wiki - Official Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* ========================================
 
   MODERN PINK THEME FOR CORATO WIKI
 
   Compatible with MediaWiki
/* 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
 
   ======================================== */
   ======================================== */


/* CSS VARIABLES - Theme colors and effects */
/* [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 {
   --light-pink: #ffeef7;
  /* PRIMARY BRAND COLORS - Pink Palette  */
   --dark-pink: #e91e63;
   --primary-pink: #ff6b9d;
   --accent-pink: #f8bbd9;
   --secondary-pink: #ffc3e0;
   --pink-cyber: #ff6b9d;
   --accent-pink: #ff8fb0;
   --pink-crystal: rgba(255, 107, 157, 0.3);
   --light-pink: #fff0f7;
   --gradient-bg: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
   --dark-pink: #d63384;
   --card-shadow: 0 8px 32px rgba(255, 107, 157, 0.2);
   --pink-gradient: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
   --hover-shadow: 0 12px 40px rgba(255, 107, 157, 0.3);
   --pink-glass: rgba(255, 107, 157, 0.15);
   --surface-glass: rgba(255, 255, 255, 0.1);
   --pink-shadow: rgba(255, 107, 157, 0.3);
   --surface-elevated: rgba(255, 255, 255, 0.15);
   --pink-border: rgba(255, 107, 157, 0.2);
   --glass-blur: blur(15px);
 
   --shadow-kawaii: 0 8px 32px rgba(255, 107, 157, 0.25);
  /* ADDITIONAL PINK SCALE  */
   --shadow-neon: 0 0 20px rgba(255, 107, 157, 0.6);
  --pink-50: #fff0f6;
   --space-lg: 20px;
  --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;
}
}


/* KEYFRAME ANIMATIONS */
/* [GLOBAL] BASE STYLES & RESETS
@keyframes pulse {
  ========================================
   0%, 100% { transform: scale(1); }
  Universal styles, box-sizing, typography, and body background.
  50% { transform: scale(1.05); }
  Sets up the foundation for all other styles to build upon.
  ======================================== */
* {
   box-sizing: border-box;
}
}


@keyframes sparkleRotate {
html, body {
   0% { transform: rotate(0deg) scale(1); }
   height: 100%;
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}
}


/* ALWAYS VISIBLE SIDEBAR - MediaWiki Compatible */
body {
body.mediawiki #mw-panel,
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, "Noto Sans", sans-serif !important;
body.skin-vector #mw-panel,
   line-height: 1.6 !important;
body.skin-vector-legacy #mw-panel,
   color: var(--text-primary) !important;
body.skin-timeless #mw-panel,
   background: linear-gradient(135deg, var(--pink-50), var(--pink-100) 40%, var(--pink-200)) !important;
#mw-panel,
   background-attachment: fixed !important;
.mw-panel,
   margin: 0 !important;
.sidebar {
  padding: 0 !important;
  display: block !important;
   min-height: 100vh !important;
   visibility: visible !important;
}
  opacity: 1 !important;
 
   position: fixed !important;
/* [MEDIAWIKI] COMPATIBILITY WRAPPER - Scoping for MediaWiki pages */
  left: 0 !important;
.mw-page-scope {
  top: 0 !important;
   padding: 16px;
  width: 180px !important;
  height: 100vh !important;
  overflow-y: auto !important;
  z-index: 100 !important;
   background: linear-gradient(135deg, rgba(255, 238, 247, 0.95) 0%, rgba(248, 187, 217, 0.95) 100%) !important;
   backdrop-filter: blur(15px) !important;
   box-shadow: 4px 0 20px rgba(233, 30, 99, 0.15) !important;
   border-right: 2px solid rgba(233, 30, 99, 0.2) !important;
   padding: 15px 0 !important;
}
}


/* Sidebar links styling */
/* [MEDIAWIKI] UTILITY BANNER - Supports MediaWiki file syntax overlays */
#mw-panel .portal {
.utility-banner {
   margin-bottom: 15px !important;
   position: relative;
   padding: 0 12px !important;
   min-height: 48px;
}
}


#mw-panel .portal h3 {
.utility-banner > * {
   color: #e91e63 !important;
   position: absolute;
  font-weight: 700 !important;
   top: 0;
  font-size: 1.0em !important;
   right: 8px;
  margin-bottom: 8px !important;
  padding: 6px 10px !important;
   background: rgba(233, 30, 99, 0.1) !important;
   border-radius: 8px !important;
  border-left: 3px solid #e91e63 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
}
}


#mw-panel .portal .body ul {
/* [MEDIAWIKI] MAIN CONTENT CONTAINER - Skin Vector Legacy specific */
   list-style: none !important;
body.skin-vector-legacy #content,
   margin: 0 !important;
body.skin-vector-legacy .mw-body {
   padding: 0 !important;
   background: var(--background-primary) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--border-radius) !important;
  box-shadow: var(--shadow-medium) !important;
  margin-top: var(--spacing-lg) !important;
  margin-bottom: var(--spacing-lg) !important;
   margin-right: var(--spacing-lg) !important;
   padding: var(--spacing-xl) !important;
  position: relative !important;
  backdrop-filter: var(--blur-glass) !important;
  overflow: visible !important;
}
}


#mw-panel .portal .body ul li {
#content::before,
   margin: 0 0 5px 0 !important;
.mw-body::before {
   padding: 0 !important;
   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;
}
}


#mw-panel .portal .body ul li a {
/* [HERO] HERO / BANNER SECTION */
   display: block !important;
.hero {
   padding: 6px 10px !important;
   background: rgba(255,255,255,0.85);
   color: #c44569 !important;
   border: 2px solid rgba(255, 111, 163, 0.18);
   text-decoration: none !important;
   border-radius: var(--radius-lg);
  border-radius: 6px !important;
   max-width: var(--container-max);
   transition: all 0.3s ease !important;
   margin: 0 auto 16px auto;
   font-weight: 500 !important;
   box-shadow: var(--shadow);
  border-left: 2px solid transparent !important;
   backdrop-filter: blur(10px);
   font-size: 0.9em !important;
}
}


#mw-panel .portal .body ul li a:hover {
.hero-inner {
   background: rgba(233, 30, 99, 0.15) !important;
   padding: clamp(18px, 3vw, 36px);
  color: #e91e63 !important;
   text-align: center;
   border-left: 2px solid #e91e63 !important;
  transform: translateX(3px) !important;
  box-shadow: 0 2px 6px rgba(233, 30, 99, 0.2) !important;
}
}


/* Special style for sidebar image */
.hero-title {
#mw-panel img {
   margin: 8px 0 4px 0;
   border-radius: 15px !important;
  font-size: clamp(22px, 4vw, 36px);
   box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3) !important;
   font-weight: 800;
   margin-bottom: 20px !important;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
   transition: transform 0.3s ease !important;
   -webkit-background-clip: text;
  background-clip: text;
   -webkit-text-fill-color: none !important;
}
}


#mw-panel img:hover {
.hero-subtitle {
   transform: scale(1.05) !important;
  color: var(--ink-500);
   font-size: clamp(14px, 2.2vw, 18px);
}
}


/* Custom scrollbar for sidebar */
.status-pill {
#mw-panel::-webkit-scrollbar {
  display: inline-block;
   width: 6px !important;
  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;
}
}


#mw-panel::-webkit-scrollbar-track {
@keyframes fadeInOut {
   background: rgba(255, 255, 255, 0.1) !important;
   0% { opacity: 0.6; }
   border-radius: 3px !important;
  50% { opacity: 1; }
   100% { opacity: 0.6; }
}
}


#mw-panel::-webkit-scrollbar-thumb {
/* Tip Box */
   background: rgba(233, 30, 99, 0.4) !important;
.tip-box {
   border-radius: 3px !important;
   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);
}
}


#mw-panel::-webkit-scrollbar-thumb:hover {
.tip-box::before {
   background: rgba(233, 30, 99, 0.6) !important;
  content: "💡 Tip";
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
   color: #4CAF50;
}
}


/* Adjusts main content to not overlap the sidebar - RESPONSIVE */
/* Warning Box */
@media screen and (min-width: 1px) {
.warning-box {
   body.mediawiki #content,
   background-color: rgba(255, 165, 0, 0.2);
   body.skin-vector #content,
   border-left: 4px solid #FF9800;
   body.skin-vector-legacy #content,
   padding: 15px;
   body.skin-timeless #content,
   margin: 20px 0;
   #content {
   border-radius: 4px;
    margin-left: 200px !important;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   }
}
}


/* Removes the hamburger menu button */
.warning-box::before {
.mw-ui-icon-menu {
  content: "⚠️ Warning";
   display: none !important;
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
   color: #FF9800;
}
}


/* CLICKABLE HIGHLIGHT CARDS */
/* [NAVIGATION] TAB NAVIGATION SYSTEM */
.destaque-card[data-link] {
.nav-tabs {
   cursor: pointer !important;
  display: flex;
   transition: all 0.3s ease !important;
  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;
}
}


.destaque-card[data-link]:hover {
.nav-tab {
   transform: translateY(-8px) !important;
  appearance: none;
   box-shadow: var(--hover-shadow) !important;
  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;
}
}


.destaque-card[data-link] .destaque-text h3 {
.nav-tab::before {
   color: var(--dark-pink) !important;
   content: '';
   transition: color 0.3s ease !important;
  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;
}
}


.destaque-card[data-link]:hover .destaque-text h3 {
.nav-tab:hover::before {
   color: var(--pink-cyber) !important;
   left: 100%;
}
}


.destaque-card[data-link] * {
.nav-tab:hover {
   transition: inherit !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--pink-900);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
   padding-left: 20px;
}
}


/* RESPONSIVE DESIGN - Mobile sidebar adjustments */
.nav-tab:focus {
@media screen and (max-width: 768px) {
   outline: 2px solid var(--primary-pink);
   /* Hide sidebar on small screens to save space */
   outline-offset: 2px;
  #mw-panel {
    display: none !important;
  }
 
  /* Adjust main content margin when sidebar is hidden */
  body.mediawiki #content,
  body.skin-vector #content,
  body.skin-vector-legacy #content,
  body.skin-timeless #content,
  #content {
    margin-left: 0 !important;
    padding: 10px !important;
   }
 
  /* Ensure navigation header is properly positioned */
  #mw-head {
    position: relative !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 10px !important;
  }
}
}


@media screen and (min-width: 769px) and (max-width: 1024px) {
.nav-tab.active {
  /* Tablet view - smaller sidebar */
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  #mw-panel {
   color: #fff;
    width: 150px !important;
   transform: translateY(-1px);
    font-size: 0.9em !important;
   box-shadow: var(--shadow-pink);
   }
 
  body.mediawiki #content,
   body.skin-vector #content,
   body.skin-vector-legacy #content,
  body.skin-timeless #content,
  #content {
    margin-left: 170px !important;
  }
}
}
 
 
  #mw-panel .portal .body ul li a {
.nav-tab.active:hover {
    padding: 3px 4px !important;
  background: linear-gradient(135deg, var(--pink-600), var(--pink-800));
    font-size: 0.7em !important;
  transform: translateY(-3px);
   }
   box-shadow: var(--shadow-pink-hover);
 
  #content, .mw-body {
    margin-left: 140px !important;
  }
}
}


@media screen and (max-height: 500px) and (orientation: landscape) {
.nav-tab .short-text {
  #mw-panel {
   display: none;
    width: 140px !important;
    font-size: 0.8em !important;
  }
    
  #content, .mw-body {
    margin-left: 160px !important;
  }
}
}


/* BASE STYLES */
.nav-tab .full-text {
  display: inline;
}


/* ========================================
/* Navigation accessibility improvements */
  BASE STYLES FOR PAGE BODY
.nav-tabs[role="tablist"] .nav-tab[role="tab"] {
  Overrides default MediaWiki styles
   position: relative;
  ======================================== */
body {
  /* Modern and readable font for the entire page */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    
  /* Pink gradient background covering the entire screen */
  background: linear-gradient(135deg, #ffeef7 0%, #f8bbd9 50%, #ff6b9d 100%) !important;
 
  /* Ensures minimum height of 100% of viewport */
  min-height: 100vh;
}
}


/* MAIN CONTENT CONTAINER
.nav-tabs[role="tablist"] .nav-tab[role="tab"][aria-selected="true"]::after {
  Creates a main card with translucent background */
   content: '';
#content {
   position: absolute;
   /* Semi-transparent white background for readability */
   bottom: -2px;
   background: rgba(255, 255, 255, 0.95) !important;
   left: 50%;
    
   transform: translateX(-50%);
   /* Modern rounded borders */
   width: 80%;
  border-radius: 20px !important;
   height: 3px;
    
   background: var(--primary-pink);
  /* Soft shadow for depth */
   border-radius: 2px;
  box-shadow: var(--card-shadow) !important;
    
   /* Background blur effect (glass morphism) */
  backdrop-filter: blur(10px) !important;
    
  /* Margin to separate from background */
  margin: 20px !important;
    
  /* Prevents content overflow */
  overflow: hidden !important;
}
}


/* MAIN WRAPPER
/* [CONTENT] CONTENT SECTIONS & ANIMATIONS */
  Centers and limits content width */
.content {
.main-wrapper {
   max-width: var(--container-max);
  /* Maximum width to avoid very long lines */
   max-width: 1400px;
 
  /* Centers horizontally */
   margin: 0 auto;
   margin: 0 auto;
 
  /* Internal spacing */
  padding: 20px;
}
}


/* MAIN PAGE BACKGROUND WRAPPER
.tab-content {
  Container for main content */
  display: none;
.mainpage-background-wrapper {
  background: rgba(255,255,255,0.98);
   /* Transparent background to show body gradient */
  border-radius: var(--radius-lg);
   background: transparent;
  border: 2px solid rgba(255, 111, 163, 0.18);
    
  box-shadow: var(--shadow);
   /* Consistent rounded borders */
  padding: clamp(16px, 3vw, 36px);
   border-radius: 20px;
}
    
 
   /* Controls overflow of child elements */
.tab-content.active {
   overflow: hidden;
   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 {
  HERO SECTION (MAIN HEADER)
  Highlight area at the top of the page
  ======================================== */
.hero-section {
  /* Semi-transparent light pink background */
  background: rgba(255, 238, 247, 0.4);
 
  /* Generous internal spacing */
  padding: 40px 20px;
 
  /* Centers all content */
  text-align: center;
 
  /* Main text color */
  color: #e91e63;
 
  /* Positioning for pseudo-elements */
   position: relative;
   position: relative;
    
   padding-left: 50px;
  /* Hides overflow for visual effects */
   margin-bottom: 25px;
  overflow: hidden;
   counter-increment: step-counter;
    
  /* Negative margin to expand beyond container */
   margin: -20px -20px 20px -20px;
}
}


/* HERO TEXTURE EFFECT
.step-item::before {
  Adds subtle dots for visual texture */
   content: counter(step-counter);
.hero-section::before {
  /* Empty pseudo-element for texture */
   content: '';
 
  /* Positions over entire hero area */
   position: absolute;
   position: absolute;
  left: 0;
   top: 0;
   top: 0;
   left: 0;
   width: 35px;
   right: 0;
   height: 35px;
   bottom: 0;
   background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    
   color: white;
   /* Inline SVG with white dots pattern */
   border-radius: 50%;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
   display: flex;
    
  align-items: center;
   /* Low opacity for subtle effect */
   justify-content: center;
   opacity: 0.3;
   font-weight: bold;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
}


/* HERO CONTENT
/* External Link */
  Ensures text stays above texture */
.external-link {
.hero-content {
   color: var(--primary-pink);
   /* Relative positioning for z-index */
  text-decoration: none;
  border-bottom: 1px dashed var(--primary-pink);
  transition: all 0.3s ease;
  padding-right: 20px;
   position: relative;
   position: relative;
 
  /* Stays above background texture */
  z-index: 2;
}
}


/* MAIN HERO TITLE
.external-link::after {
  Large and impactful title */
   content: '↗';
.hero-title {
   position: absolute;
   /* Large size for visual impact */
   right: 0;
   font-size: 3.5em !important;
   top: 0;
    
   font-size: 0.8em;
  /* Bold font weight */
  font-weight: 700 !important;
    
  /* Margin only at bottom */
  margin: 0 0 20px 0 !important;
    
  /* Subtle text shadow for readability */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1) !important;
 
  /* Dark pink color */
  color: #e91e63 !important;
 
  /* Removes default MediaWiki borders */
  border: none !important;
}
}


/* HERO SUBTITLE
.external-link:hover {
  Secondary text below main title */
   color: var(--dark-pink);
.hero-subtitle {
   border-bottom-color: var(--dark-pink);
   /* Medium size, smaller than title */
  font-size: 1.3em;
    
  /* Bottom spacing */
  margin-bottom: 20px;
 
  /* Slightly transparent for visual hierarchy */
  opacity: 0.95;
}
}


/* CONSTRUCTION NOTICE */
.section-header {
.construction-notice {
   text-align: center;
   background: var(--surface-glass) !important;
   margin-bottom: clamp(12px, 2.5vw, 24px);
  border: 2px solid var(--pink-crystal) !important;
   border-radius: 15px !important;
  padding: 15px 30px !important;
  display: inline-block !important;
  font-weight: bold !important;
  font-size: 1.1em !important;
  color: var(--dark-pink) !important;
  backdrop-filter: var(--glass-blur) !important;
  animation: pulse 2s infinite !important;
}
}


/* ========================================
.section-header h2 {
  MAIN PAGE CONTENT LAYOUT
   margin: 0;
  Flexbox system for responsive organization
   font-size: clamp(20px, 3vw, 28px);
  ======================================== */
   color: var(--ink-900);
#mainpage-content {
   /* Flexible layout for columns */
  display: flex;
    
  /* Spacing between elements */
  gap: 30px;
    
  /* Internal spacing */
  padding: 40px 20px;
 
  /* Allows line breaks on smaller screens */
  flex-wrap: wrap;
    
    
   /* Aligns items at the top */
   display: inline-block;
   align-items: flex-start;
   padding-bottom: 6px;
}
}


/* MAIN PAGE CONTENT CELL
.section-lead {
  Flexible container for sections */
   margin-top: 6px;
.mainpage-cell {
   color: var(--ink-500);
   /* Grows to occupy available space */
   font-size: clamp(13px, 2vw, 16px);
   flex: 1;
    
  /* Minimum width to maintain readability */
  min-width: 300px;
}
}


/* DOUBLE MAIN PAGE CONTENT CELL
/* [GRIDS] HIGHLIGHTS GRID */
  Larger container for main content */
.highlights-grid {
.mainpage-cell-double {
   display: grid;
   /* Occupies twice the space of a normal cell */
   grid-template-columns: repeat(6, 1fr);
   flex: 2;
   gap: clamp(10px, 2vw, 16px);
    
   margin: 1rem 0;
   /* Larger minimum width for extensive content */
  min-width: 600px;
}
}


/* ========================================
/* Quick Stats Grid */
  MEDIAWIKI TITLES
.quick-stats {
  Overrides default header styles
    display: grid;
  ======================================== */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
.mw-headline {
    gap: 15px;
  /* Large size for visual hierarchy */
    margin: 25px 0;
  font-size: 2.2em !important;
}
 
  /* Dark pink color for emphasis */
  color: var(--dark-pink) !important;
 
  /* Margins for proper spacing */
  margin: 30px 0 20px 0 !important;
 
  /* Bottom spacing for border */
  padding-bottom: 10px !important;
 


 
.stat-card {
  /* Positioning for pseudo-elements */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  position: relative !important;
    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;
}
}


/* DECORATIVE TITLE DETAIL
.stat-card:hover {
  Small gradient bar below the title */
    transform: translateY(-5px);
.mw-headline::after {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  /* Empty pseudo-element for decoration */
  content: '' !important;
 
  /* Positions absolutely relative to title */
  position: absolute !important;
 
  /* Aligns with bottom border */
  bottom: -3px !important;
 
  /* Aligns to the left */
  left: 0 !important;
 
  /* Small width for subtle emphasis */
  width: 60px !important;
 
  /* Height equal to border */
  height: 3px !important;
 
  /* Pink gradient for visual effect */
  background: var(--gradient-bg) !important;
 
  /* Rounded borders */
  border-radius: 2px !important;
}
}


/* SPECIFIC H2 TITLES
.stat-card h3 {
  Ensures consistency in second-level titles */
    margin: 0 0 10px 0;
h2 .mw-headline {
    font-size: 1.2rem;
  /* Maintains consistent size */
    color: var(--primary-pink);
  font-size: 2.2em !important;
 
  /* Dark pink color */
  color: var(--dark-pink) !important;
}
}


/* ========================================
.stat-card p {
  HIGHLIGHTS GRID
    font-size: 2rem;
  Grid layout for highlight cards
    font-weight: bold;
  ======================================== */
    margin: 0;
.destaques-grid {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
  /* CSS grid layout */
    -webkit-background-clip: text;
  display: grid;
    background-clip: text;
 
    color: transparent;
  /* 6 equal columns on large screens */
  grid-template-columns: repeat(6, 1fr);
 
  /* Spacing between cards */
  gap: 15px;
 
  /* Vertical margins */
  margin: 30px 0;
 
  /* Side spacing */
  padding: 0 20px;
}
}


/* HIGHLIGHT CARD
.card {
  Individual card for each highlighted item */
   background: var(--surface);
.destaque-card {
   border: 1px solid var(--border);
  /* Light pink background */
   border-left: 3px solid transparent;
   background: var(--light-pink);
   border-radius: var(--radius-md);
 
  /* Pink accent border */
   border: 2px solid var(--accent-pink);
 
  /* Modern rounded borders */
   border-radius: 15px;
    
  /* Internal spacing */
  padding: 12px;
 
  /* Centers content horizontally */
  text-align: center;
 
  /* Smooth transition for hover effects */
  transition: all 0.3s ease;
 
  /* Minimum height for consistency */
  min-height: 250px;
 
  /* Vertical flexible layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
 
  /* Spacing between internal elements */
  gap: 12px;
 
  /* Positioning for pseudo-elements */
  position: relative;
 
  /* Hides overflow for visual effects */
   overflow: hidden;
   overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
  padding: 0;
}
}


/* HIGHLIGHT IMAGE CONTAINER
.card:hover {
  Area for image within the card */
   transform: translateY(-3px);
.destaque-image {
   box-shadow: var(--shadow);
   /* Full available width */
   background: #fff5fb;
  width: 100%;
   border-left-color: var(--primary-pink);
    
   padding-left: 4px;
  /* Maximum width for control */
  max-width: 180px;
 
  /* Fixed height for consistency */
  height: 140px;
    
  /* Hides parts of the image that exceed the container */
  overflow: hidden;
 
  /* Rounded borders */
   border-radius: 12px;
 
  /* Flexbox to center image */
  display: flex;
  align-items: center;
   justify-content: center;
}
}


/* IMAGE WITHIN CONTAINER
.card-media {
  Styling for the actual image */
   text-align: center;
.destaque-image img {
   padding-top: 6px;
   /* Occupies entire container */
  width: 100%;
  height: 100%;
 
  /* Maintains proportion and fills container */
  object-fit: cover;
    
  /* Slightly smaller rounded borders */
  border-radius: 10px;
}
}


/* CARD TEXT AREA
.card-body {
  Container for title and description */
   padding: 10px 12px;
.destaque-text {
   /* Occupies remaining card space */
  flex: 1;
 
  /* Vertical flexible layout */
  display: flex;
  flex-direction: column;
 
  /* Centers content vertically */
  justify-content: center;
 
  /* Spacing between title and description */
  gap: 10px;
}
}


/* HIGHLIGHT CARD TITLE
.card-title {
  Main title of each item */
.destaque-text h3 {
  /* Main pink color for emphasis */
  color: var(--dark-pink);
 
  /* Small but readable font size */
  font-size: 0.75em;
 
  /* Bold text */
  font-weight: bold;
 
  /* Removes default margin */
   margin: 0;
   margin: 0;
    
   font-size: clamp(14px, 2.2vw, 18px);
   /* Compact line height */
   color: var(--ink-900);
   line-height: 1.2;
   text-align: center;
}
}


/* HIGHLIGHT CARD DESCRIPTION
/* [GRIDS] INFO GRID */
  Descriptive text for each item */
.info-grid {
.destaque-text p {
   display: grid;
   /* Dark pink color for contrast */
   gap: clamp(10px, 2vw, 16px);
   color: var(--dark-pink);
   grid-template-columns: repeat(3, 1fr);
    
   margin-top: clamp(12px, 2.5vw, 24px);
  /* Slightly smaller font size */
  font-size: 0.9em;
 
  /* Line height for readability */
  line-height: 1.4;
 
  /* Removes default margins */
   margin: 0;
 
  /* Slightly transparent for hierarchy */
  opacity: 0.8;
}
}


/* CARD HOVER BACKGROUND EFFECT
.info-card {
  Gradient that appears when hovering */
   background: var(--surface);
.destaque-card::before {
   border: 1px solid var(--border);
   /* Empty pseudo-element for effect */
   border-left: 3px solid transparent;
  content: '';
   border-radius: var(--radius-md);
    
   padding: clamp(12px, 2.5vw, 18px);
  /* Positions absolutely */
   transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
  position: absolute;
    
  /* Expanded position to cover entire card */
  top: -50%;
  left: -50%;
   width: 200%;
  height: 200%;
 
  /* Pink background gradient */
  background: var(--gradient-bg);
    
  /* Initially invisible */
  opacity: 0;
 
  /* Smooth opacity transition */
   transition: opacity 0.3s ease;
 
  /* Stays behind content */
  z-index: 1;
}
}


/* ACTIVATES BACKGROUND EFFECT ON HOVER
.info-card:hover {
  Makes the gradient visible when hovering */
  transform: translateY(-2px);
.destaque-card:hover::before {
  box-shadow: var(--shadow-light);
   /* Low opacity for subtle effect */
  background: #fff5fb;
   opacity: 0.1;
   border-left-color: var(--primary-pink);
   padding-left: clamp(16px, 3vw, 22px);
}
}


/* HIGHLIGHT CARD HOVER EFFECT
.inline-list {
  Animation when hovering over the card */
   list-style: none;
.destaque-card:hover {
   padding: 0;
   /* Moves the card upward */
   margin: 0;
   transform: translateY(-5px);
   display: flex;
    
   flex-wrap: wrap;
   /* More intense shadow */
   gap: 8px 14px;
   box-shadow: var(--hover-shadow);
    
  /* Changes border color to main pink */
  border-color: var(--dark-pink);
}
}


/* ========================================
.inline-list li {
  MEDIAWIKI TABLES
   white-space: nowrap;
  Overrides default table styles
  ======================================== */
.wikitable {
  /* Clean white background */
  background: white !important;
 
  /* Modern rounded borders */
  border-radius: 15px !important;
 
  /* Hides overflow for rounded borders */
  overflow: hidden !important;
 
  /* Soft shadow for depth */
  box-shadow: var(--card-shadow) !important;
 
  /* Vertical margins */
  margin: 20px 0 !important;
 
  /* Removes default borders */
  border: none !important;
 
  /* Responsive maximum width */
  max-width: 100% !important;
 
  /* Remove horizontal scroll */
  overflow-x: visible !important;
 
  /* Display table for responsive layout */
  display: table !important;
 
  /* Allows line breaks */
   white-space: normal !important;
 
  /* Automatic table layout */
  table-layout: auto !important;
}
}


/* TABLE CELLS
/* [GRIDS] TABLE-LIKE RESPONSIVE COLUMNS */
  Styling for individual cells */
.wikitable-like {
.wikitable td {
   display: grid;
   /* Generous internal spacing */
   gap: 16px;
  padding: 20px !important;
   grid-template-columns: repeat(3, 1fr);
    
  /* Aligns content at top */
  vertical-align: top !important;
    
  /* Pink right border for separation */
  border-right: 1px solid var(--accent-pink) !important;
 
  /* Subtle background gradient */
  background: linear-gradient(135deg, #ffffff 0%, var(--light-pink) 100%) !important;
 
  /* Removes default borders */
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
 
  /* Display table-cell for responsive layout */
  display: table-cell !important;
 
  /* Automatic width for responsiveness */
  width: auto !important;
 
  /* Box-sizing for correct calculation */
  box-sizing: border-box !important;
 
  /* Allows line breaks within cell */
  white-space: normal !important;
}
}


/* LAST TABLE CELL
.wikitable-like .column {
  Removes right border from last column */
  background: var(--surface);
.wikitable td:last-child {
   border: 1px solid var(--border);
   /* Removes right border for clean finish */
   border-left: 3px solid transparent;
   border-right: none !important;
  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;
}
}


/* TABLE ROWS
.wikitable-like .column:hover {
  Styling for table rows */
   transform: translateY(-2px);
.wikitable tr {
   box-shadow: var(--shadow-light);
   /* Removes default borders */
   background: #fff5fb;
   border: none !important;
   border-left-color: var(--primary-pink);
 
   padding-left: 20px;
  /* Transparent background */
   background: transparent !important;
    
  /* Display table-row for responsive layout */
  display: table-row !important;
    
  /* Full available width */
  width: 100% !important;
}
}


/* LISTS WITHIN TABLES
.wikitable-like ul {
  Removes default list styling */
   margin: 0;
.wikitable ul {
   padding-left: 18px;
   /* Removes list markers */
  list-style: none !important;
 
  /* Removes internal spacing */
   padding: 0 !important;
 
  /* Removes margins */
  margin: 0 !important;
}
}


/* LIST ITEMS WITHIN TABLES
/* [SIDEBAR] SIDEBAR COMPONENTS */
  Styling for individual items */
.sidebar {
.wikitable li {
   margin-top: 16px;
  /* Vertical margins for spacing */
   margin: 12px 0 !important;
 
  /* Vertical internal spacing */
  padding: 8px 0 !important;
 
  /* Subtle separator line */
  border-bottom: 1px solid rgba(255, 107, 157, 0.2) !important;
}
}


/* LAST LIST ITEM
.sidebar-inner {
  Removes separator line from last item */
  background: var(--surface);
.wikitable li:last-child {
  border: 1px solid var(--border);
   /* Removes bottom border for clean finish */
   border-left: 3px solid transparent;
   border-bottom: none !important;
   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;
}
}


/* LINKS WITHIN TABLES
.sidebar-inner:hover {
  Link styling */
   transform: translateY(-2px);
.wikitable a {
   box-shadow: var(--shadow-medium);
   /* Dark pink color */
   background: #fff5fb;
   color: var(--dark-pink) !important;
   border-left-color: var(--primary-pink);
    
   padding-left: 20px;
  /* Removes default underline */
  text-decoration: none !important;
    
  /* Medium font weight */
  font-weight: 500 !important;
 
  /* Smooth transition for effects */
  transition: all 0.3s ease !important;
    
  /* Positioning for pseudo-elements */
  position: relative !important;
}
}


/* LINK HOVER EFFECT
.sidebar-title {
  Animation when hovering over links */
   margin: 0 0 8px 0;
.wikitable a:hover {
   font-size: clamp(16px, 2.5vw, 20px);
   /* Changes to main pink */
  color: var(--dark-pink) !important;
    
  /* Adds left spacing for arrow */
  padding-left: 10px !important;
}
}


/* DECORATIVE LINK ARROW
.sidebar-list {
  Arrow that appears before link on hover */
   margin: 0;
.wikitable a::before {
   padding-left: 18px;
   /* Unicode arrow */
  content: '→' !important;
    
  /* Positions to the left of link */
  position: absolute !important;
  left: -15px !important;
 
  /* Initially invisible */
  opacity: 0 !important;
 
  /* Smooth opacity transition */
  transition: opacity 0.3s ease !important;
}
}


/* ACTIVATES ARROW ON HOVER
/* [CONTENT] TAB FOOTER / NAVIGATION */
  Makes arrow visible when hovering */
.tab-footer {
.wikitable a:hover::before {
  display: flex;
   /* Makes arrow fully visible */
   justify-content: center;
   opacity: 1 !important;
   margin-top: clamp(12px, 2.5vw, 24px);
}
}


/* ========================================
.back-to-top {
  TABLE COLUMN TITLES
   display: inline-block;
  Special styling for headers
   padding: 10px 16px;
  ======================================== */
   font-weight: 700;
.wikitable td > strong:first-child {
   border-radius: 999px;
   /* Main pink color for emphasis */
   text-decoration: none;
  color: var(--dark-pink) !important;
   color: #fff;
    
   background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  /* Larger size than normal text */
}
  font-size: 1.2em !important;
 
  /* Bold font weight */
   font-weight: 700 !important;
    
  /* Uppercase text for impact */
  text-transform: uppercase !important;
    
  /* Letter spacing */
  letter-spacing: 0.5px !important;
    
  /* Display block to occupy entire line */
  display: block !important;
    
  /* Bottom margin for separation */
  margin-bottom: 15px !important;
 
  /* Bottom spacing for border */
  padding-bottom: 8px !important;
 
  /* Pink bottom line */


 
/* Fixed Back to Top Button */
  /* Positioning for pseudo-elements */
.back-to-top-fixed {
   position: relative !important;
   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;
}
}


/* DECORATIVE DETAIL FOR COLUMN TITLES
.back-to-top-fixed:hover {
  Small gradient bar below the title */
   opacity: 1;
.wikitable td > strong:first-child::after {
   transform: translateY(-3px);
  /* Empty pseudo-element for decoration */
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  content: '' !important;
 
  /* Positions absolutely */
  position: absolute !important;
 
  /* Aligns with bottom border */
  bottom: -2px !important;
 
  /* Aligns to the left */
  left: 0 !important;
    
  /* Small width for subtle emphasis */
  width: 30px !important;
    
  /* Height equal to border */
  height: 2px !important;
 
  /* Pink gradient for visual effect */
  background: var(--gradient-bg) !important;
    
  /* Rounded borders */
  border-radius: 1px !important;
}
}


/* ========================================
.back-to-top-fixed::before {
  CLASSES GRID
   content: '↑';
  Grid layout for class selection
   font-size: 20px;
  ======================================== */
.classes-grid {
  /* CSS grid layout */
  display: grid;
 
  /* 3 equal columns */
  grid-template-columns: repeat(3, 1fr);
 
  /* Spacing between cells */
  gap: 15px;
 
  /* Clean white background */
  background: white;
 
  /* Generous internal spacing */
   padding: 25px;
    
  /* Rounded borders */
  border-radius: 15px;
 
  /* Shadow for depth */
  box-shadow: var(--card-shadow);
 
  /* Vertical margins */
  margin: 20px 0;
}
}


/* INDIVIDUAL CLASS CELL
/* [TYPOGRAPHY] HEADINGS STYLE */
  Card for each game class */
h1, h2, h3, h4, h5, h6 {
.class-cell {
   color: var(--primary-pink) !important;
   /* Subtle background gradient */
   font-weight: 700 !important;
  background: linear-gradient(135deg, var(--light-pink) 0%, #ffffff 100%);
   font-style: italic;
    
   margin-bottom: var(--spacing-md) !important;
   /* Pink highlight border */
   margin-top: var(--spacing-lg) !important;
   border: 2px solid var(--accent-pink);
    
  /* Rounded borders */
  border-radius: 12px;
 
  /* Internal spacing */
  padding: 20px 15px;
 
  /* Centers content */
  text-align: center;
 
  /* Smooth transition for effects */
  transition: all 0.3s ease;
 
  /* Positioning for pseudo-elements */
  position: relative;
 
  /* Hides overflow for effects */
  overflow: hidden;
}
}


/* CELL SLIDING EFFECT
h1,h2 {
  Gradient that slides from left to right */
   background: var(--pink-gradient) !important;
.class-cell::before {
   -webkit-background-clip: text !important;
   /* Empty pseudo-element for effect */
   border-bottom: 2px solid var(--pink-500);
  content: '';
   background-clip: text !important;
    
   font-size: 2.5em !important;
  /* Positions absolutely */
  position: absolute;
  top: 0;
 
  /* Starts off-screen to the left */
  left: -100%;
 
  /* Size equal to cell */
  width: 100%;
   height: 100%;
 
  /* Pink background gradient */
  background: var(--gradient-bg);
    
  /* Low opacity for subtle effect */
  opacity: 0.1;
    
  /* Smooth movement transition */
  transition: left 0.3s ease;
}
}


/* ACTIVATES SLIDING EFFECT
h4 {
  Moves gradient to visible position */
   font-size: 2em !important;
.class-cell:hover::before {
   /* Moves to normal position */
  left: 0;
}
}


/* CLASS CELL HOVER EFFECT
/* Collapsible Elements - Only for page content */
  Animation when hovering */
.mw-body .collapsible,
.class-cell:hover {
#content .collapsible,
  /* Moves up and slightly increases */
#mw-content-text .collapsible,
  transform: translateY(-3px) scale(1.02);
button.collapsible {
 
    background-color: #f1f1f1;
  /* More intense shadow */
    color: #444;
  box-shadow: var(--hover-shadow);
    cursor: pointer;
 
    padding: 18px;
  /* Changes border color */
    width: 100%;
  border-color: var(--dark-pink);
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 4px;
    margin-bottom: 5px;
    position: relative;
}
}


/* CLASS CELL LINKS
.mw-body .collapsible:hover,
  Styling for links within cells */
#content .collapsible:hover,
.class-cell a {
#mw-content-text .collapsible:hover,
  /* Dark pink color */
button.collapsible:hover {
  color: var(--dark-pink) !important;
    background-color: #ddd;
 
  /* Removes underline */
  text-decoration: none !important;
 
  /* Semi-bold font weight */
  font-weight: 600 !important;
 
  /* Slightly smaller font size */
  font-size: 0.95em !important;
 
  /* Relative positioning */
  position: relative !important;
 
  /* Stays above background effect */
  z-index: 2 !important;
}
}


/* ========================================
.mw-body .collapsible::after,
  SIDEBAR
#content .collapsible::after,
  Side navigation menu
#mw-content-text .collapsible::after,
  ======================================== */
button.collapsible::after {
.lateral-bar {
    content: '+';
  /* Clean white background */
    font-size: 18px;
  background: white;
    font-weight: bold;
 
    float: right;
  /* Rounded borders */
    margin-left: 5px;
  border-radius: 15px;
 
  /* Reduced internal spacing */
  padding: 12px;
 
  /* Shadow for depth */
  box-shadow: var(--card-shadow);
 
  /* Minimum width */
  min-width: 150px;
 
  /* Height adjusted to content */
  height: fit-content;
 
  /* Stays fixed during scroll */
  position: sticky;
 
  /* Distance from top */
  top: 20px;
}
}


/* SIDEBAR TITLES
.mw-body .collapsible.active::after,
  Section headers for sidebar */
#content .collapsible.active::after,
.lateral-bar h3 {
#mw-content-text .collapsible.active::after,
  /* Dark pink color */
button.collapsible.active::after {
  color: var(--dark-pink) !important;
    content: '-';
 
  /* Smaller size to save space */
  font-size: 1.0em !important;
 
  /* Bottom margin */
  margin-bottom: 12px !important;
 
  /* Spacing for border */
  padding-bottom: 6px !important;
 
  /* Pink separator line */
  border-bottom: 2px solid var(--accent-pink) !important;
}
}


/* SIDEBAR LISTS
.mw-body .collapsible-content,
  Removes default list styling */
#content .collapsible-content,
.lateral-bar ul {
#mw-content-text .collapsible-content,
  /* Removes list markers */
button.collapsible + .collapsible-content {
  list-style: none !important;
    padding: 0 18px;
 
    max-height: 0;
  /* Removes internal spacing */
    overflow: hidden;
  padding: 0 !important;
    transition: max-height 0.2s ease-out;
 
    background-color: white;
  /* Removes margins */
    border-radius: 0 0 4px 4px;
  margin: 0 !important;
}
}


/* SIDEBAR ITEMS
.mw-body .collapsible-content.active,
  Styling for navigation items */
#content .collapsible-content.active,
.lateral-bar li {
#mw-content-text .collapsible-content.active,
  /* Small vertical margins */
button.collapsible + .collapsible-content.active {
  margin: 6px 0 !important;
    max-height: 500px;
 
    padding: 18px;
  /* Small internal spacing */
    border: 1px solid #ddd;
  padding: 6px 0 !important;
    border-top: none;
 
    margin-bottom: 15px;
  /* Very subtle separator line */
  border-bottom: 1px solid rgba(255, 107, 157, 0.1) !important;
}
}


/* SIDEBAR LINKS
/* [LINKS] LINKS */
  Styling for navigation links */
a {
.lateral-bar a {
   color: var(--primary-pink) !important;
  /* Cor rosa escura */
   color: var(--dark-pink) !important;
 
  /* Removes underline */
   text-decoration: none !important;
   text-decoration: none !important;
    
   transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease !important;
   /* Medium font weight */
   display: inline-block !important;
   font-weight: 500 !important;
   padding: 2px 4px !important;
    
   border-radius: 4px !important;
  /* Smaller font size */
   border-left: 3px solid transparent !important;
  font-size: 0.9em !important;
    
  /* Smooth transition for effects */
  transition: all 0.3s ease !important;
}
}


/* SIDEBAR LINKS HOVER EFFECT
a:hover {
  Animation when hovering */
.lateral-bar a:hover {
  /* Changes to main pink */
   color: var(--dark-pink) !important;
   color: var(--dark-pink) !important;
    
   background: rgba(255, 107, 157, 0.08) !important;
   /* Adds indentation */
   border-left-color: var(--primary-pink) !important;
   padding-left: 8px !important;
   padding-left: 8px !important;
  text-decoration: none !important;
}
}


/* ========================================
/* Content area links - enhanced animation */
  /* MAIN PAGE BANNER
#content a,
  Fixed banner at bottom
.mw-body a,
  ======================================== */
#mw-content-text a {
.mainpage-banner {
   color: #9a3b5f !important;
  /* Pink background gradient */
  background: linear-gradient(135deg, var(--dark-pink), var(--accent-pink));
 
  /* White text */
  color: white;
 
  /* Centers content */
  text-align: center;
 
  /* Minimal internal spacing */
  padding: 4px 15px;
 
  /* Shadow for depth */
  box-shadow: var(--card-shadow);
 
  /* Relative position to stay in document flow */
  position: relative;
 
  /* Normal z-index to not overlap other elements */
  z-index: 1;
 
  /* Removes margins */
  margin: 0;
}
 
/* MAIN BANNER LINK
  Stylized button within banner */
.mainpage-banner a {
  /* White text */
   color: white !important;
 
  /* Removes underline */
   text-decoration: none !important;
   text-decoration: none !important;
 
  /* Bold text */
  font-weight: bold !important;
 
  /* Larger font size */
  font-size: 1.2em !important;
 
  /* Semi-transparent white background */
  background: rgba(255, 255, 255, 0.2) !important;
 
  /* Generous internal spacing */
  padding: 12px 30px !important;
 
  /* Very rounded borders (pill format) */
  border-radius: 25px !important;
 
  /* Display inline-block for dimensions */
   display: inline-block !important;
   display: inline-block !important;
    
   padding: 2px 4px !important;
   /* Top margin */
   border-radius: 4px !important;
   margin-top: 15px !important;
   border-left: 3px solid transparent !important;
 
   transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease !important;
  /* Smooth transition for effects */
   transition: all 0.3s ease !important;
 
  /* Background blur effect */
  backdrop-filter: blur(5px) !important;
}
}


/* BANNER LINK HOVER EFFECT
#content a:hover,
  Animation when hovering over button */
.mw-body a:hover,
.mainpage-banner a:hover {
#mw-content-text a:hover {
   /* More opaque background */
   color: var(--primary-pink) !important;
  background: rgba(255, 255, 255, 0.3) !important;
   background: #fff5fb !important;
    
   border-left-color: var(--primary-pink) !important;
   /* Moves up */
   padding-left: 8px !important;
  transform: translateY(-2px) !important;
   text-decoration: none !important;
    
   /* More intense shadow */
  box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}
}


/* ========================================
/* [BUTTONS] BUTTONS */
  /* CHANGELOG BOX
.mw-ui-button,
  Container for update information
.oo-ui-buttonElement-button,
  ======================================== */
button:not(.nav-tab) {
.changelog-box {
   background: var(--pink-gradient) !important;
   /* Modern gradient background with subtle pink-to-white transition */
   color: white !important;
  background: linear-gradient(135deg, #ffeef7 0%, #ffffff 50%, #f8f9fa 100%) !important;
   border: none !important;
    
   border-radius: var(--border-radius-small) !important;
  /* Generous internal spacing for better readability */
   padding: var(--spacing-sm) var(--spacing-md) !important;
  padding: 25px 30px !important;
   font-weight: 600 !important;
 
   cursor: pointer !important;
  /* Smooth rounded borders for modern look */
   transition: var(--transition-normal) !important;
   border-radius: 16px !important;
   box-shadow: var(--shadow-light) !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;
}
}


 
.mw-ui-button:hover,
 
.oo-ui-buttonElement-button:hover,
/* RESPONSIVE DESIGN SYSTEM - Advanced Breakpoint Management */
button:not(.nav-tab):hover {
@media (max-width: 1400px) {
   transform: translateY(-2px) !important;
  body.mediawiki #content,
   box-shadow: var(--shadow-pink-hover) !important;
  body.skin-vector #content,
  body.skin-vector-legacy #content,
  body.skin-timeless #content,
   #content { margin-left: 240px !important; }
   #mw-panel { width: 220px !important; }
}
}


@media (min-width: 1201px) {
/* [TABLES] TABLES (WikiTable + DataTable) */
   .destaques-grid { grid-template-columns: repeat(4, 1fr); }
table.wikitable,
   .mainpage-cell-double { min-width: 600px; }
.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;
}
}


@media (max-width: 1200px) {
table.wikitable th,
   #mw-panel { width: 180px !important; padding: var(--space-lg) !important; }
.mw-datatable th,
   .destaques-grid { grid-template-columns: repeat(3, 1fr); }
.faq-table th {
   .destaque-card { min-height: 280px; padding: 15px; }
   background: var(--secondary-pink) !important;
  .destaque-image { max-width: 200px; height: 160px; }
   color: var(--text-primary) !important;
   .destaque-text h3 { font-size: 1em; }
   font-weight: 700 !important;
  .mainpage-cell-double { min-width: 500px; grid-column: span 1; }
  padding: var(--spacing-md) !important;
   border-bottom: 2px solid var(--primary-pink) !important;
}
}


@media (min-width: 901px) {
table.wikitable td,
  #mainpage-content { flex-direction: row !important; align-items: flex-start !important; }
.mw-datatable td,
   .lateral-bar { position: sticky !important; top: 20px !important; order: 1 !important; flex-shrink: 0 !important; min-width: 150px !important; max-width: 150px !important; }
.faq-table td {
   .mainpage-cell, .mainpage-cell-double { flex: 1 !important; }
   padding: var(--spacing-md) !important;
   border-bottom: 1px solid var(--border-light) !important;
}
}


@media (max-width: 900px) {
table.wikitable tr:hover,
  #mainpage-content { flex-direction: column; gap: 20px; }
.mw-datatable tr:hover,
  .mainpage-cell, .mainpage-cell-double { min-width: auto; width: 100%; }
.faq-table tr:hover {
   .lateral-bar { order: -1; margin-bottom: 20px; position: static; }
   background: var(--light-pink) !important;
  .wikitable { font-size: 0.9em !important; }
  .wikitable td { padding: 15px !important; min-width: 120px !important; }
}
}


@media (max-width: 768px) {
/* FAQ Table specific styles */
  body.mediawiki #content,
.faq-table {
  body.skin-vector #content,
   width: 100% !important;
  body.skin-vector-legacy #content,
   box-shadow: var(--shadow-medium) !important;
  body.skin-timeless #content,
  #content { margin-left: var(--space-lg) !important; margin-right: var(--space-lg) !important; }
   #mw-panel { transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 1000; }
   #mw-panel.mobile-open { transform: translateX(0); box-shadow: var(--shadow-neon); }
  .hero-section { padding: 3rem var(--space-lg) !important; }
  .hero-title { font-size: 2.5em !important; }
  .hero-subtitle { font-size: 1em !important; padding: 0 10px; }
  #mainpage-content { grid-template-columns: 1fr; gap: var(--space-lg); padding: var(--space-lg); }
  .mainpage-cell { padding: 15px; }
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .destaques-grid { grid-template-columns: 1fr; gap: var(--space-lg); padding: 0 10px; }
  .destaque-card { min-height: 320px; padding: 18px; }
  .destaque-image { max-width: 220px; height: 180px; }
  .destaque-text h3 { font-size: 1.1em; }
  .destaque-text p { font-size: 0.9em; }
  .wikitable { font-size: 0.85em !important; display: block !important; }
  .wikitable tr { display: block !important; margin-bottom: 15px !important; border: 1px solid var(--accent-pink) !important; border-radius: 10px !important; overflow: hidden !important; }
  .wikitable td { display: block !important; width: 100% !important; padding: 10px 15px !important; border-right: none !important; border-bottom: 1px solid var(--pink-crystal) !important; }
  .wikitable td:last-child { border-bottom: none !important; }
}
}


/* ========================================
.faq-table tr:nth-child(odd) td {
  BACK TO TOP BUTTON - MEDIAWIKI COMPATIBLE
   background-color: rgba(255, 107, 157, 0.05) !important;
  Ensures the button works in MediaWiki environment
  ======================================== */
#back-to-top-btn {
   position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
}


#back-to-top-btn a {
.faq-table tr:hover td {
   background: rgba(233, 30, 99, 0.9) !important;
   background-color: rgba(255, 107, 157, 0.1) !important;
  color: white !important;
  padding: 10px 15px !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3) !important;
  backdrop-filter: blur(5px) !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  cursor: pointer !important;
}
}


#back-to-top-btn a:hover {
/* [FORMS] FORM ELEMENTS */
   background: rgba(233, 30, 99, 1) !important;
input[type="text"],
   transform: translateY(-2px) !important;
input[type="search"],
   box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4) !important;
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;
}
}


/* MediaWiki compatibility already handled above */
input[type="text"]:focus,
 
input[type="search"]:focus,
@media (max-width: 480px) {
textarea:focus,
  .hero-section { padding: 2rem var(--space-lg) !important; }
select:focus {
  .hero-title { font-size: 2em !important; }
   border-color: var(--primary-pink) !important;
  .hero-subtitle { font-size: 0.9em !important; }
   outline: none !important;
  #mainpage-content { padding: var(--space-lg); }
   box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2) !important;
  .mainpage-cell { padding: var(--space-lg); }
  .classes-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
   .destaques-grid { grid-template-columns: 1fr; gap: var(--space-lg); padding: 0 15px; }
  #back-to-top-btn { bottom: 15px !important; right: 15px !important; }
   #back-to-top-btn a { padding: 8px 12px !important; font-size: 0.9em !important; }
   .destaque-card { min-height: 280px; padding: 20px; gap: 15px; }
  .destaque-image { max-width: 250px; height: 200px; }
  .destaque-text h3 { font-size: 1em; }
  .destaque-text p { font-size: 0.9em; }
  .wikitable { font-size: 0.8em !important; margin: 15px 0 !important; }
  .wikitable tr { margin-bottom: 10px !important; }
  .wikitable td { padding: 8px 12px !important; }
  .wikitable li { margin: 8px 0 !important; padding: 6px 0 !important; }
}
}


/* MOBILE MENU TOGGLE */
/* [MW-ELEMENTS] SPECIAL MEDIAWIKI ELEMENTS */
.mobile-menu-toggle {
.mw-editsection {
   display: none;
   color: var(--accent-pink) !important;
  position: fixed;
   font-size: 0.8em !important;
  top: var(--space-lg);
  left: var(--space-lg);
  z-index: 1001;
  background: var(--surface-glass);
  border: 1px solid var(--accent-pink);
   border-radius: 15px;
  padding: 10px;
  color: var(--dark-pink);
  cursor: pointer;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-kawaii);
  transition: all 0.3s ease;
}
}


.mobile-menu-toggle:hover {
.mw-headline {
   background: var(--accent-pink);
   border-bottom: 2px solid var(--pink-border) !important;
   color: white;
   padding-bottom: var(--spacing-sm) !important;
  transform: scale(1.05);
}
}


@media (max-width: 768px) {
/* [UTILITIES] UTILITY CLASSES */
   .mobile-menu-toggle { display: block; }
.fade-in {
   animation: fadeInUp 0.6s ease-out;
}
}


/* ACCESSIBILITY ENHANCEMENTS */
.pulse {
@media (prefers-reduced-motion: reduce) {
   animation: pulse 2s infinite;
   *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
 
  .pulse, .sparkle-rotate, .hologram-scan, .particle-float {
    animation: none !important;
  }
}
 
@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #ff69b4;
    --text-secondary: #ffb3da;
    --surface-primary: #0a0a0a;
    --surface-secondary: #1a1a1a;
    --accent-pink: #ff1493;
    --pink-cyber: #ff00ff;
  }
}
 
/* PERFORMANCE OPTIMIZATIONS */
.hero-section, .destaque-card, .mainpage-cell {
  will-change: transform, opacity;
}
}


.hero-section:hover, .destaque-card:hover {
  will-change: auto;
}
/* UTILITY CLASSES */
.glass-effect {
.glass-effect {
   background: var(--surface-glass) !important;
   background: rgba(255, 255, 255, 0.8) !important;
   backdrop-filter: var(--glass-blur) !important;
   backdrop-filter: var(--blur-glass) !important;
   border: 1px solid var(--accent-pink) !important;
   border: 1px solid var(--pink-border) !important;
  border-radius: 15px !important;
}
}


.gradient-text {
.pink-gradient-text {
   background: var(--gradient-primary) !important;
   background: var(--pink-gradient) !important;
   -webkit-background-clip: text !important;
   -webkit-background-clip: text !important;
   -webkit-text-fill-color: transparent !important;
   -webkit-text-fill-color: transparent !important;
Line 1,510: Line 982:
}
}


.neon-glow {
/* Shimmer animation */
   box-shadow: var(--shadow-neon) !important;
@keyframes shimmer {
   transition: box-shadow 0.3s ease !important;
   0% {
    background-position: -1000px 0;
   }
  100% {
    background-position: 1000px 0;
  }
}
}


.neon-glow:hover {
/* [RESPONSIVE] RESPONSIVE DESIGN (Breakpoints & Layout) */
   box-shadow: var(--shadow-neon), 0 0 30px var(--accent-pink) !important;
@media (max-width: 1200px) {
   :root {
    --sidebar-width: 200px;
    --content-margin: 220px;
  }
 
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
}


/* RESPONSIVE IMAGE UTILITIES */
@media (max-width: 1024px) {
.responsive-image {
   :root {
   max-width: 100%;
    --sidebar-width: 180px;
   height: auto;
    --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;
  }
}
}


.pixelated {
@media (max-width: 900px) {
   image-rendering: pixelated;
   .nav-tab {
  image-rendering: -moz-crisp-edges;
    flex: 1 1 44%;
   image-rendering: crisp-edges;
    min-width: 44%;
   -ms-interpolation-mode: nearest-neighbor;
  }
 
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
   }
 
   .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
}


/* MOBILE/DESKTOP VISIBILITY */
@media (max-width: 768px) {
@media screen and (min-width: 720px) {
   body.skin-vector-legacy #content,
   .mobileonly {
  body.skin-vector-legacy .mw-body {
     display: none;
     margin-right: var(--spacing-md) !important;
    margin-top: var(--spacing-md) !important;
    padding: var(--spacing-lg) !important;
   }
   }
}
}


@media screen and (max-width: 720px) {
@media (max-width: 600px) {
   .nomobile {
   .nav-tab {
    flex: 1 1 100%;
    min-width: 100%;
  }
 
  .nav-tab .full-text {
     display: none;
     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;
   }
   }
}
}


/* GALLERY UTILITIES */
@media (max-width: 480px) {
.gallery.gallery.gallery.spaced {
   :root {
   display: flex;
    --border-radius: 8px;
  flex-flow: row wrap;
    --spacing-xl: 16px;
  justify-content: space-evenly;
    --spacing-lg: 12px;
  margin-left: unset;
  }
}
 
 
  body.skin-vector-legacy #content,
.gallery.centered {
  body.skin-vector-legacy .mw-body {
  text-align: center;
    margin-top: var(--spacing-sm) !important;
}
    margin-right: var(--spacing-sm) !important;
 
    margin-bottom: var(--spacing-sm) !important;
/* PORTABLE INFOBOX RESPONSIVE */
    padding: var(--spacing-md) !important;
@media only screen and (max-width: 768px) {
     border-radius: var(--border-radius-small) !important;
  .portable-infobox {
  }
     width: 90%;
 
     margin-left: -5px;
  h1 {
     font-size: 1.8em !important;
   }
   }
}
}


/* TABLE OF CONTENTS RESPONSIVE */
/* [ACCESSIBILITY] ACCESSIBILITY IMPROVEMENTS */
@media screen and (max-width: 1025px) {
@media (prefers-reduced-motion: reduce) {
   .toc-container {
   * {
     float: none !important;
     animation-duration: 0.01ms !important;
    clear: both !important;
     animation-iteration-count: 1 !important;
    margin-bottom: 0 !important;
     transition-duration: 0.01ms !important;
     padding: 0 !important;
    background: transparent !important;
     max-width: none !important;
    text-align: center;
   }
   }
}
}


/* AMBOX RESPONSIVE MARGINS */
@media (prefers-contrast: high) {
@media (min-width: 720px) {
   :root {
   .ambox {
     --primary-pink: #d63384;
     margin-inline: 10%;
    --text-primary: #000000;
    --border-color: #333333;
   }
   }
}
}


/* FLEXIBLE CONTAINER SYSTEM */
/* [PRINT] PRINT STYLES */
.sh-flex-container {
@media print {
   display: flex;
   body.skin-vector-legacy #mw-panel,
  flex-wrap: wrap;
   body.skin-vector-legacy #mw-head,
  max-width: 1000px;
   body.skin-vector-legacy .vector-menu-tabs,
}
   body.skin-vector-legacy #footer {
 
     display: none !important;
.sh-flex-item {
  margin: 5px;
  padding: 8px;
  width: max-content;
   text-align: center;
  white-space: break-spaces !important;
   align-content: end;
  justify-content: center;
  display: grid;
}
 
.sh-flex-item.small {
  width: 100px;
}
 
/* FLEXIBLE CONTAINER MOBILE RESPONSIVE */
@media only screen and (max-width: 768px) {
   .sh-flex-item {
    width: 40%;
     display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-evenly;
   }
   }
    
    
   .sh-flex-item.small {
   body.skin-vector-legacy #content,
     width: 20%;
  body.skin-vector-legacy .mw-body {
     margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: white !important;
   }
   }
    
    
   .sh-flex-item > a > img {
   body {
     width: 80px;
     background: white !important;
    max-height: 80px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
   }
   }
    
    
   .sh-flex-item > figure > a > img {
   * {
     max-height: 80px;
     color: black !important;
    border: none;
   }
   }
}
/* [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;
    
    
   .sh-flex-item > figure {
   /* Generous internal spacing for better readability */
    display: flex;
  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;
}
}


/* TABS RESPONSIVE WRAPPER */
.changelog-box:hover {
.wds-tabs__wrapper {
   transform: translateY(-2px) !important;
   display: flex;
   box-shadow: 0 6px 25px rgba(255, 107, 157, 0.12),
  flex-direction: row;
              0 3px 10px rgba(0, 0, 0, 0.08) !important;
   width: 100%;
  flex-wrap: wrap;
  margin-left: 0 !important;
}
}


/* MEDIAWIKI COMPATIBILITY */
/* Changelog with image layout */
#mw-page-base, #mw-head-base { background: transparent !important; }
.changelog-with-image {
.mw-body { border: none !important; }
  display: flex !important;
#footer { background: transparent !important; border: none !important; }
  align-items: center !important; /* Changed from flex-start to center */
  gap: 25px !important;
  margin: 25px 0 !important;
}


/* COMPACT RESPONSIVE MEDIAWIKI TABS MENU */
.changelog-with-image .changelog-box {
  flex: 1 !important;
  margin: 0 !important;
}


/* Mobile menu toggle button - HIDDEN BY DEFAULT ON DESKTOP */
.image-container {
.mw-tabs-toggle {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #ffeef7 100%) !important;
    display: none;
  border: 1px solid rgba(255, 107, 157, 0.15) !important;
    background: var(--dark-pink);
  border-radius: 12px !important;
    color: white;
  padding: 15px !important;
    border: none;
  margin-top: 0 !important; /* Removed margin-top */
    padding: 8px 12px;
  margin-bottom: 12px !important;
    border-radius: 8px;
  box-shadow: 0 2px 10px rgba(255, 107, 157, 0.06) !important;
    cursor: pointer;
  text-align: center !important;
    font-size: 14px;
  font-size: 0.9em !important;
    font-weight: 600;
  line-height: 1.4 !important;
    margin: 4px 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    position: relative;
    z-index: 1001;
    vertical-align: top;
}
}


.mw-tabs-toggle:hover {
.image-container strong {
    background: var(--pink-cyber);
  color: #2c3e50 !important;
    transform: translateY(-2px);
  display: block !important;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
  margin-bottom: 8px !important;
  font-size: 1.1em !important;
  font-style: italic !important;
}
}


/* Remove the hamburger icon */
.image-container p {
.mw-tabs-toggle::before {
  color: #5a6c7d !important;
    content: none;
  margin: 0 !important;
  font-size: 0.85em !important;
  font-style: italic !important;
}
}


/* Compact tab container - MediaWiki compatibility */
/* Responsive design for changelog with image */
body.mediawiki .vector-menu-tabs,
@media (max-width: 768px) {
body.skin-vector .vector-menu-tabs,
  .changelog-with-image {
body.skin-vector-legacy .vector-menu-tabs,
     flex-direction: column !important;
body.skin-timeless .vector-menu-tabs,
     align-items: center !important;
body.mediawiki #p-views ul,
     gap: 20px !important;
body.skin-vector #p-views ul,
  }
body.skin-vector-legacy #p-views ul,
 
body.skin-timeless #p-views ul,
  .changelog-image {
body.mediawiki #p-cactions ul,
     order: -1 !important;
body.skin-vector #p-cactions ul,
  }
body.skin-vector-legacy #p-cactions ul,
 
body.skin-timeless #p-cactions ul,
  .changelog-image img {
body.mediawiki #p-namespaces ul,
     max-width: 150px !important;
body.skin-vector #p-namespaces ul,
  }
body.skin-vector-legacy #p-namespaces ul,
body.skin-timeless #p-namespaces ul,
body.mediawiki #p-personal ul,
body.skin-vector #p-personal ul,
body.skin-vector-legacy #p-personal ul,
body.skin-timeless #p-personal ul,
.vector-menu-tabs,
#p-views ul,
#p-cactions ul,
#p-namespaces ul,
#p-personal ul {
     display: flex;
     flex-wrap: wrap;
     gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
     background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15);
     backdrop-filter: blur(10px);
}
}


/* Individual tab styling */
/* [WIKILINKS] MEDIAWIKI INTERNAL LINK PROCESSING */
.vector-menu-tabs li,
.mw-link-internal {
#p-views li,
  color: var(--primary-pink) !important;
#p-cactions li,
  text-decoration: none !important;
#p-namespaces li,
  transition: var(--transition-normal) !important;
#p-personal li {
  border-bottom: 1px dotted transparent !important;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}
}


/* Individual tab link styling - MediaWiki compatibility */
.mw-link-internal:hover {
body.mediawiki .vector-menu-tabs li a,
  color: var(--dark-pink) !important;
body.skin-vector .vector-menu-tabs li a,
  border-bottom-color: var(--primary-pink) !important;
body.skin-vector-legacy .vector-menu-tabs li a,
body.skin-timeless .vector-menu-tabs li a,
body.mediawiki #p-views li a,
body.skin-vector #p-views li a,
body.skin-vector-legacy #p-views li a,
body.skin-timeless #p-views li a,
body.mediawiki #p-cactions li a,
body.skin-vector #p-cactions li a,
body.skin-vector-legacy #p-cactions li a,
body.skin-timeless #p-cactions li a,
.vector-menu-tabs li a,
#p-views li a,
#p-cactions li a {
    display: block;
    padding: 8px 16px;
    background: rgba(255, 238, 247, 0.8);
    color: var(--dark-pink);
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}
}


/* Tab hover effects - MediaWiki compatibility */
.mw-redirect {
body.mediawiki .vector-menu-tabs li a:hover,
  color: var(--accent-pink) !important;
body.skin-vector .vector-menu-tabs li a:hover,
body.skin-vector-legacy .vector-menu-tabs li a:hover,
body.skin-timeless .vector-menu-tabs li a:hover,
body.mediawiki #p-views li a:hover,
body.skin-vector #p-views li a:hover,
body.skin-vector-legacy #p-views li a:hover,
body.skin-timeless #p-views li a:hover,
body.mediawiki #p-cactions li a:hover,
body.skin-vector #p-cactions li a:hover,
body.skin-vector-legacy #p-cactions li a:hover,
body.skin-timeless #p-cactions li a:hover,
.vector-menu-tabs li a:hover,
#p-views li a:hover,
#p-cactions li a:hover {
    background: var(--accent-pink);
    color: var(--dark-pink);
    border-color: var(--dark-pink);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.2);
}
}


/* Active/selected tab - MediaWiki compatibility */
/* [DESTAQUE CARDS] HOLOGRAMSIE SERVICE CARDS */
body.mediawiki .vector-menu-tabs li.selected a,
.destaques-grid {
body.skin-vector .vector-menu-tabs li.selected a,
  display: grid;
body.skin-vector-legacy .vector-menu-tabs li.selected a,
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
body.skin-timeless .vector-menu-tabs li.selected a,
  gap: 15px;
body.mediawiki #p-views li.selected a,
  margin: 30px auto;
body.skin-vector #p-views li.selected a,
  padding: 0 20px;
body.skin-vector-legacy #p-views li.selected a,
  max-width: 1200px;
body.skin-timeless #p-views li.selected a,
  width: 100%;
body.mediawiki #p-cactions li.selected a,
body.skin-vector #p-cactions li.selected a,
body.skin-vector-legacy #p-cactions li.selected a,
body.skin-timeless #p-cactions li.selected a,
body.mediawiki .vector-menu-tabs li a.active,
body.skin-vector .vector-menu-tabs li a.active,
body.skin-vector-legacy .vector-menu-tabs li a.active,
body.skin-timeless .vector-menu-tabs li a.active,
body.mediawiki #p-views li a.active,
body.skin-vector #p-views li a.active,
body.skin-vector-legacy #p-views li a.active,
body.skin-timeless #p-views li a.active,
body.mediawiki #p-cactions li a.active,
body.skin-vector #p-cactions li a.active,
body.skin-vector-legacy #p-cactions li a.active,
body.skin-timeless #p-cactions li a.active,
.vector-menu-tabs li.selected a,
#p-views li.selected a,
#p-cactions li.selected a,
.vector-menu-tabs li a.active,
#p-views li a.active,
#p-cactions li a.active {
    background: var(--dark-pink);
    color: white;
    border-color: var(--dark-pink);
    box-shadow: 0 3px 8px rgba(233, 30, 99, 0.3);
}
}


/* Dropdown menu for overflow tabs */
.destaque-card {
.mw-tabs-dropdown {
  background: var(--light-pink);
    position: relative;
  border: 2px solid var(--accent-pink);
    display: none;
  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;
}
}


.mw-tabs-dropdown-content {
.destaque-card[data-link],
    display: none;
.destaque-card[data-tab-trigger] {
    position: absolute;
  cursor: pointer;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.2);
    padding: 8px;
    min-width: 200px;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border: 1px solid var(--accent-pink);
}
}


.mw-tabs-dropdown-content a {
.destaque-card[data-link]:hover,
    display: block;
.destaque-card[data-tab-trigger]:hover {
    padding: 10px 16px;
  transform: translateY(-5px);
    color: var(--dark-pink);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
    text-decoration: none;
  border-color: var(--primary-pink);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 13px;
}
}


.mw-tabs-dropdown-content a:hover {
.destaque-card[data-link] .destaque-text h3,
    background: var(--light-pink);
.destaque-card[data-tab-trigger] .destaque-text h3 {
    color: var(--dark-pink);
  color: var(--primary-pink);
}
}


.mw-tabs-dropdown.active .mw-tabs-dropdown-content {
.destaque-card[data-link]:hover .destaque-text h3,
    display: block;
.destaque-card[data-tab-trigger]:hover .destaque-text h3 {
    animation: fadeInDown 0.3s ease;
  color: var(--dark-pink);
}
}


@keyframes fadeInDown {
.destaque-card[data-link] *,
    from {
.destaque-card[data-tab-trigger] * {
        opacity: 0;
  pointer-events: none;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}


/* Desktop styles - ensure tabs are visible and toggle buttons are hidden */
.destaque-image {
@media screen and (min-width: 769px) {
  width: 100%;
    body.mediawiki .mw-tabs-toggle,
  max-width: 180px;
    body.skin-vector .mw-tabs-toggle,
  height: 140px;
    body.skin-vector-legacy .mw-tabs-toggle,
  overflow: hidden;
    body.skin-timeless .mw-tabs-toggle,
  border-radius: 12px;
    .mw-tabs-toggle {
  display: flex;
        display: none !important;
  align-items: center;
    }
  justify-content: center;
   
    body.mediawiki .vector-menu-tabs,
    body.skin-vector .vector-menu-tabs,
    body.skin-vector-legacy .vector-menu-tabs,
    body.skin-timeless .vector-menu-tabs,
    body.mediawiki #p-views ul,
    body.skin-vector #p-views ul,
    body.skin-vector-legacy #p-views ul,
    body.skin-timeless #p-views ul,
    body.mediawiki #p-cactions ul,
    body.skin-vector #p-cactions ul,
    body.skin-vector-legacy #p-cactions ul,
    body.skin-timeless #p-cactions ul,
    .vector-menu-tabs,
    #p-views ul,
    #p-cactions ul {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 12px !important;
        padding: 8px !important;
        box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15) !important;
        backdrop-filter: blur(10px) !important;
    }
}
}


/* Tablet responsive breakpoints */
.destaque-image img {
@media screen and (min-width: 481px) and (max-width: 768px) {
  width: 100%;
    body.mediawiki .mw-tabs-toggle,
  height: 100%;
    body.skin-vector .mw-tabs-toggle,
  object-fit: cover;
    body.skin-vector-legacy .mw-tabs-toggle,
  border-radius: 10px;
    body.skin-timeless .mw-tabs-toggle,
    .mw-tabs-toggle {
        display: none !important;
    }
   
    body.mediawiki .vector-menu-tabs,
    body.skin-vector .vector-menu-tabs,
    body.skin-vector-legacy .vector-menu-tabs,
    body.skin-timeless .vector-menu-tabs,
    body.mediawiki #p-views ul,
    body.skin-vector #p-views ul,
    body.skin-vector-legacy #p-views ul,
    body.skin-timeless #p-views ul,
    body.mediawiki #p-cactions ul,
    body.skin-vector #p-cactions ul,
    body.skin-vector-legacy #p-cactions ul,
    body.skin-timeless #p-cactions ul,
    .vector-menu-tabs,
    #p-views ul,
    #p-cactions ul {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 12px !important;
        padding: 6px !important;
        box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15) !important;
        backdrop-filter: blur(10px) !important;
        gap: 4px !important;
    }
   
    body.mediawiki .vector-menu-tabs li a,
    body.skin-vector .vector-menu-tabs li a,
    body.skin-vector-legacy .vector-menu-tabs li a,
    body.skin-timeless .vector-menu-tabs li a,
    body.mediawiki #p-views li a,
    body.skin-vector #p-views li a,
    body.skin-vector-legacy #p-views li a,
    body.skin-timeless #p-views li a,
    body.mediawiki #p-cactions li a,
    body.skin-vector #p-cactions li a,
    body.skin-vector-legacy #p-cactions li a,
    body.skin-timeless #p-cactions li a,
    .vector-menu-tabs li a,
    #p-views li a,
    #p-cactions li a {
        padding: 8px 12px;
        font-size: 13px;
    }
}
}


/* Mobile responsive breakpoints */
.destaque-text {
@media screen and (max-width: 480px) {
  flex: 1;
    body.mediawiki .mw-tabs-toggle,
  display: flex;
    body.skin-vector .mw-tabs-toggle,
  flex-direction: column;
    body.skin-vector-legacy .mw-tabs-toggle,
  justify-content: center;
    body.skin-timeless .mw-tabs-toggle,
  gap: 10px;
    .mw-tabs-toggle {
        display: inline-block !important;
    }
   
    body.mediawiki .vector-menu-tabs,
    body.skin-vector .vector-menu-tabs,
    body.skin-vector-legacy .vector-menu-tabs,
    body.skin-timeless .vector-menu-tabs,
    body.mediawiki #p-views ul,
    body.skin-vector #p-views ul,
    body.skin-vector-legacy #p-views ul,
    body.skin-timeless #p-views ul,
    body.mediawiki #p-cactions ul,
    body.skin-vector #p-cactions ul,
    body.skin-vector-legacy #p-cactions ul,
    body.skin-timeless #p-cactions ul,
    .vector-menu-tabs,
    #p-views ul,
    #p-cactions ul {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15) !important;
        z-index: 999;
        padding: 6px !important;
        gap: 4px !important;
    }
   
    /* Removed .show class dependency - buttons are now always visible */
   
    body.mediawiki .vector-menu-tabs li a,
    body.skin-vector .vector-menu-tabs li a,
    body.skin-vector-legacy .vector-menu-tabs li a,
    body.skin-timeless .vector-menu-tabs li a,
    body.mediawiki #p-views li a,
    body.skin-vector #p-views li a,
    body.skin-vector-legacy #p-views li a,
    body.skin-timeless #p-views li a,
    body.mediawiki #p-cactions li a,
    body.skin-vector #p-cactions li a,
    body.skin-vector-legacy #p-cactions li a,
    body.skin-timeless #p-cactions li a,
    .vector-menu-tabs li a,
    #p-views li a,
    #p-cactions li a {
        padding: 12px 16px;
        font-size: 14px;
        text-align: center;
    }
   
    body.mediawiki .mw-tabs-dropdown,
    body.skin-vector .mw-tabs-dropdown,
    body.skin-vector-legacy .mw-tabs-dropdown,
    body.skin-timeless .mw-tabs-dropdown,
    .mw-tabs-dropdown {
        display: block;
    }
}
}


@keyframes slideDown {
.destaque-text h3 {
    from {
  color: var(--primary-pink);
        opacity: 0;
 
        transform: translateY(-20px);
  font-weight: bold;
    }
  margin: 0;
    to {
  line-height: 1.2;
        opacity: 1;
        transform: translateY(0);
    }
}
}


/* Small screen dropdown functionality - for any small browser window */
.destaque-text p {
@media screen and (max-width: 1024px) {
  color: var(--primary-pink);
    .mw-tabs-toggle {
  font-size: 0.9em;
        display: inline-block !important;
  line-height: 1.4;
        background: rgba(233, 30, 99, 0.9) !important;
  margin: 0;
        color: white !important;
  opacity: 0.8;
        border: none !important;
        border-radius: 8px !important;
        padding: 8px 12px !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        margin: 2px !important;
        box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3) !important;
        backdrop-filter: blur(10px) !important;
        position: relative !important;
        z-index: 999 !important;
    }
   
    .mw-tabs-toggle:hover {
        background: rgba(233, 30, 99, 1) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4) !important;
    }
   
    .mw-tabs-toggle:active {
        transform: translateY(0) !important;
        box-shadow: 0 2px 6px rgba(233, 30, 99, 0.3) !important;
    }
   
    .mw-tabs-toggle[aria-expanded="true"] {
        background: rgba(255, 107, 157, 0.9) !important;
        box-shadow: 0 4px 16px rgba(255, 107, 157, 0.4) !important;
    }
   
    /* Force button text visibility with highest specificity */
    button.mw-tabs-toggle,
    .mw-tabs-toggle {
        color: white !important;
        -webkit-text-fill-color: white !important;
        text-shadow: none !important;
        background-clip: initial !important;
        -webkit-background-clip: initial !important;
    }
   
    /* Fix positioning for small screen navigation */
    #mw-head {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        display: block !important;
        padding: 15px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 0 0 15px 15px !important;
        margin: 0 !important;
        box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2) !important;
        backdrop-filter: blur(10px) !important;
        border-bottom: 2px solid rgba(233, 30, 99, 0.3) !important;
    }
   
    #left-navigation, #right-navigation {
        position: relative !important;
        display: inline-block !important;
        vertical-align: top !important;
        margin: 5px !important;
        padding: 8px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 12px rgba(233, 30, 99, 0.15) !important;
    }
   
    #p-namespaces,
    #p-views,
    #p-cactions,
    #p-personal {
        position: relative !important;
        display: inline-block !important;
        margin: 4px 2px !important;
        vertical-align: top !important;
    }
   
    #p-namespaces ul,
    #p-views ul,
    #p-cactions ul,
    #p-personal ul {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3) !important;
        backdrop-filter: blur(15px) !important;
        border: 2px solid var(--accent-pink) !important;
        z-index: 1000 !important;
        min-width: 150px !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 8px !important;
        opacity: 0 !important;
        transform: translateY(-10px) !important;
        transition: all 0.3s ease !important;
    }
   
    #p-namespaces ul.show,
    #p-views ul.show,
    #p-cactions ul.show,
    #p-personal ul.show {
        display: flex !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: slideDown 0.3s ease !important;
    }
   
    #p-namespaces li,
    #p-views li,
    #p-cactions li,
    #p-personal li {
        width: 100% !important;
        margin: 0 !important;
    }
   
    #p-namespaces li a,
    #p-views li a,
    #p-cactions li a,
    #p-personal li a {
        display: block !important;
        width: 100% !important;
        padding: 10px 12px !important;
        margin: 2px 0 !important;
        text-align: left !important;
        border-radius: 6px !important;
        font-size: 13px !important;
    }
}
}


/* Compact mode for very small screens */
.destaque-card::before {
@media screen and (max-width: 480px) {
  content: '';
    /* Further optimize navigation for mobile */
  position: absolute;
    #mw-head {
  top: -50%;
        padding: 8px !important;
  left: -50%;
        border-radius: 0 !important;
  width: 200%;
    }
  height: 200%;
   
  background: var(--primary-pink);
    #left-navigation, #right-navigation {
  opacity: 0;
        display: block !important;
  transition: opacity 0.3s ease;
        width: 100% !important;
  z-index: 1;
        margin: 2px 0 !important;
        padding: 5px !important;
    }
   
    .mw-tabs-toggle {
        background: rgba(233, 30, 99, 0.9) !important;
        color: white !important;
        border: none !important;
        font-size: 12px !important;
        padding: 6px 10px !important;
        margin: 2px 1px !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 6px rgba(233, 30, 99, 0.3) !important;
        backdrop-filter: blur(8px) !important;
        display: inline-block !important;
        text-shadow: none !important;
        -webkit-text-fill-color: white !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
        opacity: 1 !important;
        visibility: visible !important;
        line-height: 1.2 !important;
        text-align: center !important;
        white-space: nowrap !important;
        font-family: inherit !important;
        text-decoration: none !important;
    }
   
    .mw-tabs-toggle:hover {
        background: rgba(233, 30, 99, 1) !important;
        box-shadow: 0 3px 8px rgba(233, 30, 99, 0.4) !important;
    }
   
    .mw-tabs-toggle[aria-expanded="true"] {
        background: rgba(255, 107, 157, 0.9) !important;
        box-shadow: 0 3px 10px rgba(255, 107, 157, 0.4) !important;
    }
   
    /* Ensure dropdown menus are hidden by default on mobile */
    .vector-menu-tabs,
    #p-views ul,
    #p-cactions ul,
    #p-namespaces ul,
    #p-personal ul {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 8px !important;
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3) !important;
        backdrop-filter: blur(12px) !important;
        border: 2px solid var(--accent-pink) !important;
        z-index: 1000 !important;
        padding: 6px !important;
        gap: 2px !important;
        min-width: 120px !important;
        max-width: calc(100vw - 40px) !important;
        flex-direction: column !important;
        opacity: 0 !important;
        transform: translateY(-10px) !important;
        transition: all 0.3s ease !important;
    }
   
    /* Show dropdown menus when .show class is applied on mobile */
    .vector-menu-tabs.show,
    #p-views ul.show,
    #p-cactions ul.show,
    #p-namespaces ul.show,
    #p-personal ul.show {
        display: flex !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: slideDown 0.3s ease !important;
    }
   
    .vector-menu-tabs li a,
    #p-views li a,
    #p-cactions li a,
    #p-namespaces li a,
    #p-personal li a {
        display: block !important;
        width: 100% !important;
        padding: 6px 8px !important;
        margin: 1px 0 !important;
        text-align: left !important;
        font-size: 11px !important;
        border-radius: 4px !important;
        color: var(--dark-pink) !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100px !important;
    }
   
    .vector-menu-tabs li a:hover,
    #p-views li a:hover,
    #p-cactions li a:hover,
    #p-namespaces li a:hover,
    #p-personal li a:hover {
        background: var(--pink-crystal) !important;
        color: white !important;
        transform: translateX(2px) !important;
    }
   
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden !important;
    }
   
    #content {
        padding: 5px !important;
        word-wrap: break-word !important;
    }
}
}


/* Page action buttons - standard MediaWiki positioning */
.destaque-card:hover::before {
#p-views, #p-cactions {
  opacity: 0.1;
    background: transparent !important;
    border: none !important;
    margin: 0 0.25em 0 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    vertical-align: top !important;
    white-space: nowrap !important;
    position: relative !important;
}
}


/* Position page action buttons in left navigation */
.destaque-card:hover {
#left-navigation #p-views,
  transform: translateY(-5px);
#left-navigation #p-cactions {
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
    display: inline-block !important;
  border-color: var(--primary-pink);
    margin-right: 0.5em !important;
}
}


/* Hide toggle buttons on larger screens */
/* [ANIMATIONS] ANIMATION KEYFRAMES */
@media screen and (min-width: 1025px) {
@keyframes fadeInUp {
    .mw-tabs-toggle {
  from {
        display: none !important;
     opacity: 0;
    }
    transform: translateY(20px);
   
  }
    #p-namespaces ul,
  to {
    #p-views ul,
     opacity: 1;
     #p-cactions ul,
    transform: translateY(0);
    #p-personal ul {
  }
        display: flex !important;
        position: static !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 12px !important;
        padding: 8px !important;
        box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15) !important;
        backdrop-filter: blur(10px) !important;
    }
   
     /* Ensure proper navigation layout on desktop */
    #mw-head {
        position: fixed !important;
        top: 0 !important;
        left: 200px !important;
        right: 0 !important;
        width: calc(100% - 200px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        border-bottom: 2px solid rgba(233, 30, 99, 0.3) !important;
        box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2) !important;
        z-index: 1000 !important;
        padding: 10px 20px !important;
    }
   
    body.mediawiki #content,
    body.skin-vector #content,
    body.skin-vector-legacy #content,
    body.skin-timeless #content,
    #content {
        margin-top: 60px !important;
        margin-left: 200px !important;
        padding: 20px !important;
    }
}
}


/* Desktop and tablet screen optimizations - smaller desktop screens */
@keyframes pulse {
@media screen and (min-width: 481px) and (max-width: 1366px) {
  0%, 100% {
    /* Optimize navigation for tablet screens */
     opacity: 1;
    #mw-head {
  }
        padding: 12px !important;
  50% {
        border-radius: 0 0 12px 12px !important;
     opacity: 0.7;
    }
  }
   
    #left-navigation, #right-navigation {
        display: inline-block !important;
        vertical-align: top !important;
        margin: 3px !important;
        padding: 6px !important;
    }
   
     .mw-tabs-toggle {
        background: rgba(233, 30, 99, 0.9) !important;
        color: white !important;
        border: none !important;
        border-radius: 8px !important;
        font-size: 13px !important;
        padding: 7px 11px !important;
        margin: 3px 2px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3) !important;
        backdrop-filter: blur(10px) !important;
        display: inline-block !important;
        text-shadow: none !important;
        -webkit-text-fill-color: white !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
        opacity: 1 !important;
        visibility: visible !important;
        line-height: 1.2 !important;
        text-align: center !important;
        white-space: nowrap !important;
        font-family: inherit !important;
        text-decoration: none !important;
    }
   
    .mw-tabs-toggle:hover {
        background: rgba(233, 30, 99, 1) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4) !important;
    }
   
    .mw-tabs-toggle[aria-expanded="true"] {
        background: rgba(255, 107, 157, 0.9) !important;
        box-shadow: 0 4px 16px rgba(255, 107, 157, 0.4) !important;
    }
   
    /* Ensure dropdown menus are hidden by default */
    #p-views ul,
    #p-cactions ul,
    #p-namespaces ul,
    #p-personal ul {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3) !important;
        backdrop-filter: blur(15px) !important;
        border: 2px solid var(--accent-pink) !important;
        z-index: 1000 !important;
        min-width: 140px !important;
        max-width: 250px !important;
        padding: 7px !important;
        gap: 3px !important;
        flex-direction: column !important;
        opacity: 0 !important;
        transform: translateY(-10px) !important;
        transition: all 0.3s ease !important;
    }
   
    /* Show dropdown menus when .show class is applied */
    #p-views ul.show,
    #p-cactions ul.show,
    #p-namespaces ul.show,
     #p-personal ul.show {
        display: flex !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: slideDown 0.3s ease !important;
    }
   
    #p-views li a,
    #p-cactions li a,
    #p-namespaces li a,
    #p-personal li a {
        display: block !important;
        width: 100% !important;
        padding: 8px 12px !important;
        margin: 2px 0 !important;
        text-align: left !important;
        font-size: 12px !important;
        border-radius: 6px !important;
        color: var(--dark-pink) !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }
   
    #p-views li a:hover,
    #p-cactions li a:hover,
    #p-namespaces li a:hover,
    #p-personal li a:hover {
        background: var(--pink-crystal) !important;
        color: white !important;
        transform: translateX(3px) !important;
    }
}
}


/* Desktop-like behavior for larger tablets */
@keyframes slideInLeft {
@media screen and (min-width: 769px) and (max-width: 1024px) {
  from {
    #p-views ul,
     transform: translateX(-100%);
     #p-cactions ul {
  }
        display: flex !important;
  to {
        flex-direction: row !important;
     transform: translateX(0);
        position: static !important;
  }
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 12px !important;
        padding: 8px !important;
        box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15) !important;
        backdrop-filter: blur(10px) !important;
        gap: 6px !important;
    }
   
    #p-views li,
    #p-cactions li {
        margin: 0 !important;
        border: none !important;
    }
   
    #p-views li a,
    #p-cactions li a {
        padding: 10px 16px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        background: rgba(233, 30, 99, 0.1) !important;
        color: var(--pink-crystal) !important;
        border: 1px solid rgba(233, 30, 99, 0.2) !important;
     }
   
    #p-views li a:hover,
    #p-cactions li a:hover {
        background: var(--pink-crystal) !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3) !important;
    }
}
}
 
/* Resources Footer Styles */
/* NAVIGATION AND HEADER - RESPONSIVE DESIGN */
     .resources-footer {
/* Desktop styles */
      background-color: #fff;
@media screen and (min-width: 769px) {
      padding: 2rem;
     #mw-head, #mw-head-base, .mw-header {
      margin-top: 2rem;
        display: flex !important;
      border-top: 1px solid #e0e0e0;
        justify-content: space-between !important;
      box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
        align-items: center !important;
        position: fixed !important;
        top: 0 !important;
        left: 200px !important;
        right: 0 !important;
        width: calc(100% - 200px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: var(--glass-blur) !important;
        border-bottom: 2px solid var(--pink-crystal) !important;
        box-shadow: var(--card-shadow) !important;
        height: auto !important;
        padding: 0.5em 1em !important;
        min-height: 3em !important;
        z-index: 1000 !important;
        margin-left: 0 !important;
    }
   
    #left-navigation {
        display: flex !important;
        align-items: center !important;
        gap: 0.5em !important;
        flex: 0 0 auto !important;
        position: relative !important;
    }
   
    #right-navigation {
        display: flex !important;
        align-items: center !important;
        gap: 1em !important;
        flex: 0 0 auto !important;
     }
     }
      
      
     /* Responsive header buttons positioning */
     .resources-footer .section-header {
    #left-navigation #p-namespaces {
      text-align: center;
        transform: translateY(-32px) translateX(-128px) !important;
      margin-bottom: 1.5rem;
     }
     }
      
      
     #left-navigation #p-views,
     .resources-footer .info-card {
    #left-navigation #p-cactions {
      background-color: #f9f9f9;
        position: relative !important;
      border-radius: 10px;
        display: inline-block !important;
      padding: 1.5rem;
        margin-right: 0.5em !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(80px) !important;
     }
     }
      
      
     #searchform, #simpleSearch, #p-personal {
     .resources-footer .footer-nav {
        display: inline-flex !important;
      display: flex;
        align-items: center !important;
      justify-content: center;
        margin: 0 !important;
      margin-top: 1.5rem;
     }
     }
      
      
     body #content, body .mw-body {
     .resources-footer .back-to-top {
        margin-top: 4em !important;
      display: inline-block;
        padding-top: 1em !important;
      padding: 0.5rem 1rem;
        margin-left: 200px !important;
      background-color: #f0f0f0;
      border-radius: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: all 0.2s ease;
     }
     }
      
      
     #mw-panel {
     .resources-footer .back-to-top:hover {
        top: 0 !important;
      background-color: #e0e0e0;
        height: 100vh !important;
      transform: translateY(-2px);
     }
     }
}


/* Tablet styles */
                /* Guardian Types Styling */
@media screen and (min-width: 481px) and (max-width: 768px) {
                .guardian-selector {
    #mw-head, #mw-head-base, .mw-header {
                    background: rgba(255, 255, 255, 0.8);
        display: flex !important;
                    border-radius: 15px;
        justify-content: space-between !important;
                    padding: 25px;
        align-items: center !important;
                    margin-bottom: 30px;
        position: fixed !important;
                    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        top: 0 !important;
                }
        left: 200px !important;
               
        right: 0 !important;
                .selector-header {
        width: calc(100% - 200px) !important;
                    text-align: center;
        background: rgba(255, 255, 255, 0.98) !important;
                    margin-bottom: 20px;
        backdrop-filter: var(--glass-blur) !important;
                }
        border-bottom: 2px solid var(--pink-crystal) !important;
               
        box-shadow: var(--card-shadow) !important;
                .difficulty-slider-container {
        height: auto !important;
                    margin: 30px 0;
        padding: 0.5em 1em !important;
                    position: relative;
        min-height: 3em !important;
                }
        z-index: 1000 !important;
               
        margin-left: 0 !important;
                .difficulty-labels {
    }
                    display: flex;
   
                    justify-content: space-between;
    #left-navigation {
                    margin-bottom: 10px;
        display: flex !important;
                }
        align-items: center !important;
               
        gap: 0.5em !important;
                .difficulty-labels span {
        flex: 0 0 auto !important;
                    font-size: 0.9em;
        position: relative !important;
                    color: #666;
    }
                    position: relative;
   
                }
    #right-navigation {
               
        display: flex !important;
                .difficulty-slider {
        align-items: center !important;
                    width: 100%;
        gap: 0.5em !important;
                    height: 10px;
        flex: 0 0 auto !important;
                    border-radius: 5px;
    }
                    background: linear-gradient(to right, #4CAF50, #FFC107, #FF9800, #F44336, #9C27B0);
   
                    outline: none;
    /* Responsive header buttons positioning */
                    -webkit-appearance: none;
    #left-navigation #p-namespaces {
                    appearance: none;
        transform: translateY(-32px) translateX(-128px) !important;
                }
    }
               
   
                .difficulty-slider::-webkit-slider-thumb {
    #left-navigation #p-views,
                    -webkit-appearance: none;
    #left-navigation #p-cactions {
                    appearance: none;
        position: relative !important;
                    width: 25px;
        display: inline-block !important;
                    height: 25px;
        margin-right: 0.5em !important;
                    border-radius: 50%;
        transform: translateY(80px) !important;
                    background: #e91e63;
    }
                    cursor: pointer;
   
                    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
    #searchform, #simpleSearch, #p-personal {
                }
        display: inline-flex !important;
               
        align-items: center !important;
                .difficulty-slider::-moz-range-thumb {
        margin: 0 !important;
                    width: 25px;
    }
                    height: 25px;
   
                    border-radius: 50%;
    body #content, body .mw-body {
                    background: #e91e63;
        margin-top: 4em !important;
                    cursor: pointer;
        padding-top: 1em !important;
                    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
        margin-left: 200px !important;
                }
    }
               
      
                .guardian-preview-image {
     #mw-panel {
                    margin: 20px auto;
        top: 0 !important;
                    max-width: 600px;
        height: 100vh !important;
                }
    }
               
                /* 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;
  }
}
}


/* Mobile styles */
/* [RESPONSIVE] DESTAQUES GRID - Mobile & Tablet Breakpoints */
@media screen and (max-width: 480px) {
@media (max-width: 1200px) {
    #mw-head, #mw-head-base, .mw-header {
  .destaques-grid {
        display: block !important;
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        position: fixed !important;
     max-width: 960px;
        top: 0 !important;
  }
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: var(--glass-blur) !important;
        border-bottom: 2px solid var(--pink-crystal) !important;
        height: 4em !important;
        z-index: 1000 !important;
        box-shadow: var(--card-shadow) !important;
     }
   
    #left-navigation {
        position: absolute !important;
        left: 1em !important;
        top: 0.5em !important;
        z-index: 1002 !important;
        max-width: 40% !important;
        display: flex !important;
        align-items: center !important;
    }
   
    /* Responsive header buttons positioning for mobile */
    #left-navigation #p-namespaces {
        transform: translateY(-24px) translateX(-96px) !important;
        font-size: 0.8em !important;
    }
   
    #left-navigation #p-views,
    #left-navigation #p-cactions {
        transform: translateY(60px) !important;
        font-size: 0.8em !important;
        margin-right: 0.3em !important;
     }
   
    #right-navigation {
        position: absolute !important;
        right: 1em !important;
        top: 0.5em !important;
        z-index: 1002 !important;
        max-width: 40% !important;
        display: flex !important;
        align-items: center !important;
    }
   
    #searchform, #simpleSearch, #p-personal {
        position: relative !important;
        z-index: 1003 !important;
        margin: 0 0.5em !important;
        display: inline-block !important;
        vertical-align: top !important;
    }
   
    #searchInput, #searchButton, #p-personal ul li a {
        position: relative !important;
        z-index: 1004 !important;
        pointer-events: auto !important;
    }
   
    body #content, body .mw-body {
        margin-top: 4em !important;
        padding-top: 1em !important;
    }
   
    #mw-panel {
        top: 4em !important;
        height: calc(100vh - 4em) !important;
    }
}
}


/* ADDITIONAL RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
/* Extra small screens */
  .destaques-grid {
@media screen and (max-width: 320px) {
     grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
     #left-navigation #p-namespaces {
    gap: 12px;
        transform: translateY(-20px) translateX(-80px) !important;
     padding: 0 15px;
        font-size: 0.7em !important;
    max-width: 100%;
     }
  }
   
 
    #left-navigation #p-views,
  .destaque-card {
    #left-navigation #p-cactions {
    min-height: 220px;
        transform: translateY(50px) !important;
    padding: 10px;
        font-size: 0.7em !important;
  }
        margin-right: 0.2em !important;
 
    }
  .destaque-image {
   
    height: 120px;
    #left-navigation {
  }
        max-width: 35% !important;
        overflow: hidden !important;
    }
   
    #right-navigation {
        max-width: 35% !important;
        overflow: hidden !important;
    }
}
}


/* Large screens - enhanced positioning */
@media (max-width: 480px) {
@media screen and (min-width: 1200px) {
  .destaques-grid {
     #left-navigation {
     grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1em !important;
    gap: 10px;
     }
     padding: 0 10px;
      
  }
     #left-navigation #p-views,
 
    #left-navigation #p-cactions {
  .destaque-card {
        margin-right: 1em !important;
     min-height: 200px;
    }
     padding: 8px;
  }
 
  .destaque-image {
    height: 100px;
    max-width: 140px;
  }
 
 
  .destaque-text p {
    font-size: 0.8em;
  }
}
}


/* CORATO PINK THEME PRESERVATION */
/* End of CSS file - All styles properly closed */
/* Personal menu and search styling */
#p-personal ul li a { color: var(--dark-pink) !important; }
#p-personal ul li a:hover { color: var(--pink-cyber) !important; background-color: var(--surface-glass) !important; }
#searchInput { border: 2px solid var(--pink-cyber) !important; }
#searchInput:focus { border-color: var(--dark-pink) !important; box-shadow: var(--shadow-kawaii) !important; }
#searchButton { background-color: var(--pink-cyber) !important; border: 1px solid var(--dark-pink) !important; color: white !important; }
#searchButton:hover { background-color: var(--dark-pink) !important; }
.mw-ui-button, .mw-ui-input, .mw-ui-checkbox, .oo-ui-widget { background: initial !important; border: initial !important; color: initial !important; font-family: initial !important; font-size: initial !important; padding: initial !important; margin: initial !important; border-radius: initial !important; box-shadow: initial !important; }

Revision as of 22:07, 12 August 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 {
  background: var(--background-primary) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--border-radius) !important;
  box-shadow: var(--shadow-medium) !important;
  margin-top: var(--spacing-lg) !important;
  margin-bottom: var(--spacing-lg) !important;
  margin-right: var(--spacing-lg) !important;
  padding: var(--spacing-xl) !important;
  position: relative !important;
  backdrop-filter: var(--blur-glass) !important;
  overflow: visible !important;
}

#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 */
a {
  color: var(--primary-pink) !important;
  text-decoration: none !important;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease !important;
  display: inline-block !important;
  padding: 2px 4px !important;
  border-radius: 4px !important;
  border-left: 3px solid transparent !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pulse {
  animation: pulse 2s infinite;
}

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

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

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

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

@media (max-width: 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;
}

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

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