MediaWiki:Vector.css: Difference between revisions

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


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


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


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


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


.utility-banner > * {
  position: absolute;
  top: 0;
  right: 8px;
}
/* [HERO] HERO / BANNER SECTION */
.hero {
.hero {
   background: rgba(255,255,255,0.85);
   background: var(--bg-1);
   border: 2px solid rgba(255, 111, 163, 0.18);
   border: 2px solid var(--border);
   border-radius: var(--radius-lg);
   border-radius: 20px;
   max-width: var(--container-max);
   max-width: 1200px;
   margin: 0 auto 16px auto;
   margin: 0 auto 16px auto;
   box-shadow: var(--shadow);
   box-shadow: 0 6px 24px var(--shadow-soft);
   backdrop-filter: blur(10px);
    
}
}


Line 183: Line 27:
   font-size: clamp(22px, 4vw, 36px);
   font-size: clamp(22px, 4vw, 36px);
   font-weight: 800;
   font-weight: 800;
   background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
   background: linear-gradient(135deg, var(--heading-gradient-start), var(--heading-gradient-end));
   -webkit-background-clip: text;
    
   background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
    
}
}


.hero-subtitle {
.hero-subtitle {
   color: var(--ink-500);
   color: var(--text-muted);
   font-size: clamp(14px, 2.2vw, 18px);
   font-size: clamp(14px, 2.2vw, 18px);
}
}
Line 200: Line 44:
   border-radius: 999px;
   border-radius: 999px;
   font-weight: 700;
   font-weight: 700;
   color: #fff;
   color: var(--text-strong);
   background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
   background: var(--primary);
  animation: fadeInOut 2s ease-in-out infinite;
}
}


/* 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";
  BackToTopButton.css
  display: block;
  Botão "Back to Top" (BtT)
  font-weight: bold;
  ======================================== */
  margin-bottom: 10px;
  color: #4CAF50;
}


/* Warning Box */
/* ==========================================================================
.warning-box {
  Base
   background-color: rgba(255, 165, 0, 0.2);
  ========================================================================== */
   border-left: 4px solid #FF9800;
.btt-button {
   padding: 15px;
   position: fixed;
   margin: 20px 0;
   bottom: 30px;
   border-radius: 4px;
   right: 30px;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   width: 50px;
}
   height: 50px;
 
   border: none;
.warning-box::before {
   border-radius: 12px;
   content: "⚠️ Warning";
   cursor: pointer;
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
   color: #FF9800;
}
 
/* [NAVIGATION] TAB NAVIGATION SYSTEM */
.nav-tabs {
   display: flex;
   display: flex;
  flex-wrap: wrap;
  gap: 8px;
   align-items: center;
   align-items: center;
   justify-content: center;
   justify-content: center;
   background: rgba(255,255,255,0.9);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 111, 163, 0.18);
   z-index: 1000;
   border-radius: var(--radius-lg);
   opacity: 0;
   max-width: var(--container-max);
   visibility: hidden;
   margin: 0 auto 16px auto;
   transform: translateY(20px) scale(0.8);
   padding: 8px;
   backdrop-filter: blur(10px);
   box-shadow: var(--shadow);
}
}


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


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


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


.nav-tab .short-text {
/* ==========================================================================
   display: none;
  Ícone (seta)
  ========================================================================== */
.btt-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid;
  border-right: 8px solid;
  border-bottom: 12px solid;
   transition: all 0.3s ease;
}
}


/* [CONTENT] CONTENT SECTIONS & ANIMATIONS */
.btt-button:hover::before {
.content {
   transform: translateY(-2px);
   max-width: var(--container-max);
  margin: 0 auto;
}
}


.tab-content {
/* ==========================================================================
  display: none;
  Animação (pulse)
  background: rgba(255,255,255,0.98);
  ========================================================================== */
  border-radius: var(--radius-lg);
@keyframes btt-pulse {
   border: 2px solid rgba(255, 111, 163, 0.18);
   0% { opacity: 1; }
   box-shadow: var(--shadow);
   50% { opacity: 1; }
   padding: clamp(16px, 3vw, 36px);
   100% { opacity: 1; }
}
}


.tab-content.active {
.btt-button.pulse {
  display: block;
   animation: btt-pulse 2s ease-in-out 3;
   animation: fadeIn .35s ease;
}
}


@keyframes fadeIn {
/* ==========================================================================
   from {
  Responsividade
     opacity: 0;
  ========================================================================== */
     transform: translateY(8px);
@media (max-width: 768px) {
   .btt-button {
     bottom: 20px;
    right: 20px;
    width: 45px;
     height: 45px;
   }
   }
   to {
    
     opacity: 1;
  .btt-button::before {
     transform: translateY(0);
     border-left-width: 7px;
    border-right-width: 7px;
     border-bottom-width: 10px;
   }
   }
}
}


/* Step List */
@media (max-width: 480px) {
.step-list {
  .btt-button {
   counter-reset: step-counter;
    bottom: 15px;
  list-style-type: none;
    right: 15px;
  padding-left: 0;
    width: 40px;
   margin: 25px 0;
    height: 40px;
   }
 
  .btt-button::before {
    border-left-width: 6px;
    border-right-width: 6px;
    border-bottom-width: 9px;
   }
}
}


.step-item {
/* ==========================================================================
  position: relative;
  Acessibilidade
  padding-left: 50px;
  ========================================================================== */
   margin-bottom: 25px;
@media (prefers-contrast: high) {
   counter-increment: step-counter;
   .btt-button {
    border: 2px solid;
   }
}
}


.step-item::before {
@media (prefers-reduced-motion: reduce) {
   content: counter(step-counter);
   .btt-button {
  position: absolute;
    transition: opacity 0.3s ease;
   left: 0;
   }
   top: 0;
    
   width: 35px;
   .btt-button:hover {
  height: 35px;
    transform: none;
   background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
   }
   color: white;
    
   border-radius: 50%;
   .btt-button::before {
   display: flex;
    transition: none;
   align-items: center;
   }
   justify-content: center;
 
   font-weight: bold;
   .btt-button:hover::before {
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: none;
   }
 
   .btt-button.pulse {
    animation: none;
   }
}
}


/* External Link */
/* ========================================
.external-link {
  ContentContainer.css
  color: var(--primary-pink);
  Container principal de conteúdo (#content / .mw-body)
  text-decoration: none;
  ======================================== */
  border-bottom: 1px dashed var(--primary-pink);
  transition: all 0.3s ease;
  padding-right: 20px;
  position: relative;
}


.external-link::after {
body.skin-vector-legacy #content,
   content: '↗';
body.skin-vector-legacy .mw-body {
   position: absolute;
   border: 1px solid !important;
  right: 0;
   border-radius: 12px !important;
   top: 0;
   margin: 50px auto !important;
   font-size: 0.8em;
   max-width: 1500px;
}
}


.external-link:hover {
#content::before,
   color: var(--dark-pink);
.mw-body::before {
   border-bottom-color: var(--dark-pink);
   content: '' !important;
  position: absolute !important;
  inset: -1px !important;
   border-radius: 12px !important;
  z-index: -1 !important;
  opacity: 0.1 !important;
}
}


