MediaWiki:Common.css: различия между версиями

Страница интерфейса MediaWiki
(! New style (try 2))
(! New style (try 3))
Строка 28: Строка 28:
     background: rgba(35, 35, 42, 0.95);
     background: rgba(35, 35, 42, 0.95);
     border: 1px solid #404050;
     border: 1px solid #404050;
     border-radius: 8px;
     border-radius: 12px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
     -webkit-backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(15px);
     padding: 2em 3em;
     padding: 2.5em 3.5em;
     margin: 1em;
     margin: 1.5em;
     box-sizing: border-box;
     box-sizing: border-box;
    position: relative;
}
.mw-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    border-radius: 12px 12px 0 0;
}
}


Строка 40: Строка 52:
     border: 1px solid #404045;
     border: 1px solid #404045;
     color: #b8e6ff;
     color: #b8e6ff;
     padding: 4px 8px;
     padding: 6px 10px;
     border-radius: 6px;
     border-radius: 8px;
     font-size: 90%;
     font-size: 90%;
     font-family: 'Consolas', 'Monaco', monospace;
     font-family: 'Consolas', 'Monaco', monospace;
     box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
     box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}
}


blockquote {
blockquote {
     overflow: hidden;
     overflow: hidden;
     margin: 1.5em 0;
     margin: 2em 0;
     padding: 1em 1.5em;
     padding: 1.5em 2em;
     border-left: 4px solid #77c1d9;
     border-left: 5px solid #77c1d9;
     background: linear-gradient(90deg, rgba(119, 193, 217, 0.15) 0%, rgba(119, 193, 217, 0.05) 100%);
     background: linear-gradient(90deg, rgba(119, 193, 217, 0.2) 0%, rgba(119, 193, 217, 0.05) 100%);
     border-radius: 0 6px 6px 0;
     border-radius: 0 10px 10px 0;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     font-style: italic;
     font-style: italic;
    position: relative;
}
blockquote::before {
    content: '"';
    font-size: 4em;
    color: rgba(119, 193, 217, 0.3);
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: 'Times New Roman', serif;
}
}


Строка 62: Строка 86:
     max-width: 100%;
     max-width: 100%;
     height: auto;
     height: auto;
     border-radius: 4px;
     border-radius: 6px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}
 
img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
}


Строка 80: Строка 110:
}
}


a::after {
a:not(.image):not([class*="file"]):not([href*=".jpg"]):not([href*=".png"]):not([href*=".gif"]):not([href*=".svg"]):not(.thumbimage)::after {
     content: '';
     content: '';
     position: absolute;
     position: absolute;
     bottom: -2px;
     bottom: -3px;
     left: 0;
     left: 0;
     width: 0;
     width: 0;
     height: 2px;
     height: 2px;
     background: linear-gradient(90deg, #77c1d9, #9dd7ea);
     background: linear-gradient(90deg, #77c1d9, #9dd7ea);
     transition: width 0.3s ease;
     transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}
}


a:hover::after {
a:not(.image):not([class*="file"]):not([href*=".jpg"]):not([href*=".png"]):not([href*=".gif"]):not([href*=".svg"]):not(.thumbimage):hover::after {
     width: 100%;
     width: 100%;
}
}
Строка 98: Строка 129:
a:visited:hover {
a:visited:hover {
     color: #9dd7ea;
     color: #9dd7ea;
     text-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
     text-shadow: 0 0 12px rgba(119, 193, 217, 0.6);
}
 
a.image,
a[class*="file"],
.thumbimage {
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
 
a.image:hover,
a[class*="file"]:hover {
    opacity: 0.9;
    transform: scale(1.02);
}
}


Строка 115: Строка 161:
     border-collapse: separate;
     border-collapse: separate;
     border-spacing: 0;
     border-spacing: 0;
     margin: 1.5em 0;
     margin: 2em 0;
     border-radius: 8px;
     border-radius: 10px;
     overflow: hidden;
     overflow: hidden;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     box-sizing: border-box;
     box-sizing: border-box;
    position: relative;
}
.wikitable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #77c1d9, #9dd7ea, #77c1d9);
}
}