.section-header {
/* ========================================
  text-align: center;
  Forms.css
  margin-bottom: clamp(12px, 2.5vw, 24px);
  Inputs e formulários (search, text, select, textarea)
}
  ======================================== */


.section-header h2 {
input[type="text"],
   margin: 0;
input[type="search"],
   font-size: clamp(20px, 3vw, 28px);
textarea,
   color: var(--ink-900);
select {
   border-bottom: 2px solid var(--pink-500);
   border: 2px solid !important;
   display: inline-block;
   border-radius: 8px !important;
   padding-bottom: 6px;
   padding: 8px 16px !important;
   font-family: inherit !important;
   transition: 0.15s ease !important;
    
}
}


.section-lead {
input[type="text"]:focus,
  margin-top: 6px;
input[type="search"]:focus,
  color: var(--ink-500);
textarea:focus,
   font-size: clamp(13px, 2vw, 16px);
select:focus {
    
}
}


/* [GRIDS] HIGHLIGHTS GRID */
/* ========================================
.highlights-grid {
  HamburguerMenu.css
  display: grid;
  Sidebar (Vector Legacy) + menu hambúrguer + overlay
  grid-template-columns: repeat(6, 1fr);
  ======================================== */
  gap: clamp(10px, 2vw, 16px);
  margin: 1rem 0;
}


/* Quick Stats Grid */
/* ==========================================================================
.quick-stats {
  Variáveis reutilizáveis (dimensões e cores)
    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));
  Sidebar (container)
    backdrop-filter: blur(10px);
  ========================================================================== */
    -webkit-backdrop-filter: blur(10px);
body.skin-vector-legacy #mw-panel {
    border-radius: 10px;
  border-right: 2px solid;
    padding: 20px;
  padding: 18px 0;
    text-align: center;
  border-radius: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform .3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: fixed;
  z-index: 1000;
  height: 100vh;
  width: 220px;
  overflow-y: auto;
  overflow-x: hidden;
}
}


.stat-card:hover {
/* Exibe sidebar somente quando mobile-open está presente */
    transform: translateY(-5px);
body.skin-vector-legacy #mw-panel.mobile-open {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
}
}


.stat-card h3 {
/* Overlay ao abrir a sidebar */
    margin: 0 0 10px 0;
body.sidebar-open::before {
    font-size: 1.2rem;
  content: '';
    color: var(--primary-pink);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 1;
  transition: opacity .3s ease;
  background: rgba(0, 0, 0, 0.5);
}
}


.stat-card p {
/* ==========================================================================
    font-size: 2rem;
  Sidebar (portais e itens)
    font-weight: bold;
  ========================================================================== */
    margin: 0;
body.skin-vector-legacy #mw-panel .vector-menu-portal,
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
body.skin-vector-legacy #mw-panel .portal {
    -webkit-background-clip: text;
  padding: 10px;
    background-clip: text;
  border: 3px solid;
    color: transparent;
  border-radius: 14px;
  overflow: hidden;
}
}


.card {
body.skin-vector-legacy #mw-panel .vector-menu-portal .vector-menu-heading,
   background: var(--surface);
body.skin-vector-legacy #mw-panel .portal h3 {
   border: 1px solid var(--border);
   margin: 0;
   border-left: 3px solid transparent;
  padding: 10px 12px;
   border-radius: var(--radius-md);
  font-size: 0.92em;
   overflow: hidden;
  font-weight: 700;
   transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
   letter-spacing: .3px;
   padding: 0;
  text-decoration: underline;
   border-bottom: 1px;
   text-shadow: 0 1px 2px rgb(0, 0, 0) !important;
  cursor: pointer;
  user-select: none;
   position: relative;
   transition: background 0.3s ease, transform 0.2s ease;
   border-radius: 14px;
}
}


.card:hover {
body.skin-vector-legacy #mw-panel .vector-menu-portal .vector-menu-heading:hover,
  transform: translateY(-3px);
body.skin-vector-legacy #mw-panel .portal h3:hover {
  box-shadow: var(--shadow);
   transform: translateY(-1px);
  background: #fff5fb;
   border-left-color: var(--primary-pink);
  padding-left: 4px;
}
}


.card-media {
body.skin-vector-legacy #mw-panel .vector-menu-portal .vector-menu-heading::after,
   text-align: center;
body.skin-vector-legacy #mw-panel .portal h3::after {
   padding-top: 6px;
   content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
   transition: transform 0.3s ease;
  border-radius: 14px;
}
}


.card-body {
body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed .vector-menu-heading::after,
   padding: 10px 12px;
body.skin-vector-legacy #mw-panel .portal.collapsed h3::after {
   transform: translateY(-50%) rotate(-90deg);
}
}


.card-title {
body.skin-vector-legacy #mw-panel .vector-menu-content ul,
body.skin-vector-legacy #mw-panel .portal .body ul {
  list-style: none;
   margin: 0;
   margin: 0;
   font-size: clamp(14px, 2.2vw, 18px);
   padding: 4px 0;
  color: var(--ink-900);
   border-radius: 14px;
   text-align: center;
}
}


/* [GRIDS] INFO GRID */
body.skin-vector-legacy #mw-panel .vector-menu-content,
.info-grid {
body.skin-vector-legacy #mw-panel .portal .body {
   display: grid;
   max-height: none;
   gap: clamp(10px, 2vw, 16px);
   overflow: hidden;
   grid-template-columns: repeat(3, 1fr);
   transition: max-height 0.4s ease, opacity 0.3s ease;
   margin-top: clamp(12px, 2.5vw, 24px);
   opacity: 1;
}
}


.info-card {
body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed .vector-menu-content,
  background: var(--surface);
body.skin-vector-legacy #mw-panel .portal.collapsed .body {
  border: 1px solid var(--border);
   max-height: 0 !important;
   border-left: 3px solid transparent;
   opacity: 0;
   border-radius: var(--radius-md);
   padding: 0;
   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 {
body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed,
  transform: translateY(-2px);
body.skin-vector-legacy #mw-panel .portal.collapsed { margin-bottom: 8px; }
  box-shadow: var(--shadow-light);
 
  background: #fff5fb;
body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed .vector-menu-heading,
   border-left-color: var(--primary-pink);
body.skin-vector-legacy #mw-panel .portal.collapsed h3 {
   padding-left: clamp(16px, 3vw, 22px);
   border-bottom: none;
   border-radius: 14px;
}
}


.inline-list {
body.skin-vector-legacy #mw-panel .vector-menu-content li,
   list-style: none;
body.skin-vector-legacy #mw-panel .portal .body li { border-bottom: 1px solid; }
   padding: 0;
 
   margin: 0;
body.skin-vector-legacy #mw-panel .vector-menu-content li:last-child,
   display: flex;
body.skin-vector-legacy #mw-panel .portal .body li:last-child { border-bottom: 0; }
   flex-wrap: wrap;
 
   gap: 8px 14px;
body.skin-vector-legacy #mw-panel .vector-menu-content a,
body.skin-vector-legacy #mw-panel .portal .body a {
   display: block;
   padding: 8px 14px;
   text-decoration: none;
   border-radius: 10px;
   border-left: 3px solid;
   transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
}
}


.inline-list li {
body.skin-vector-legacy #mw-panel .vector-menu-content a:hover,
   white-space: nowrap;
body.skin-vector-legacy #mw-panel .portal .body a:hover {
   padding-left: 18px;
}
}


/* [GRIDS] TABLE-LIKE RESPONSIVE COLUMNS */
/* ==========================================================================
.wikitable-like {
  Scrollbar (sidebar)
  display: grid;
  ========================================================================== */
  gap: 16px;
body.skin-vector-legacy #mw-panel::-webkit-scrollbar { width: 6px; }
  grid-template-columns: repeat(3, 1fr);
body.skin-vector-legacy #mw-panel::-webkit-scrollbar-thumb { border-radius: 3px; }
}