Строка 127: Строка 184:
.wikitable > * > tr > td {
.wikitable > * > tr > td {
     border: 1px solid #404050;
     border: 1px solid #404050;
     padding: 0.8em 1em;
     padding: 1em 1.2em;
     transition: background-color 0.2s ease;
     transition: all 0.3s ease;
}
}


Строка 134: Строка 191:
     background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
     background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
     color: #b8e6ff;
     color: #b8e6ff;
     font-weight: 600;
     font-weight: 700;
     text-transform: uppercase;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     letter-spacing: 1px;
     font-size: 0.9em;
     font-size: 0.85em;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
}
 
.wikitable > * > tr > th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
}
}


.wikitable > * > tr:hover > td {
.wikitable > * > tr:hover > td {
     background: rgba(119, 193, 217, 0.1);
     background: rgba(119, 193, 217, 0.15);
    transform: scale(1.01);
}
}


Строка 150: Строка 219:
     width: 100%;
     width: 100%;
     background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
     background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
     border-radius: 8px;
     border-radius: 10px;
     overflow: hidden;
     overflow: hidden;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
}


Строка 162: Строка 231:
     text-align: center;
     text-align: center;
     padding: 0;
     padding: 0;
     margin: 1.5em auto 0;
     margin: 2em auto 0;
     background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
     background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
     color: white;
     color: white;
     border-radius: 8px;
     border-radius: 10px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
}
 
.navbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    border-radius: 10px 10px 0 0;
}
}


Строка 174: Строка 255:
     background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
     background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
     color: white;
     color: white;
     margin: 0.5em 0 0.5em 1.5em;
     margin: 1em 0 1em 2em;
     padding: 0;
     padding: 0;
     float: right;
     float: right;
Строка 180: Строка 261:
     font-size: 90%;
     font-size: 90%;
     line-height: 1.6em;
     line-height: 1.6em;
     width: 24em;
     width: 26em;
     border-radius: 8px;
     border-radius: 12px;
     overflow: hidden;
     overflow: hidden;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     box-sizing: border-box;
     box-sizing: border-box;
    position: relative;
}
.infobox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #77c1d9, #9dd7ea);
    border-radius: 12px 12px 0 0;
}
}


.infobox tr {
.infobox tr {
     transition: background-color 0.2s ease;
     transition: all 0.3s ease;
}
}


.infobox tr:hover {
.infobox tr:hover {
     background: rgba(119, 193, 217, 0.08);
     background: rgba(119, 193, 217, 0.1);
    transform: translateX(5px);
}
}


Строка 198: Строка 292:
     background: linear-gradient(135deg, #27272e 0%, #2f2f36 100%);
     background: linear-gradient(135deg, #27272e 0%, #2f2f36 100%);
     border: 2px solid #404050;
     border: 2px solid #404050;
     border-radius: 25px;
     border-radius: 30px;
     transition: all 0.3s ease;
     transition: all 0.4s ease;
     box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
     box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
 
#simpleSearch::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #77c1d9, #9dd7ea, #77c1d9);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
 
#simpleSearch:focus-within::before {
    opacity: 1;
}
}


#simpleSearch:focus-within {
#simpleSearch:focus-within {
     border-color: #77c1d9;
     border-color: transparent;
     box-shadow: 0 0 0 3px rgba(119, 193, 217, 0.2);
     box-shadow: 0 0 0 3px rgba(119, 193, 217, 0.3);
}
}


Строка 212: Строка 326:
     background: transparent;
     background: transparent;
     border: none;
     border: none;
     padding: 12px 20px;
     padding: 15px 25px;
     font-size: 14px;
     font-size: 14px;
     outline: none;
     outline: none;
    width: 100%;
    box-sizing: border-box;
}
}


#searchInput::placeholder {
#searchInput::placeholder {
     color: #888;
     color: #999;
     opacity: 0.8;
     opacity: 0.8;
    font-style: italic;
}
}