.wikitable-like .column {
/* ==========================================================================
   background: var(--surface);
  Menu hambúrguer (toggle)
   border: 1px solid var(--border);
  ========================================================================== */
   border-left: 3px solid transparent;
.mobile-hamburger-menu {
   border-radius: var(--radius-md);
   display: flex;
   padding: 16px;
  position: fixed;
   transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
  top: 20px;
  left: 20px;
  z-index: 1002;
  width: 50px;
   height: 50px;
   border: none;
   border-radius: 14px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
   gap: 4px;
   transition: transform .3s ease, box-shadow .3s ease;
  padding: 0;
  background: linear-gradient(135deg, #ff6b9d, #ff8fb0);
}
}


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


.wikitable-like ul {
.mobile-hamburger-menu span {
   margin: 0;
   display: block;
   padding-left: 18px;
  width: 25px;
  height: 3px;
  border-radius: 2px;
   transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
  background: #ffffff;
}
}


/* [SIDEBAR] SIDEBAR COMPONENTS */
.mobile-hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.sidebar {
.mobile-hamburger-menu.active span:nth-child(2) { opacity: 0; }
  margin-top: 16px;
.mobile-hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
}
 
/* ==========================================================================
  Logo “peek” (quando sidebar está recolhida/aberta)
  ========================================================================== */
body.skin-vector-legacy #p-logo { margin: 0 12px 18px; }


.sidebar-inner {
body.skin-vector-legacy #p-logo a {
   background: var(--surface);
   display: block;
   border: 1px solid var(--border);
   border: 1px solid;
  border-left: 3px solid transparent;
   border-radius: 14px;
   border-radius: var(--radius-md);
   padding: 12px;
   padding: 16px;
   transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  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 {
body.skin-vector-legacy #p-logo a:hover {
   transform: translateY(-2px);
   transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: #fff5fb;
  border-left-color: var(--primary-pink);
  padding-left: 20px;
}
}


.sidebar-title {
body.skin-vector-legacy #p-logo {  
   margin: 0 0 8px 0;
  position: absolute;
   font-size: clamp(16px, 2.5vw, 20px);
  top: 12px;
  left: calc(100% + 12px);
   margin: 0;  
   z-index: 1001;  
}
}


.sidebar-list {
body.skin-vector-legacy #p-logo a {
   margin: 0;
   width: 56px;
   padding-left: 18px;
  height: 56px;
  padding: 0;  
   display: block;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid;
}
}


/* [CONTENT] TAB FOOTER / NAVIGATION */
body.skin-vector-legacy #mw-panel.mobile-open #p-logo {
.tab-footer {
   position: relative;  
   display: flex;
   left: auto;
   justify-content: center;
  top: auto;
   margin-top: clamp(12px, 2.5vw, 24px);
   margin: 0 12px 18px;
}
}


.back-to-top {
body.skin-vector-legacy #mw-panel.mobile-open #p-logo a {
  display: inline-block;
   width: auto;  
  padding: 10px 16px;
   height: auto;  
  font-weight: 700;
   padding: 12px;
   border-radius: 999px;
   background-size: contain;
   text-decoration: none;
   color: #fff;
   background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
}
}


/* Fixed Back to Top Button */
/* ==========================================================================
.back-to-top-fixed {
  Acessibilidade
   position: fixed;
  ========================================================================== */
  bottom: 20px;
@media (prefers-contrast: more) {
  right: 20px;
   body.skin-vector-legacy #mw-panel .vector-menu-content a:hover { text-decoration: underline; }
  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;
  Header.css
   transform: translateY(-3px);
  Cabeçalho (#mw-head) do Vector Legacy
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  ======================================== */
 
#mw-head {
  padding: 10px ;
   border-bottom: 2px solid;  
   border: 1px solid;
   border-radius: 8px;
 
}
}


.back-to-top-fixed::before {
/* ========================================
  content: '↑';
  HeaderTabs.css
  font-size: 20px;
  Abas e ações do cabeçalho (views/actions/watch)
}
  ======================================== */


/* [TYPOGRAPHY] HEADINGS STYLE */
/* ==========================================================================
h1, h2, h3, h4, h5, h6 {
  Botões base
   color: var(--primary-pink) !important;
  ========================================================================== */
#ca-view a,
#ca-viewsource a,
#ca-ve-edit a,
#ca-edit a,
#ca-history a,
#p-cactions .vector-menu-heading ,
#ca-delete a,
#ca-move a,
#ca-protect a {
   display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 12px !important;
  margin: 4px 6px 0 0 !important;
  border-radius: 10px !important;
  border: 2px solid !important;
   font-weight: 700 !important;
   font-weight: 700 !important;
   margin-bottom: var(--spacing-md) !important;
   text-decoration: none !important;
   margin-top: var(--spacing-lg) !important;
   transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease !important;
}
}


h1 {
/* ==========================================================================
  background: var(--pink-gradient) !important;
  Watch / Unwatch (ícones)
   -webkit-background-clip: text !important;
  ========================================================================== */
   -webkit-text-fill-color: transparent !important;
#ca-watch a,
   background-clip: text !important;
#ca-unwatch a {
   font-size: 2.5em !important;
  font-size: 0;
  width: 24px;
  height: 24px;
  padding: 0;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
}
}


/* Collapsible Elements - Only for page content */
#ca-watch a {
.mw-body .collapsible,
  content: "";
#content .collapsible,
  display: block;
#mw-content-text .collapsible,
  width: 16px;
button.collapsible {
  height: 16px;
    background-color: #f1f1f1;
  background-image: url("https://mewsie.world/CoraTOWiki/images/2/28/EmptyPinkStar.png");
    color: #444;
  background-size: contain;
    cursor: pointer;
  background-repeat: no-repeat;
    padding: 18px;
  border-radius: 10px !important;
    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,
#ca-unwatch a {
#content .collapsible:hover,
  content: "";
#mw-content-text .collapsible:hover,
  display: block;
button.collapsible:hover {
  width: 16px;
    background-color: #ddd;
  height: 16px;
  background-image: url("https://mewsie.world/CoraTOWiki/images/c/cc/FullPinkStar.png");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 10px !important;
}
}


.mw-body .collapsible::after,
/* ==========================================================================
#content .collapsible::after,
  Hover / active
#mw-content-text .collapsible::after,
  ========================================================================== */
button.collapsible::after {
#ca-view a:hover,
    content: '+';
#ca-viewsource a:hover,
    font-size: 18px;
#ca-edit a:hover,
    font-weight: bold;
#ca-history a:hover,
    float: right;
#ca-watch a:hover,
    margin-left: 5px;
#ca-unwatch a:hover,
#p-cactions .vector-menu-heading:hover,
#ca-delete a:hover,
#ca-move a:hover,
#ca-protect a:hover {
  transform: translateY(-2px) !important;
}
}


.mw-body .collapsible.active::after,
/* ==========================================================================
#content .collapsible.active::after,
  Remoções e resets do cabeçalho
#mw-content-text .collapsible.active::after,
  ========================================================================== */
button.collapsible.active::after {
#pt-anontalk,
    content: '-';
#p-namespaces,
#pt-anoncontribs,
#ca-talk,
#ca-nstab-main,
#ca-nstab-mediawiki {
  display: none !important;
}
}


.mw-body .collapsible-content,
#ca-talk,
#content .collapsible-content,
#ca-nstab-main,
#mw-content-text .collapsible-content,
#ca-nstab-mediawiki,
button.collapsible + .collapsible-content {
#ca-view,
    padding: 0 18px;
#ca-viewsource,
    max-height: 0;
#ca-edit,
    overflow: hidden;
#ca-ve-edit,
    transition: max-height 0.2s ease-out;
#ca-history,
    background-color: white;
#ca-watch,
    border-radius: 0 0 4px 4px;
#ca-unwatch,
#ca-more,
#mw-page-base {
  border: none !important;
  padding: 0 !important;
  margin: 0 4px !important;
}
}