Строка 228: Строка 345:
.vector-menu-tabs li {
.vector-menu-tabs li {
     background: linear-gradient(135deg, #212126 0%, #27272e 100%);
     background: linear-gradient(135deg, #212126 0%, #27272e 100%);
     border-radius: 8px 8px 0 0;
     border-radius: 12px 12px 0 0;
     margin-right: 2px;
     margin-right: 3px;
     transition: all 0.3s ease;
     transition: all 0.4s ease;
     border: 1px solid #404050;
     border: 1px solid #404050;
     border-bottom: none;
     border-bottom: none;
    position: relative;
    overflow: hidden;
}
.vector-menu-tabs li::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.vector-menu-tabs li:hover::before {
    opacity: 1;
}
}


.vector-menu-tabs li:hover {
.vector-menu-tabs li:hover {
     background: linear-gradient(135deg, #27272e 0%, #2f2f36 100%);
     background: linear-gradient(135deg, #27272e 0%, #2f2f36 100%);
     transform: translateY(-2px);
     transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
}


Строка 243: Строка 379:
     background: linear-gradient(135deg, #35353d 0%, #404050 100%);
     background: linear-gradient(135deg, #35353d 0%, #404050 100%);
     border-color: #77c1d9;
     border-color: #77c1d9;
     box-shadow: 0 -2px 8px rgba(119, 193, 217, 0.3);
     box-shadow: 0 -4px 12px rgba(119, 193, 217, 0.4);
}
 
.vector-menu-tabs .selected::before {
    opacity: 1;
}
}


Строка 249: Строка 389:
.vector-menu-tabs .selected a:visited {
.vector-menu-tabs .selected a:visited {
     color: #b8e6ff;
     color: #b8e6ff;
     font-weight: 600;
     font-weight: 700;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}
}


Строка 256: Строка 396:
#mw-related-navigation .sidebar-chunk,
#mw-related-navigation .sidebar-chunk,
body.skin--responsive .portlet,
body.skin--responsive .portlet,
body.skin--responsive .pBody {
body.skin--responsive .pBody,
#mw-panel,
.mw-panel,
#sidebar,
.sidebar,
.vector-menu-portal,
.vector-legacy-sidebar,
#p-navigation,
#p-tb,
#p-lang {
     background: linear-gradient(135deg, #212126 0%, #27272e 100%);
     background: linear-gradient(135deg, #212126 0%, #27272e 100%);
     color: #e8e8e8;
     color: #e8e8e8;
     border: 1px solid #404050;
     border: 1px solid #404050;
     border-radius: 8px;
     border-radius: 12px;
     margin-bottom: 1em;
     margin-bottom: 1.5em;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
 
.vector-menu-portal h3,
#mw-panel .portal h3,
.sidebar h3 {
    background: linear-gradient(135deg, #35353d 0%, #404050 100%);
    color: #b8e6ff;
    padding: 0.8em 1.2em;
    margin: 0;
    border-radius: 12px 12px 0 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
    position: relative;
}
 
.vector-menu-portal h3::after,
#mw-panel .portal h3::after,
.sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
}
 
.vector-menu-portal .vector-menu-content ul li a,
#mw-panel .portal .body ul li a {
    color: #77c1d9;
    padding: 0.8em 1.2em;
    display: block;
    transition: all 0.4s ease;
    border-radius: 6px;
    margin: 3px 6px;
    position: relative;
}
 
.vector-menu-portal .vector-menu-content ul li a::before,
#mw-panel .portal .body ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, #77c1d9, #9dd7ea);
    transition: width 0.3s ease;
    border-radius: 6px 0 0 6px;
}
 
.vector-menu-portal .vector-menu-content ul li a:hover::before,
#mw-panel .portal .body ul li a:hover::before {
    width: 4px;
}
 
.vector-menu-portal .vector-menu-content ul li a:hover,
#mw-panel .portal .body ul li a:hover {
    background: rgba(119, 193, 217, 0.15);
    color: #9dd7ea;
    transform: translateX(8px);
    text-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}
}


Строка 270: Строка 486:
     border: 2px solid #404050;
     border: 2px solid #404050;
     color: white;
     color: white;
     border-radius: 8px;
     border-radius: 10px;
     font-family: 'Consolas', 'Monaco', monospace;
     font-family: 'Consolas', 'Monaco', monospace;
     padding: 1em;
     padding: 1.5em;
     font-size: 14px;
     font-size: 14px;
     line-height: 1.5;
     line-height: 1.6;
     transition: border-color 0.3s ease;
     transition: all 0.4s ease;
     box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
     box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.3);
     box-sizing: border-box;
     box-sizing: border-box;
    resize: vertical;
}
}