.mw-body .collapsible-content.active,
// Variáveis LESS que recebem valores das variáveis CSS
#content .collapsible-content.active,
@bg-1: var(--bg-1);
#mw-content-text .collapsible-content.active,
@border: var(--border);
button.collapsible + .collapsible-content.active {
@shadow-soft: var(--shadow-soft);
    max-height: 500px;
@heading-gradient-start: var(--heading-gradient-start);
    padding: 18px;
@heading-gradient-end: var(--heading-gradient-end);
    border: 1px solid #ddd;
@text-muted: var(--text-muted);
    border-top: none;
@text-strong: var(--text-strong);
    margin-bottom: 15px;
@primary: var(--primary);
 
// Estilos
.hero {
  background: @bg-1;
  border: 2px solid @border;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto 16px auto;
  box-shadow: 0 6px 24px @shadow-soft;
}
}


/* [LINKS] LINKS */
.hero-inner {
a {
   padding: clamp(18px, 3vw, 36px);
   color: var(--primary-pink) !important;
   text-align: center;
   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 {
.hero-title {
   color: var(--dark-pink) !important;
   margin: 8px 0 4px 0;
   background: rgba(255, 107, 157, 0.08) !important;
   font-size: clamp(22px, 4vw, 36px);
   border-left-color: var(--primary-pink) !important;
   font-weight: 800;
   padding-left: 8px !important;
  background: linear-gradient(135deg, @heading-gradient-start, @heading-gradient-end);
  text-decoration: none !important;
   background-clip: text;
}
}


/* Content area links - enhanced animation */
.hero-subtitle {
#mw-content-text a {
   color: @text-muted;
   color: #9a3b5f !important;
   font-size: clamp(14px, 2.2vw, 18px);
  text-decoration: none !important;
  display: inline-block !important;
  padding: 2px 4px !important;
  border-radius: 4px !important;
   border-left: 3px solid transparent !important;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease !important;
}
}


#mw-content-text a:hover {
.status-pill {
   color: var(--primary-pink) !important;
   display: inline-block;
   background: #fff5fb !important;
  margin-top: 10px;
   border-left-color: var(--primary-pink) !important;
   padding: 8px 14px;
   padding-left: 8px !important;
   border-radius: 999px;
   text-decoration: none !important;
  font-weight: 700;
  color: @text-strong;
   background: @primary;
   animation: fadeInOut 2s ease-in-out infinite;
}
}


/* [BUTTONS] BUTTONS */
body.skin-vector-legacy.has-user-menu-collapsible #p-personal,
.mw-ui-button,
body.skin-vector-legacy.has-personal-menu-collapsible #p-personal {
.oo-ui-buttonElement-button,
display: none;
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,
body.skin-vector-legacy .personal-menu-container {
.oo-ui-buttonElement-button:hover,
position: fixed;
button:not(.nav-tab):hover {
top: 120px;
  transform: translateY(-2px) !important;
right: 0;
  box-shadow: var(--shadow-pink-hover) !important;
z-index: 1000;
overflow: visible;
display: flex;
flex-direction: row;
}
}


/* [TABLES] TABLES (WikiTable + DataTable) */
body.skin-vector-legacy .personal-menu-header {
table.wikitable,
display: flex;
.mw-datatable,
align-items: center;
.faq-table {
padding: 6px 12px;
  background: var(--background-primary) !important;
top: 2;
  border: 1px solid var(--border-light) !important;
right: 0;
  border-radius: var(--border-radius-small) !important;
position: fixed;
  box-shadow: var(--shadow-light) !important;
cursor: pointer;
  overflow: hidden !important;
user-select: none;
transition: background 0.3s ease;
border-radius: 14px 0 0 14px;
white-space: nowrap;
font-weight: bold;
height: auto;
writing-mode: horizontal-tb;
border: 1px solid;
flex-direction: row;
}
}


table.wikitable th,
body.skin-vector-legacy .personal-menu-header::after {
.mw-datatable th,
content: '';
.faq-table th {
display: inline-block;
  background: var(--secondary-pink) !important;
width: 25px;
  color: var(--text-primary) !important;
height: 25px;
  font-weight: 700 !important;
font-weight: bold;
  padding: var(--spacing-md) !important;
background-image: url( https://mewsie.world/CoraTOWiki/images/9/97/LeftArrow.png );
  border-bottom: 2px solid var(--primary-pink) !important;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
position: relative;
margin-left: 6px;
transition: transform 0.3s ease;
}
}


table.wikitable td,
body.skin-vector-legacy .personal-menu-container.expanded .personal-menu-header::after {
.mw-datatable td,
transform: rotate( 180deg );
.faq-table td {
  padding: var(--spacing-md) !important;
  border-bottom: 1px solid var(--border-light) !important;
}
}


table.wikitable tr:hover,
body.skin-vector-legacy .personal-menu-content {
.mw-datatable tr:hover,
position: absolute;
.faq-table tr:hover {
top: 0;
  background: var(--light-pink) !important;
right: 100%;
border: 1px solid;
border-radius: 14px;
padding: 10px;
width: 0;
overflow: hidden;
opacity: 0;
transition: width 0.4s ease, opacity 0.3s ease;
display: flex;
flex-direction: column;
}
}


/* FAQ Table specific styles */
body.skin-vector-legacy .personal-menu-container.expanded .personal-menu-content {
.faq-table {
width: 180px;
  width: 100% !important;
opacity: 1;
  box-shadow: var(--shadow-medium) !important;
}
}


.faq-table tr:nth-child(odd) td {
body.skin-vector-legacy .personal-menu-list {
  background-color: rgba(255, 107, 157, 0.05) !important;
list-style: none;
margin: 0;
padding: 0;
}
}


.faq-table tr:hover td {
body.skin-vector-legacy .personal-menu-list li {
  background-color: rgba(255, 107, 157, 0.1) !important;
margin: 5px 0;
white-space: nowrap;
border-bottom: 1px solid;
}
}


/* [FORMS] FORM ELEMENTS */
body.skin-vector-legacy .personal-menu-list li:last-child {
input[type="text"],
border-bottom: 0;
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,
body.skin-vector-legacy .personal-menu-list a {
input[type="search"]:focus,
display: block;
textarea:focus,
text-decoration: none;
select:focus {
padding: 8px 10px;
  border-color: var(--primary-pink) !important;
border-radius: 10px;
  outline: none !important;
border-left: 3px solid;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2) !important;
transition: background 0.3s ease, padding-left 0.3s ease, color 0.3s ease;
}
}


/* [MW-ELEMENTS] SPECIAL MEDIAWIKI ELEMENTS */
body.skin-vector-legacy .personal-menu-list a:hover {
.mw-editsection {
padding-left: 18px;
  color: var(--accent-pink) !important;
  font-size: 0.8em !important;
}
}


.mw-headline {
body.skin-vector-legacy .personal-menu-list #pt-anonuserpage {
  border-bottom: 2px solid var(--pink-border) !important;
display: block;
  padding-bottom: var(--spacing-sm) !important;
padding: 8px 10px;
border-radius: 10px;
border-left: 3px solid;
background: none;
color: inherit;
}
}


/* [UTILITIES] UTILITY CLASSES */
body.skin-vector-legacy .personal-menu-list #pt-anonuserpage:hover {
.fade-in {
padding-left: 18px;
  animation: fadeInUp 0.6s ease-out;
}
}


.pulse {
body.skin-vector-legacy .personal-menu-list a.mw-ui-button {
  animation: pulse 2s infinite;
background: none;
border: 0;
box-shadow: none;
font-weight: inherit;
text-shadow: none;
}
}


.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 {
#pt-theme-menu {
  background: var(--pink-gradient) !important;
position: relative;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
}


/* Shimmer animation */
#pt-theme-menu .themeMenu {
@keyframes shimmer {
position: relative;
  0% {
display: inline-block;
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
}


/* [RESPONSIVE] RESPONSIVE DESIGN (Breakpoints & Layout) */
#pt-theme-menu .themeMenu-toggle {
@media (max-width: 1200px) {
appearance: none;
  :root {
background: transparent;
    --sidebar-width: 200px;
border: 1px solid transparent;
    --content-margin: 220px;
border-radius: 4px;
  }
color: inherit;
 
cursor: pointer;
  .highlights-grid {
font: inherit;
    grid-template-columns: repeat(3, 1fr);
line-height: 1.2;
  }
padding: 0.25em 0.55em;
}
}