Строка 284: Строка 501:
     border-color: #77c1d9;
     border-color: #77c1d9;
     outline: none;
     outline: none;
     box-shadow: 0 0 0 3px rgba(119, 193, 217, 0.2);
     box-shadow: 0 0 0 4px rgba(119, 193, 217, 0.3);
    transform: scale(1.01);
}
}


Строка 291: Строка 509:
     border: 2px solid #404050;
     border: 2px solid #404050;
     color: white;
     color: white;
     border-radius: 8px;
     border-radius: 10px;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     font-weight: 500;
     font-weight: 600;
     padding: 0.8em 1.5em;
     padding: 1em 2em;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
 
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover::before {
    left: 100%;
}
}


Строка 301: Строка 538:
     background: linear-gradient(135deg, #35353d 0%, #404050 100%);
     background: linear-gradient(135deg, #35353d 0%, #404050 100%);
     border-color: #77c1d9;
     border-color: #77c1d9;
     transform: translateY(-2px);
     transform: translateY(-3px);
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}
}


Строка 315: Строка 553:
     display: block;
     display: block;
     z-index: 99999;
     z-index: 99999;
     width: 320px;
     width: 350px;
     left: -140px;
     left: -150px;
     top: 45px;
     top: 50px;
     padding: 1em;
     padding: 1.5em;
     pointer-events: none;
     pointer-events: none;
     visibility: hidden;
     visibility: hidden;
Строка 324: Строка 562:
     white-space: normal;
     white-space: normal;
     text-align: left;
     text-align: left;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     border: 1px solid #77c1d9;
     border: 2px solid #77c1d9;
     background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
     background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
     border-radius: 12px;
     border-radius: 15px;
     box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
     font-size: 13px;
     font-size: 13px;
     line-height: 1.5;
     line-height: 1.6;
    position: relative;
}
}


.tooltiptext::before {
.tooltiptext::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #77c1d9;
}
.tooltiptext::after {
     content: '';
     content: '';
     position: absolute;
     position: absolute;
Строка 341: Строка 591:
     border-left: 8px solid transparent;
     border-left: 8px solid transparent;
     border-right: 8px solid transparent;
     border-right: 8px solid transparent;
     border-bottom: 8px solid #77c1d9;
     border-bottom: 8px solid #27272e;
}
}


Строка 347: Строка 597:
     visibility: visible;
     visibility: visible;
     opacity: 1;
     opacity: 1;
     transform: translateY(-5px);
     transform: translateY(-10px);
}
}


::-webkit-scrollbar {
::-webkit-scrollbar {
     width: 14px;
     width: 16px;
     height: 14px;
     height: 16px;
}
}


::-webkit-scrollbar-track {
::-webkit-scrollbar-track {
     background: #1f1f25;
     background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
     border-radius: 8px;
     border-radius: 10px;
    border: 1px solid #404050;
}
}


::-webkit-scrollbar-thumb {
::-webkit-scrollbar-thumb {
     background: linear-gradient(135deg, #404050 0%, #505060 100%);
     background: linear-gradient(135deg, #404050 0%, #505060 100%);
     border-radius: 8px;
     border-radius: 10px;
     border: 2px solid #1f1f25;
     border: 2px solid #1f1f25;
     transition: background 0.3s ease;
     transition: all 0.3s ease;
}
}


::-webkit-scrollbar-thumb:hover {
::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(135deg, #505060 0%, #606070 100%);
     background: linear-gradient(135deg, #505060 0%, #606070 100%);
    box-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}
}


Строка 379: Строка 631:
     font-family: 'Oswald', sans-serif;
     font-family: 'Oswald', sans-serif;
     font-weight: 400;
     font-weight: 400;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
     text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
     border-bottom: 2px solid #404050;
     border-bottom: 3px solid #404050;
     padding-bottom: 0.3em;
     padding-bottom: 0.5em;
     margin-top: 1.5em;
     margin-top: 2em;
    position: relative;
}
 
h1, h2, h3, h4, h5, h6::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #77c1d9, #9dd7ea);
    border-radius: 3px;
}
}


Строка 389: Строка 653:
     -webkit-background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     -webkit-text-fill-color: transparent;
    font-size: 2.5em;
}
h2 {
    font-size: 2em;
}
h3 {
    font-size: 1.7em;
}
}


pre {
pre {
     background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
     background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
     border: 1px solid #404050;
     border: 2px solid #404050;
     border-radius: 8px;
     border-radius: 12px;
     padding: 1em;
     padding: 1.5em;
     overflow-x: auto;
     overflow-x: auto;
     box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
     box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.4);
     font-family: 'Consolas', 'Monaco', monospace;
     font-family: 'Consolas', 'Monaco', monospace;
    position: relative;
}
pre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    border-radius: 12px 12px 0 0;
}
}


.mw-highlight {
.mw-highlight {
     background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
     background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    border: 1px solid #404050;
}
#p-logo a {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    display: block;
}
#p-logo a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
#p-personal ul li a {
    color: #77c1d9;
    padding: 0.8em 1em;
     border-radius: 8px;
     border-radius: 8px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 0 2px;
}
 
#p-personal ul li a:hover {
    background: rgba(119, 193, 217, 0.15);
    color: #9dd7ea;
    text-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}
 
.vector-menu-dropdown .vector-menu-content {
    background: linear-gradient(135deg, #27272e 0%, #35353d 100%);
    border: 2px solid #404050;
    border-radius: 12px;
     box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    padding: 0.5em;
}
}


Строка 421: Строка 742:
.references li:target,
.references li:target,
sup.reference:target {
sup.reference:target {
     background: rgba(119, 193, 217, 0.2);
     background: rgba(119, 193, 217, 0.25);
     border-radius: 4px;
     border-radius: 6px;
    box-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}
}


Строка 431: Строка 753:


.vector-legacy-sidebar {
.vector-legacy-sidebar {
     background: rgba(33, 33, 38, 0.8);
     background: rgba(33, 33, 38, 0.85);
     border-radius: 0 8px 8px 0;
     border-radius: 0 12px 12px 0;
     box-shadow: 2px 0 12px rgba(0, 0, 0, 0.3);
     box-shadow: 3px 0 15px rgba(0, 0, 0, 0.4);
}
}


#footer {
#footer {
     background: linear-gradient(135deg, #1a1a1f 0%, #252530 100%);
     background: linear-gradient(135deg, #1a1a1f 0%, #252530 100%);
     border-top: 2px solid #404050;
     border-top: 3px solid #404050;
     border-radius: 8px 8px 0 0;
     border-radius: 12px 12px 0 0;
     margin-top: 2em;
     margin-top: 3em;
     padding: 1.5em;
    padding: 2em;
     color: #b8b8b8;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.4);
    position: relative;
}
 
#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    border-radius: 12px 12px 0 0;
}
 
.mw-search-result-heading a {
    color: #77c1d9;
    font-weight: 600;
}
 
.mw-search-result-data {
     color: #b8b8b8;
     color: #b8b8b8;
     box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
     font-style: italic;
}
 
.mw-changeslist-line {
    border-left: 3px solid #404050;
    padding-left: 1em;
    margin-bottom: 0.5em;
}
 
.mw-changeslist-line:hover {
    border-left-color: #77c1d9;
    background: rgba(119, 193, 217, 0.05);
}
}

Версия от 00:27, 1 августа 2025