@media (max-width: 900px) {
#pt-theme-menu .themeMenu-toggle:hover,
  .nav-tab {
#pt-theme-menu .themeMenu.is-open .themeMenu-toggle {
    flex: 1 1 44%;
background: var( --surface );
    min-width: 44%;
border-color: var( --border );
  }
 
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
}


@media (max-width: 600px) {
#pt-theme-menu .themeMenu-dropdown {
  .nav-tab {
display: none;
    flex: 1 1 100%;
position: absolute;
    min-width: 100%;
right: 0;
  }
top: calc( 100% + 0.35em );
 
min-width: 180px;
  .nav-tab .full-text {
margin: 0;
    display: none;
padding: 0.25em 0;
  }
list-style: none;
 
background: var( --surface );
  .nav-tab .short-text {
border: 1px solid var( --border );
    display: inline;
border-radius: 6px;
  }
box-shadow: 0 6px 18px var( --shadow-medium );
 
z-index: 9999;
  .highlights-grid {
    grid-template-columns: 1fr;
  }
 
  .info-grid {
    grid-template-columns: 1fr;
  }
 
  .wikitable-like {
    grid-template-columns: 1fr;
  }
}
}


@media (max-width: 480px) {
#pt-theme-menu .themeMenu.is-open .themeMenu-dropdown {
  :root {
display: block;
    --border-radius: 8px;
    --spacing-xl: 16px;
    --spacing-lg: 12px;
  }
 
  h1 {
    font-size: 1.8em !important;
  }
}
}


/* [ACCESSIBILITY] ACCESSIBILITY IMPROVEMENTS */
#pt-theme-menu .themeMenu-itemWrap {
@media (prefers-reduced-motion: reduce) {
margin: 0;
  * {
padding: 0;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
}


@media (prefers-contrast: high) {
#pt-theme-menu .themeMenu-item {
  :root {
display: block;
    --primary-pink: #d63384;
padding: 0.45em 0.8em;
    --text-primary: #000000;
color: var( --text );
    --border-color: #333333;
text-decoration: none;
  }
white-space: nowrap;
}
}


/* [CHANGELOG-BOX] CHANGELOG BOX STYLES */
#pt-theme-menu .themeMenu-item:hover,
.changelog-box {
#pt-theme-menu .themeMenu-item:focus {
  /* Modern gradient background with subtle pink-to-white transition */
background: var( --bg-1 );
  background: linear-gradient(135deg, #ffeef7 0%, #ffffff 50%, #f8f9fa 100%) !important;
color: var( --text-strong );
 
  /* 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 {
#pt-theme-menu .themeMenu-item.is-current {
  transform: translateY(-2px) !important;
font-weight: 700;
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.12),
              0 3px 10px rgba(0, 0, 0, 0.08) !important;
}
}


/* [WIKILINKS] MEDIAWIKI INTERNAL LINK PROCESSING */
#mw-theme-floating {
.mw-link-internal {
position: fixed;
  color: var(--primary-pink) !important;
top: 0.6em;
  text-decoration: none !important;
right: 0.8em;
  transition: var(--transition-normal) !important;
z-index: 10000;
  border-bottom: 1px dotted transparent !important;
}
}


.mw-link-internal:hover {
#mw-theme-floating .themeMenu {
  color: var(--dark-pink) !important;
position: relative;
  border-bottom-color: var(--primary-pink) !important;
display: inline-block;
}
}


.mw-redirect {
#mw-theme-floating .themeMenu-toggle {
  color: var(--accent-pink) !important;
appearance: none;
background: var( --surface );
border: 1px solid var( --border );
border-radius: 6px;
color: var( --text );
cursor: pointer;
font: inherit;
line-height: 1.2;
padding: 0.35em 0.65em;
box-shadow: 0 6px 18px var( --shadow-soft );
}
}


/* [DESTAQUE CARDS] HOLOGRAMSIE SERVICE CARDS */
#mw-theme-floating .themeMenu-toggle:hover,
.destaques-grid {
#mw-theme-floating .themeMenu.is-open .themeMenu-toggle {
  display: grid;
background: var( --bg-1 );
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin: 30px 0;
  padding: 0 20px;
}
}


.destaque-card {
#mw-theme-floating .themeMenu-dropdown {
  background: var(--light-pink);
display: none;
  border: 2px solid var(--accent-pink);
position: absolute;
  border-radius: 15px;
right: 0;
  padding: 12px;
top: calc( 100% + 0.35em );
  text-align: center;
min-width: 180px;
  transition: all 0.3s ease;
margin: 0;
  min-height: 250px;
padding: 0.25em 0;
  display: flex;
list-style: none;
  flex-direction: column;
background: var( --surface );
  align-items: center;
border: 1px solid var( --border );
  justify-content: flex-start;
border-radius: 6px;
  gap: 12px;
box-shadow: 0 6px 18px var( --shadow-medium );
  position: relative;
z-index: 10001;
  overflow: hidden;
  cursor: pointer;
}
}


.destaque-card[data-link],
#mw-theme-floating .themeMenu.is-open .themeMenu-dropdown {
.destaque-card[data-tab-trigger] {
display: block;
  cursor: pointer;
}
}


.destaque-card[data-link]:hover,
#mw-theme-floating .themeMenu-item {
.destaque-card[data-tab-trigger]:hover {
display: block;
  transform: translateY(-5px);
padding: 0.45em 0.8em;
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
color: var( --text );
  border-color: var(--primary-pink);
text-decoration: none;
white-space: nowrap;
}
}


.destaque-card[data-link] .destaque-text h3,
#mw-theme-floating .themeMenu-item:hover,
.destaque-card[data-tab-trigger] .destaque-text h3 {
#mw-theme-floating .themeMenu-item:focus {
  color: var(--primary-pink);
background: var( --bg-1 );
color: var( --text-strong );
}
}


.destaque-card[data-link]:hover .destaque-text h3,
#mw-theme-floating .themeMenu-item.is-current {
.destaque-card[data-tab-trigger]:hover .destaque-text h3 {
font-weight: 700;
  color: var(--dark-pink);
}
}


.destaque-card[data-link] *,
/* ========================================
.destaque-card[data-tab-trigger] * {
  UserMenu.css
  pointer-events: none;
  Menu de usuário lateral (custom)
}
  ======================================== */


.destaque-image {
/* ==========================================================================
  width: 100%;
  Container (posição e layout)
  max-width: 180px;
  ========================================================================== */
  height: 140px;
body.skin-vector-legacy .user-menu-container {
  overflow: hidden;
position: fixed;
  border-radius: 12px;
top: 120px;
  display: flex;
right: 0;
  align-items: center;
z-index: 1000;
  justify-content: center;
overflow: visible;
display: flex;
flex-direction: row;
}
}


.destaque-image img {
/* ==========================================================================
  width: 100%;
  Header (toggle)
  height: 100%;
  ========================================================================== */
  object-fit: cover;
body.skin-vector-legacy .user-menu-header {
  border-radius: 10px;
display: flex;
align-items: center;
padding: 6px 12px;
top: 2;
right: 0;
position: fixed;
cursor: pointer;
user-select: none;
transition: background 0.3s ease;
border-radius: 14px 0 0 14px;
white-space: nowrap;
font-weight: bold;
height: auto;
writing-mode: horizontal-tb;
border: 1px solid;
flex-direction: row;
}
}


.destaque-text {
body.skin-vector-legacy .user-menu-header::after {
  flex: 1;
content: '';
  display: flex;
display: inline-block;
  flex-direction: column;
width: 25px;
  justify-content: center;
height: 25px;
  gap: 10px;
font-weight: bold;
background-image: url( https://mewsie.world/CoraTOWiki/images/9/97/LeftArrow.png );
background-size: contain;
background-repeat: no-repeat;
background-position: center;
position: relative;
margin-left: 6px;
transition: transform 0.3s ease;
}
}


.destaque-text h3 {
body.skin-vector-legacy .user-menu-container.expanded .user-menu-header::after {
  color: var(--primary-pink);
transform: rotate( 180deg );
  font-size: 0.75em;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}
}


.destaque-text p {
/* ==========================================================================
  color: var(--primary-pink);
  Conteúdo (área expansível)
  font-size: 0.9em;
  ========================================================================== */
  line-height: 1.4;
body.skin-vector-legacy .user-menu-content {
  margin: 0;
position: absolute;
  opacity: 0.8;
top: 0;
right: 100%;
border: 1px solid;
border-radius: 14px;
padding: 10px;
width: 0;
overflow: hidden;
opacity: 0;
transition: width 0.4s ease, opacity 0.3s ease;
display: flex;
flex-direction: column;
}
}


.destaque-card::before {
body.skin-vector-legacy .user-menu-container.expanded .user-menu-content {
  content: '';
width: 180px;
  position: absolute;
opacity: 1;
  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;
  Lista de links
  ========================================================================== */
body.skin-vector-legacy .user-menu-list {
list-style: none;
margin: 0;
padding: 0;
}
}


.destaque-card:hover {
body.skin-vector-legacy .user-menu-list li {
  transform: translateY(-5px);
margin: 5px 0;
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
white-space: nowrap;
  border-color: var(--primary-pink);
border-bottom: 1px solid;
}
}


/* [ANIMATIONS] ANIMATION KEYFRAMES */
body.skin-vector-legacy .user-menu-list li:last-child {
@keyframes fadeInUp {
border-bottom: 0;
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
}


@keyframes pulse {
body.skin-vector-legacy .user-menu-list a {
  0%, 100% {
display: block;
    opacity: 1;
text-decoration: none;
  }
padding: 8px 10px;
  50% {
border-radius: 10px;
    opacity: 0.7;
border-left: 3px solid;
  }
transition: background 0.3s ease, padding-left 0.3s ease, color 0.3s ease;
}
}


@keyframes slideInLeft {
body.skin-vector-legacy .user-menu-list a:hover {
  from {
padding-left: 18px;
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
}

Latest revision as of 18:18, 2 January 2026

figcaption {
	
  background: var(--bg) !important;
}





.hero {
  background: var(--bg-1);
  border: 2px solid var(--border);
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto 16px auto;
  box-shadow: 0 6px 24px var(--shadow-soft);
  
}

.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(--heading-gradient-start), var(--heading-gradient-end));
  
  background-clip: text;
  
}

.hero-subtitle {
  color: var(--text-muted);
  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: var(--text-strong);
  background: var(--primary);
  animation: fadeInOut 2s ease-in-out infinite;
}


/* ========================================
   BackToTopButton.css
   Botão "Back to Top" (BtT)
   ======================================== */

/* ==========================================================================
   Base
   ========================================================================== */
.btt-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  backdrop-filter: blur(10px);
}

/* ==========================================================================
   Estados
   ========================================================================== */
.btt-button.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.btt-button:hover {
  transform: translateY(-3px) scale(1.05);
}

.btt-button:active {
  transform: translateY(-1px) scale(0.98);
}

/* ==========================================================================
   Ícone (seta)
   ========================================================================== */
.btt-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid;
  border-right: 8px solid;
  border-bottom: 12px solid;
  transition: all 0.3s ease;
}

.btt-button:hover::before {
  transform: translateY(-2px);
}

/* ==========================================================================
   Animação (pulse)
   ========================================================================== */
@keyframes btt-pulse {
  0% { opacity: 1; }
  50% { opacity: 1; }
  100% { opacity: 1; }
}

.btt-button.pulse {
  animation: btt-pulse 2s ease-in-out 3;
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 768px) {
  .btt-button {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .btt-button::before {
    border-left-width: 7px;
    border-right-width: 7px;
    border-bottom-width: 10px;
  }
}

@media (max-width: 480px) {
  .btt-button {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .btt-button::before {
    border-left-width: 6px;
    border-right-width: 6px;
    border-bottom-width: 9px;
  }
}

/* ==========================================================================
   Acessibilidade
   ========================================================================== */
@media (prefers-contrast: high) {
  .btt-button {
    border: 2px solid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btt-button {
    transition: opacity 0.3s ease;
  }
  
  .btt-button:hover {
    transform: none;
  }
  
  .btt-button::before {
    transition: none;
  }
  
  .btt-button:hover::before {
    transform: none;
  }
  
  .btt-button.pulse {
    animation: none;
  }
}

/* ========================================
   ContentContainer.css
   Container principal de conteúdo (#content / .mw-body)
   ======================================== */

body.skin-vector-legacy #content,
body.skin-vector-legacy .mw-body {
  border: 1px solid !important;
  border-radius: 12px !important;
  margin: 50px auto !important;
  max-width: 1500px;
}

#content::before,
.mw-body::before {
  content: '' !important;
  position: absolute !important;
  inset: -1px !important;
  border-radius: 12px !important;
  z-index: -1 !important;
  opacity: 0.1 !important;
}

/* ========================================
   Forms.css
   Inputs e formulários (search, text, select, textarea)
   ======================================== */

input[type="text"],
input[type="search"],
textarea,
select {
  border: 2px solid !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
  font-family: inherit !important;
  transition: 0.15s ease !important;
  
}

input[type="text"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  
}

/* ========================================
   HamburguerMenu.css
   Sidebar (Vector Legacy) + menu hambúrguer + overlay
   ======================================== */

/* ==========================================================================
   Variáveis reutilizáveis (dimensões e cores)
   ========================================================================== */

/* ==========================================================================
   Sidebar (container)
   ========================================================================== */
body.skin-vector-legacy #mw-panel {
  border-right: 2px solid;
  padding: 18px 0;
  border-radius: 14px;
  transform: translateX(-100%);
  transition: transform .3s ease;
  position: fixed;
  z-index: 1000;
  height: 100vh;
  width: 220px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Exibe sidebar somente quando mobile-open está presente */
body.skin-vector-legacy #mw-panel.mobile-open {
  transform: translateX(0);
}

/* Overlay ao abrir a sidebar */
body.sidebar-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 1;
  transition: opacity .3s ease;
  background: rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Sidebar (portais e itens)
   ========================================================================== */
body.skin-vector-legacy #mw-panel .vector-menu-portal,
body.skin-vector-legacy #mw-panel .portal {
  padding: 10px;
  border: 3px solid;
  border-radius: 14px;
  overflow: hidden;
}

body.skin-vector-legacy #mw-panel .vector-menu-portal .vector-menu-heading,
body.skin-vector-legacy #mw-panel .portal h3 {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.92em;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: underline;
  border-bottom: 1px;
  text-shadow: 0 1px 2px rgb(0, 0, 0) !important;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: background 0.3s ease, transform 0.2s ease;
  border-radius: 14px;
}

body.skin-vector-legacy #mw-panel .vector-menu-portal .vector-menu-heading:hover,
body.skin-vector-legacy #mw-panel .portal h3:hover {
  transform: translateY(-1px);
}

body.skin-vector-legacy #mw-panel .vector-menu-portal .vector-menu-heading::after,
body.skin-vector-legacy #mw-panel .portal h3::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  transition: transform 0.3s ease;
  border-radius: 14px;
}

body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed .vector-menu-heading::after,
body.skin-vector-legacy #mw-panel .portal.collapsed h3::after {
  transform: translateY(-50%) rotate(-90deg);
}