@font-face {
  font-family: 'Noto Sans Light';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/notosans/v30/o-0OIpQlx3QUlC5A4PNjhgRCQ_k.woff2) format('woff2'),
       url(https://fonts.gstatic.com/s/notosans/v30/o-0OIpQlx3QUlC5A4PNjhgRCQ_k.woff) format('woff'),
       url(https://fonts.gstatic.com/s/notosans/v30/o-0OIpQlx3QUlC5A4PNjhgRCQ_k.ttf) format('truetype');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/oswald/v40/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUJiZTaR.woff2) format('woff2'),
       url(https://fonts.gstatic.com/s/oswald/v40/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUJiZTaR.woff) format('woff'),
       url(https://fonts.gstatic.com/s/oswald/v40/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUJiZTaR.ttf) format('truetype');
}

body {
    background: linear-gradient(135deg, #1a1a1f 0%, #252530 100%);
    color: #e8e8e8;
    font-family: 'Noto Sans Light', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.mw-body {
    background: rgba(35, 35, 42, 0.95);
    border: 1px solid #404050;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5em 3.5em;
    margin: 1.5em;
    box-sizing: border-box;
    position: relative;
}

.mw-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    border-radius: 12px 12px 0 0;
}

code {
    background: linear-gradient(135deg, #2d2d35 0%, #35353d 100%);
    border: 1px solid #404045;
    color: #b8e6ff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 90%;
    font-family: 'Consolas', 'Monaco', monospace;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

blockquote {
    overflow: hidden;
    margin: 2em 0;
    padding: 1.5em 2em;
    border-left: 5px solid #77c1d9;
    background: linear-gradient(90deg, rgba(119, 193, 217, 0.2) 0%, rgba(119, 193, 217, 0.05) 100%);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 4em;
    color: rgba(119, 193, 217, 0.3);
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: 'Times New Roman', serif;
}

img {
    image-rendering: optimizeSpeed;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

a,
a:visited,
.vector-menu-portal .vector-menu-content li a,
.vector-menu-tabs li a,
body.skin--responsive #p-cactions li a,
.vector-menu-portal .vector-menu-content li a:visited,
.vector-menu-tabs li a:visited,
body.skin--responsive #p-cactions li a:visited {
    color: #77c1d9;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:not(.image):not([class*="file"]):not([href*=".jpg"]):not([href*=".png"]):not([href*=".gif"]):not([href*=".svg"]):not(.thumbimage)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #77c1d9, #9dd7ea);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

a:not(.image):not([class*="file"]):not([href*=".jpg"]):not([href*=".png"]):not([href*=".gif"]):not([href*=".svg"]):not(.thumbimage):hover::after {
    width: 100%;
}

a:hover,
a:visited:hover {
    color: #9dd7ea;
    text-shadow: 0 0 12px rgba(119, 193, 217, 0.6);
}

a.image,
a[class*="file"],
.thumbimage {
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

a.image:hover,
a[class*="file"]:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

a.extiw:visited,
a.external:visited,
.mw-parser-output a.extiw:visited,
.mw-parser-output a.external:visited,
body.skin--responsive #p-cactions li a.external:visited {
    color: #5599cc;
}

.wikitable {
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    border: 1px solid #404050;
    color: white;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2em 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    position: relative;
}

.wikitable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #77c1d9, #9dd7ea, #77c1d9);
}

.wikitable > tr > th,
.wikitable > tr > td,
.wikitable > * > tr > th,
.wikitable > * > tr > td {
    border: 1px solid #404050;
    padding: 1em 1.2em;
    transition: all 0.3s ease;
}

.wikitable > * > tr > th {
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    color: #b8e6ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
}

.wikitable > * > tr > th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
}

.wikitable > * > tr:hover > td {
    background: rgba(119, 193, 217, 0.15);
    transform: scale(1.01);
}

.wikitableKZ {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.navbox {
    border: 1px solid #404050;
    width: 100%;
    clear: both;
    font-size: 90%;
    text-align: center;
    padding: 0;
    margin: 2em auto 0;
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
}

.navbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    border-radius: 10px 10px 0 0;
}

.infobox {
    border: 1px solid #404050;
    border-spacing: 0;
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    color: white;
    margin: 1em 0 1em 2em;
    padding: 0;
    float: right;
    clear: right;
    font-size: 90%;
    line-height: 1.6em;
    width: 26em;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    position: relative;
}

.infobox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #77c1d9, #9dd7ea);
    border-radius: 12px 12px 0 0;
}

.infobox tr {
    transition: all 0.3s ease;
}

.infobox tr:hover {
    background: rgba(119, 193, 217, 0.1);
    transform: translateX(5px);
}

#simpleSearch {
    background: linear-gradient(135deg, #27272e 0%, #2f2f36 100%);
    border: 2px solid #404050;
    border-radius: 30px;
    transition: all 0.4s ease;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

#simpleSearch::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #77c1d9, #9dd7ea, #77c1d9);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

#simpleSearch:focus-within::before {
    opacity: 1;
}

#simpleSearch:focus-within {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(119, 193, 217, 0.3);
}

#searchInput {
    color: white;
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-size: 14px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

#searchInput::placeholder {
    color: #999;
    opacity: 0.8;
    font-style: italic;
}

.vector-menu-tabs {
    background: transparent;
}

.vector-menu-tabs li {
    background: linear-gradient(135deg, #212126 0%, #27272e 100%);
    border-radius: 12px 12px 0 0;
    margin-right: 3px;
    transition: all 0.4s ease;
    border: 1px solid #404050;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.vector-menu-tabs li::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vector-menu-tabs li:hover::before {
    opacity: 1;
}

.vector-menu-tabs li:hover {
    background: linear-gradient(135deg, #27272e 0%, #2f2f36 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.vector-menu-tabs .selected {
    background: linear-gradient(135deg, #35353d 0%, #404050 100%);
    border-color: #77c1d9;
    box-shadow: 0 -4px 12px rgba(119, 193, 217, 0.4);
}

.vector-menu-tabs .selected::before {
    opacity: 1;
}

.vector-menu-tabs .selected a,
.vector-menu-tabs .selected a:visited {
    color: #b8e6ff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

#mw-site-navigation .sidebar-chunk,
#mw-related-navigation .sidebar-chunk,
body.skin--responsive .portlet,
body.skin--responsive .pBody,
#mw-panel,
.mw-panel,
#sidebar,
.sidebar,
.vector-menu-portal,
.vector-legacy-sidebar,
#p-navigation,
#p-tb,
#p-lang {
    background: linear-gradient(135deg, #212126 0%, #27272e 100%);
    color: #e8e8e8;
    border: 1px solid #404050;
    border-radius: 12px;
    margin-bottom: 1.5em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.vector-menu-portal h3,
#mw-panel .portal h3,
.sidebar h3 {
    background: linear-gradient(135deg, #35353d 0%, #404050 100%);
    color: #b8e6ff;
    padding: 0.8em 1.2em;
    margin: 0;
    border-radius: 12px 12px 0 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
    position: relative;
}

.vector-menu-portal h3::after,
#mw-panel .portal h3::after,
.sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
}

.vector-menu-portal .vector-menu-content ul li a,
#mw-panel .portal .body ul li a {
    color: #77c1d9;
    padding: 0.8em 1.2em;
    display: block;
    transition: all 0.4s ease;
    border-radius: 6px;
    margin: 3px 6px;
    position: relative;
}

.vector-menu-portal .vector-menu-content ul li a::before,
#mw-panel .portal .body ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, #77c1d9, #9dd7ea);
    transition: width 0.3s ease;
    border-radius: 6px 0 0 6px;
}

.vector-menu-portal .vector-menu-content ul li a:hover::before,
#mw-panel .portal .body ul li a:hover::before {
    width: 4px;
}

.vector-menu-portal .vector-menu-content ul li a:hover,
#mw-panel .portal .body ul li a:hover {
    background: rgba(119, 193, 217, 0.15);
    color: #9dd7ea;
    transform: translateX(8px);
    text-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}

.mw-editform #wpTextbox1,
textarea {
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    border: 2px solid #404050;
    color: white;
    border-radius: 10px;
    font-family: 'Consolas', 'Monaco', monospace;
    padding: 1.5em;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.4s ease;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    resize: vertical;
}

.mw-editform #wpTextbox1:focus,
textarea:focus {
    border-color: #77c1d9;
    outline: none;
    box-shadow: 0 0 0 4px rgba(119, 193, 217, 0.3);
    transform: scale(1.01);
}

.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button {
    background: linear-gradient(135deg, #27272e 0%, #35353d 100%);
    border: 2px solid #404050;
    color: white;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    padding: 1em 2em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover::before {
    left: 100%;
}

.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover {
    background: linear-gradient(135deg, #35353d 0%, #404050 100%);
    border-color: #77c1d9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}

.tooltip {
    position: relative;
    display: inline;
    cursor: help;
}

.tooltiptext {
    position: absolute;
    display: block;
    z-index: 99999;
    width: 350px;
    left: -150px;
    top: 50px;
    padding: 1.5em;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    white-space: normal;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #77c1d9;
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    font-size: 13px;
    line-height: 1.6;
    position: relative;
}

.tooltiptext::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #77c1d9;
}

.tooltiptext::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #27272e;
}

.tooltip:hover > .tooltiptext {
    visibility: visible;
    opacity: 1;
    transform: translateY(-10px);
}

::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    border-radius: 10px;
    border: 1px solid #404050;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #404050 0%, #505060 100%);
    border-radius: 10px;
    border: 2px solid #1f1f25;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #505060 0%, #606070 100%);
    box-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}

::-webkit-scrollbar-corner {
    background: #1f1f25;
}

h1, h2, h3, h4, h5, h6 {
    color: #b8e6ff;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    border-bottom: 3px solid #404050;
    padding-bottom: 0.5em;
    margin-top: 2em;
    position: relative;
}

h1, h2, h3, h4, h5, h6::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #77c1d9, #9dd7ea);
    border-radius: 3px;
}

h1 {
    background: linear-gradient(90deg, #77c1d9, #9dd7ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.7em;
}

pre {
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    border: 2px solid #404050;
    border-radius: 12px;
    padding: 1.5em;
    overflow-x: auto;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.4);
    font-family: 'Consolas', 'Monaco', monospace;
    position: relative;
}

pre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    border-radius: 12px 12px 0 0;
}

.mw-highlight {
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    border: 1px solid #404050;
}

#p-logo a {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    display: block;
}

#p-logo a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

#p-personal ul li a {
    color: #77c1d9;
    padding: 0.8em 1em;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 2px;
}