body.skin-vector-legacy #mw-panel .vector-menu-content ul,
body.skin-vector-legacy #mw-panel .portal .body ul {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  border-radius: 14px;
}

body.skin-vector-legacy #mw-panel .vector-menu-content,
body.skin-vector-legacy #mw-panel .portal .body {
  max-height: none;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 1;
}

body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed .vector-menu-content,
body.skin-vector-legacy #mw-panel .portal.collapsed .body {
  max-height: 0 !important;
  opacity: 0;
  padding: 0;
}

body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed,
body.skin-vector-legacy #mw-panel .portal.collapsed { margin-bottom: 8px; }

body.skin-vector-legacy #mw-panel .vector-menu-portal.collapsed .vector-menu-heading,
body.skin-vector-legacy #mw-panel .portal.collapsed h3 {
  border-bottom: none;
  border-radius: 14px;
}

body.skin-vector-legacy #mw-panel .vector-menu-content li,
body.skin-vector-legacy #mw-panel .portal .body li { border-bottom: 1px solid; }

body.skin-vector-legacy #mw-panel .vector-menu-content li:last-child,
body.skin-vector-legacy #mw-panel .portal .body li:last-child { border-bottom: 0; }

body.skin-vector-legacy #mw-panel .vector-menu-content a,
body.skin-vector-legacy #mw-panel .portal .body a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 10px;
  border-left: 3px solid;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
}

body.skin-vector-legacy #mw-panel .vector-menu-content a:hover,
body.skin-vector-legacy #mw-panel .portal .body a:hover {
  padding-left: 18px;
}

/* ==========================================================================
   Scrollbar (sidebar)
   ========================================================================== */
body.skin-vector-legacy #mw-panel::-webkit-scrollbar { width: 6px; }
body.skin-vector-legacy #mw-panel::-webkit-scrollbar-thumb { border-radius: 3px; }

/* ==========================================================================
   Menu hambúrguer (toggle)
   ========================================================================== */
.mobile-hamburger-menu {
  display: flex;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1002;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: transform .3s ease, box-shadow .3s ease;
  padding: 0;
  background: linear-gradient(135deg, #ff6b9d, #ff8fb0);
}

.mobile-hamburger-menu:hover {
  transform: translateY(-2px);
}

.mobile-hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
  background: #ffffff;
}

.mobile-hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-hamburger-menu.active span:nth-child(2) { opacity: 0; }
.mobile-hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ==========================================================================
   Logo “peek” (quando sidebar está recolhida/aberta)
   ========================================================================== */
body.skin-vector-legacy #p-logo { margin: 0 12px 18px; }

body.skin-vector-legacy #p-logo a {
  display: block;
  border: 1px solid;
  border-radius: 14px;
  padding: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

body.skin-vector-legacy #p-logo a:hover {
  transform: translateY(-2px);
}

body.skin-vector-legacy #p-logo { 
  position: absolute; 
  top: 12px; 
  left: calc(100% + 12px); 
  margin: 0; 
  z-index: 1001; 
}

body.skin-vector-legacy #p-logo a {
  width: 56px; 
  height: 56px; 
  padding: 0; 
  display: block;
  border-radius: 10px;
  background-repeat: no-repeat; 
  background-position: center; 
  background-size: contain;
  border: 1px solid;
}

body.skin-vector-legacy #mw-panel.mobile-open #p-logo {
  position: relative; 
  left: auto; 
  top: auto;
  margin: 0 12px 18px;
}

body.skin-vector-legacy #mw-panel.mobile-open #p-logo a {
  width: auto; 
  height: auto; 
  padding: 12px;
  background-size: contain;
}

/* ==========================================================================
   Acessibilidade
   ========================================================================== */
@media (prefers-contrast: more) {
  body.skin-vector-legacy #mw-panel .vector-menu-content a:hover { text-decoration: underline; }
}

/* ========================================
   Header.css
   Cabeçalho (#mw-head) do Vector Legacy
   ======================================== */

#mw-head { 
  padding: 10px ; 
  border-bottom: 2px solid; 
  border: 1px solid;
  border-radius: 8px;
  
}

/* ========================================
   HeaderTabs.css
   Abas e ações do cabeçalho (views/actions/watch)
   ======================================== */

/* ==========================================================================
   Botões base
   ========================================================================== */
#ca-view a,
#ca-viewsource a,
#ca-ve-edit a,
#ca-edit a,
#ca-history a,
#p-cactions .vector-menu-heading ,
#ca-delete a,
#ca-move a,
#ca-protect a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 12px !important;
  margin: 4px 6px 0 0 !important;
  border-radius: 10px !important;
  border: 2px solid !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease !important;
}

/* ==========================================================================
   Watch / Unwatch (ícones)
   ========================================================================== */
#ca-watch a,
#ca-unwatch a {
  font-size: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#ca-watch a {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("https://mewsie.world/CoraTOWiki/images/2/28/EmptyPinkStar.png");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 10px !important;
}

#ca-unwatch a {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("https://mewsie.world/CoraTOWiki/images/c/cc/FullPinkStar.png");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 10px !important;
}

/* ==========================================================================
   Hover / active
   ========================================================================== */
#ca-view a:hover,
#ca-viewsource a:hover,
#ca-edit a:hover,
#ca-history a:hover,
#ca-watch a:hover,
#ca-unwatch a:hover,
#p-cactions .vector-menu-heading:hover,
#ca-delete a:hover,
#ca-move a:hover,
#ca-protect a:hover {
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   Remoções e resets do cabeçalho
   ========================================================================== */
#pt-anontalk,
#p-namespaces,
#pt-anoncontribs,
#ca-talk,
#ca-nstab-main,
#ca-nstab-mediawiki {
  display: none !important;
}

#ca-talk,
#ca-nstab-main,
#ca-nstab-mediawiki,
#ca-view,
#ca-viewsource,
#ca-edit,
#ca-ve-edit,
#ca-history,
#ca-watch,
#ca-unwatch,
#ca-more,
#mw-page-base {
  border: none !important;
  padding: 0 !important;
  margin: 0 4px !important;
}

// Variáveis LESS que recebem valores das variáveis CSS
@bg-1: var(--bg-1);
@border: var(--border);
@shadow-soft: var(--shadow-soft);
@heading-gradient-start: var(--heading-gradient-start);
@heading-gradient-end: var(--heading-gradient-end);
@text-muted: var(--text-muted);
@text-strong: var(--text-strong);
@primary: var(--primary);

// Estilos
.hero {
  background: @bg-1;
  border: 2px solid @border;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto 16px auto;
  box-shadow: 0 6px 24px @shadow-soft;
}

.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, @heading-gradient-start, @heading-gradient-end);
  background-clip: text;
}

.hero-subtitle {
  color: @text-muted;
  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: @text-strong;
  background: @primary;
  animation: fadeInOut 2s ease-in-out infinite;
}

body.skin-vector-legacy.has-user-menu-collapsible #p-personal,
body.skin-vector-legacy.has-personal-menu-collapsible #p-personal {
	display: none;
}

body.skin-vector-legacy .personal-menu-container {
	position: fixed;
	top: 120px;
	right: 0;
	z-index: 1000;
	overflow: visible;
	display: flex;
	flex-direction: row;
}

body.skin-vector-legacy .personal-menu-header {
	display: flex;
	align-items: center;
	padding: 6px 12px;
	top: 2;
	right: 0;
	position: fixed;
	cursor: pointer;
	user-select: none;
	transition: background 0.3s ease;
	border-radius: 14px 0 0 14px;
	white-space: nowrap;
	font-weight: bold;
	height: auto;
	writing-mode: horizontal-tb;
	border: 1px solid;
	flex-direction: row;
}