#p-personal ul li a:hover {
    background: rgba(119, 193, 217, 0.15);
    color: #9dd7ea;
    text-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}

.vector-menu-dropdown .vector-menu-content {
    background: linear-gradient(135deg, #27272e 0%, #35353d 100%);
    border: 2px solid #404050;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    padding: 0.5em;
}

#pt-createaccount,
#site-tools,
.flaggedrevs_draft_synced,
.flaggedrevs_stable_synced,
#t-upload {
    display: none;
}

.reference {
    background-color: transparent;
}

.references li:target,
sup.reference:target {
    background: rgba(119, 193, 217, 0.25);
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}

.mw-body-content {
    text-align: justify;
    text-justify: inter-word;
}

.vector-legacy-sidebar {
    background: rgba(33, 33, 38, 0.85);
    border-radius: 0 12px 12px 0;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.4);
}

#footer {
    background: linear-gradient(135deg, #1a1a1f 0%, #252530 100%);
    border-top: 3px solid #404050;
    border-radius: 12px 12px 0 0;
    margin-top: 3em;
    padding: 2em;
    color: #b8b8b8;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.4);
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    border-radius: 12px 12px 0 0;
}

.mw-search-result-heading a {
    color: #77c1d9;
    font-weight: 600;
}

.mw-search-result-data {
    color: #b8b8b8;
    font-style: italic;
}

.mw-changeslist-line {
    border-left: 3px solid #404050;
    padding-left: 1em;
    margin-bottom: 0.5em;
}

.mw-changeslist-line:hover {
    border-left-color: #77c1d9;
    background: rgba(119, 193, 217, 0.05);
}