body.skin-vector-legacy .personal-menu-header::after {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	font-weight: bold;
	background-image: url( https://mewsie.world/CoraTOWiki/images/9/97/LeftArrow.png );
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	margin-left: 6px;
	transition: transform 0.3s ease;
}

body.skin-vector-legacy .personal-menu-container.expanded .personal-menu-header::after {
	transform: rotate( 180deg );
}

body.skin-vector-legacy .personal-menu-content {
	position: absolute;
	top: 0;
	right: 100%;
	border: 1px solid;
	border-radius: 14px;
	padding: 10px;
	width: 0;
	overflow: hidden;
	opacity: 0;
	transition: width 0.4s ease, opacity 0.3s ease;
	display: flex;
	flex-direction: column;
}

body.skin-vector-legacy .personal-menu-container.expanded .personal-menu-content {
	width: 180px;
	opacity: 1;
}

body.skin-vector-legacy .personal-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

body.skin-vector-legacy .personal-menu-list li {
	margin: 5px 0;
	white-space: nowrap;
	border-bottom: 1px solid;
}

body.skin-vector-legacy .personal-menu-list li:last-child {
	border-bottom: 0;
}

body.skin-vector-legacy .personal-menu-list a {
	display: block;
	text-decoration: none;
	padding: 8px 10px;
	border-radius: 10px;
	border-left: 3px solid;
	transition: background 0.3s ease, padding-left 0.3s ease, color 0.3s ease;
}

body.skin-vector-legacy .personal-menu-list a:hover {
	padding-left: 18px;
}

body.skin-vector-legacy .personal-menu-list #pt-anonuserpage {
	display: block;
	padding: 8px 10px;
	border-radius: 10px;
	border-left: 3px solid;
	background: none;
	color: inherit;
}

body.skin-vector-legacy .personal-menu-list #pt-anonuserpage:hover {
	padding-left: 18px;
}

body.skin-vector-legacy .personal-menu-list a.mw-ui-button {
	background: none;
	border: 0;
	box-shadow: none;
	font-weight: inherit;
	text-shadow: none;
}


#pt-theme-menu {
	position: relative;
}

#pt-theme-menu .themeMenu {
	position: relative;
	display: inline-block;
}

#pt-theme-menu .themeMenu-toggle {
	appearance: none;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 4px;
	color: inherit;
	cursor: pointer;
	font: inherit;
	line-height: 1.2;
	padding: 0.25em 0.55em;
}

#pt-theme-menu .themeMenu-toggle:hover,
#pt-theme-menu .themeMenu.is-open .themeMenu-toggle {
	background: var( --surface );
	border-color: var( --border );
}

#pt-theme-menu .themeMenu-dropdown {
	display: none;
	position: absolute;
	right: 0;
	top: calc( 100% + 0.35em );
	min-width: 180px;
	margin: 0;
	padding: 0.25em 0;
	list-style: none;
	background: var( --surface );
	border: 1px solid var( --border );
	border-radius: 6px;
	box-shadow: 0 6px 18px var( --shadow-medium );
	z-index: 9999;
}

#pt-theme-menu .themeMenu.is-open .themeMenu-dropdown {
	display: block;
}

#pt-theme-menu .themeMenu-itemWrap {
	margin: 0;
	padding: 0;
}

#pt-theme-menu .themeMenu-item {
	display: block;
	padding: 0.45em 0.8em;
	color: var( --text );
	text-decoration: none;
	white-space: nowrap;
}

#pt-theme-menu .themeMenu-item:hover,
#pt-theme-menu .themeMenu-item:focus {
	background: var( --bg-1 );
	color: var( --text-strong );
}

#pt-theme-menu .themeMenu-item.is-current {
	font-weight: 700;
}

#mw-theme-floating {
	position: fixed;
	top: 0.6em;
	right: 0.8em;
	z-index: 10000;
}

#mw-theme-floating .themeMenu {
	position: relative;
	display: inline-block;
}

#mw-theme-floating .themeMenu-toggle {
	appearance: none;
	background: var( --surface );
	border: 1px solid var( --border );
	border-radius: 6px;
	color: var( --text );
	cursor: pointer;
	font: inherit;
	line-height: 1.2;
	padding: 0.35em 0.65em;
	box-shadow: 0 6px 18px var( --shadow-soft );
}

#mw-theme-floating .themeMenu-toggle:hover,
#mw-theme-floating .themeMenu.is-open .themeMenu-toggle {
	background: var( --bg-1 );
}

#mw-theme-floating .themeMenu-dropdown {
	display: none;
	position: absolute;
	right: 0;
	top: calc( 100% + 0.35em );
	min-width: 180px;
	margin: 0;
	padding: 0.25em 0;
	list-style: none;
	background: var( --surface );
	border: 1px solid var( --border );
	border-radius: 6px;
	box-shadow: 0 6px 18px var( --shadow-medium );
	z-index: 10001;
}

#mw-theme-floating .themeMenu.is-open .themeMenu-dropdown {
	display: block;
}

#mw-theme-floating .themeMenu-item {
	display: block;
	padding: 0.45em 0.8em;
	color: var( --text );
	text-decoration: none;
	white-space: nowrap;
}

#mw-theme-floating .themeMenu-item:hover,
#mw-theme-floating .themeMenu-item:focus {
	background: var( --bg-1 );
	color: var( --text-strong );
}

#mw-theme-floating .themeMenu-item.is-current {
	font-weight: 700;
}

/* ========================================
   UserMenu.css
   Menu de usuário lateral (custom)
   ======================================== */

/* ==========================================================================
   Container (posição e layout)
   ========================================================================== */
body.skin-vector-legacy .user-menu-container {
	position: fixed;
	top: 120px;
	right: 0;
	z-index: 1000;
	overflow: visible;
	display: flex;
	flex-direction: row;
}

/* ==========================================================================
   Header (toggle)
   ========================================================================== */
body.skin-vector-legacy .user-menu-header {
	display: flex;
	align-items: center;
	padding: 6px 12px;
	top: 2;
	right: 0;
	position: fixed;
	cursor: pointer;
	user-select: none;
	transition: background 0.3s ease;
	border-radius: 14px 0 0 14px;
	white-space: nowrap;
	font-weight: bold;
	height: auto;
	writing-mode: horizontal-tb;
	border: 1px solid;
	flex-direction: row;
}

body.skin-vector-legacy .user-menu-header::after {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	font-weight: bold;
	background-image: url( https://mewsie.world/CoraTOWiki/images/9/97/LeftArrow.png );
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	margin-left: 6px;
	transition: transform 0.3s ease;
}

body.skin-vector-legacy .user-menu-container.expanded .user-menu-header::after {
	transform: rotate( 180deg );
}

/* ==========================================================================
   Conteúdo (área expansível)
   ========================================================================== */
body.skin-vector-legacy .user-menu-content {
	position: absolute;
	top: 0;
	right: 100%;
	border: 1px solid;
	border-radius: 14px;
	padding: 10px;
	width: 0;
	overflow: hidden;
	opacity: 0;
	transition: width 0.4s ease, opacity 0.3s ease;
	display: flex;
	flex-direction: column;
}

body.skin-vector-legacy .user-menu-container.expanded .user-menu-content {
	width: 180px;
	opacity: 1;
}

/* ==========================================================================
   Lista de links
   ========================================================================== */
body.skin-vector-legacy .user-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

body.skin-vector-legacy .user-menu-list li {
	margin: 5px 0;
	white-space: nowrap;
	border-bottom: 1px solid;
}

body.skin-vector-legacy .user-menu-list li:last-child {
	border-bottom: 0;
}

body.skin-vector-legacy .user-menu-list a {
	display: block;
	text-decoration: none;
	padding: 8px 10px;
	border-radius: 10px;
	border-left: 3px solid;
	transition: background 0.3s ease, padding-left 0.3s ease, color 0.3s ease;
}

body.skin-vector-legacy .user-menu-list a:hover {
	padding-left: 18px;
}