:root {
  --neon-purple: rgba(181, 28, 255, 0.8);
  --neon-blue: rgba(28, 152, 255, 0.8);
  --neon-green: rgba(51, 255, 140, 0.8);
  --dark-bg: #0c0c17;
  --darker-bg: #06060d;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  background: var(--darker-bg);
  background-image: radial-gradient(circle at 50% 50%, rgba(181, 28, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 90% 10%, rgba(28, 152, 255, 0.05) 0%, transparent 40%);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.modal-open { overflow: hidden; }

/* Loader Styles */
.loader-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--darker-bg); z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out; }
.loader-wrapper.loaded { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; position: relative; transform: translateY(30px); opacity: 0; animation: floatIn 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards 0.3s; }
.loader-subtitle { font-size: 2rem; font-weight: 300; color: rgba(51, 255, 140, 0.8); margin-top: 0; margin-bottom: 0.25rem; text-shadow: 0 0 3px rgba(51, 255, 140, 0.3); font-family: 'Orbitron', sans-serif; opacity: 0; animation: fadeIn 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards 0.5s; }
.loader-name { font-family: 'Orbitron', sans-serif; font-size: 3.5rem; font-weight: 700; margin: 0; background-image: linear-gradient(-45deg, rgba(181, 28, 255, 0.9) 0%, rgba(255, 25, 240, 0.9) 25%, rgba(28, 152, 255, 0.9) 50%, rgba(0, 251, 255, 0.9) 75%, rgba(181, 28, 255, 0.9) 100%); background-size: 400%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shine 5s linear infinite, fadeIn 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards 0.2s; text-shadow: 0 0 3px rgba(181, 28, 255, 0.3); }
.loader-progress { width: 300px; height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 4px; margin: 1.5rem auto 0; overflow: hidden; position: relative; }
.progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue)); position: absolute; animation: fillProgress 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.5s; box-shadow: 0 0 10px rgba(28, 152, 255, 0.5); }
.loader-status { font-size: 0.9rem; margin-top: 0.5rem; color: rgba(255, 255, 255, 0.7); opacity: 0; animation: fadeIn 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards 0.8s; }

/* Background Stars */
.stars { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; opacity: 0; transition: opacity 1.2s ease-in-out; }
.stars.visible { opacity: 1; }
.star { position: absolute; width: 2px; height: 2px; background: white; border-radius: 50%; animation: twinkle var(--duration) infinite; opacity: 0; }

/* Keyframes */
@keyframes floatIn { 0% { transform: translateY(30px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes fillProgress { 0% { width: 0; } 100% { width: 100%; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes twinkle { 0% { opacity: 0; } 50% { opacity: var(--opacity); } 100% { opacity: 0; } }
@keyframes shine { 0% { background-position: 0% 50%; } 100% { background-position: 400% 50%; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes buttonPulse { 0% { box-shadow: 0 0 15px rgba(181, 28, 255, 0.5), 0 0 30px rgba(28, 152, 255, 0.3); } 50% { box-shadow: 0 0 20px rgba(181, 28, 255, 0.7), 0 0 40px rgba(28, 152, 255, 0.5); } 100% { box-shadow: 0 0 15px rgba(181, 28, 255, 0.5), 0 0 30px rgba(28, 152, 255, 0.3); } }
@keyframes liveButtonShine { 0%, 15% { left: -100%; opacity: 0.3; } 25% { opacity: 0.5; } 40%, 100% { left: 100%; opacity: 0.3; } }

/* General Layout */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 1rem; display: flex; flex-direction: column; }
header { text-align: center; margin-bottom: 0.7rem; padding-top: 0.7rem; opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000), transform 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000); }
header.loaded { opacity: 1; transform: translateY(0); }
.shiny-name { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 700; margin: 0; cursor: pointer; background-image: linear-gradient(-45deg, rgba(181, 28, 255, 0.9) 0%, rgba(255, 25, 240, 0.9) 25%, rgba(28, 152, 255, 0.9) 50%, rgba(0, 251, 255, 0.9) 75%, rgba(181, 28, 255, 0.9) 100%); background-size: 400%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shine 5s linear infinite; text-shadow: 0 0 3px rgba(181, 28, 255, 0.3); transition: transform 0.3s; }
.shiny-name:hover { transform: scale(1.05); text-shadow: 0 0 8px rgba(181, 28, 255, 0.6), 0 0 16px rgba(28, 152, 255, 0.4); }
.language-switcher { position: absolute; top: 1rem; right: 1rem; z-index: 999; }
.lang-link { display: inline-block; color: white; text-decoration: none; font-family: 'Orbitron', sans-serif; font-size: 0.9rem; padding: 0.3rem 0.8rem; border: 1px solid var(--neon-green); border-radius: 20px; transition: all 0.3s; }
.lang-link:hover { background: rgba(51, 255, 140, 0.2); }

/* Buttons */
.button-container { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 1rem; margin-top: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap;}
.gallery-page .button-container { opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0.4s, transform 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0.4s; }
.button-container.loaded { opacity: 1; transform: translateY(0); }
.btn { display: inline-block; padding: 1rem 1.5rem; color: white; text-decoration: none; text-align: center; font-family: 'Orbitron', sans-serif; font-weight: bold; border-radius: 30px; text-transform: uppercase; letter-spacing: 0.5px; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.gallery-page .btn { width: 280px; font-size: 1rem; }
.btn: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: all 0.8s ease; }
.btn:hover:before { left: 100%; }
.portfolio-btn, .contact-btn { background: linear-gradient(45deg, rgba(181, 28, 255, 0.9), rgba(28, 152, 255, 0.9)); box-shadow: 0 0 10px rgba(181, 28, 255, 0.3); }
.portfolio-btn:hover, .contact-btn:hover { box-shadow: 0 0 15px rgba(181, 28, 255, 0.5); transform: scale(1.05); }
.external-btn, .back-btn { background: linear-gradient(45deg, rgba(51, 255, 140, 0.9), rgba(28, 152, 255, 0.9)); box-shadow: 0 0 10px rgba(51, 255, 140, 0.3); }
.external-btn:hover, .back-btn:hover { box-shadow: 0 0 15px rgba(51, 255, 140, 0.5); transform: scale(1.05); }

/* Gallery Specific */
.gallery-page .gallery-content { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; display: flex; flex-direction: column; }
.gallery-page .gallery-content.loaded { opacity: 1; transform: translateY(0); }
.category-nav { display: flex; justify-content: center; margin: 0.7rem 0; flex-wrap: wrap; gap: 0.6rem; opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0.3s, transform 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0.3s; }
.category-nav.loaded { opacity: 1; transform: translateY(0); }
.category-btn { background: rgba(181, 28, 255, 0.2); border: 1px solid var(--neon-purple); color: white; padding: 0.45rem 1.1rem; border-radius: 25px; cursor: pointer; font-family: 'Orbitron', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; position: relative; overflow: hidden; }
.category-btn:hover { background: rgba(181, 28, 255, 0.4); box-shadow: 0 0 10px rgba(181, 28, 255, 0.4); }
.category-btn.active { background: rgba(51, 255, 140, 0.4); border-color: var(--neon-green); box-shadow: 0 0 10px rgba(51, 255, 140, 0.4); }
.category-btn[data-category="live"]::after, .category-btn[data-category="video"]::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); animation: liveButtonShine 3s ease-in-out infinite; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 1rem; width: 100%; margin-bottom: 1.5rem; }
.gallery-item, .video-placeholder { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); transition: transform 0.3s, box-shadow 0.3s; aspect-ratio: 3/4; cursor: pointer; }
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 2px var(--neon-purple), 0 0 15px var(--neon-blue); }
.gallery-image { width: 100%; height: 100%; object-fit: cover; object-position: center; background-color: rgba(0, 0, 0, 0.5); transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; }
.gallery-item:hover .gallery-image { opacity: 0.9; }
.video-placeholder:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 2px var(--neon-green), 0 0 15px var(--neon-green); }
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: center; background-color: rgba(0, 0, 0, 0.5); }
.play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background-color: rgba(51, 255, 140, 0.7); border-radius: 50%; display: flex; justify-content: center; align-items: center; z-index: 2; box-shadow: 0 0 20px rgba(51, 255, 140, 0.5); transition: background-color 0.3s, transform 0.3s; }
.play-button:before { content: ''; width: 0; height: 0; border-top: 15px solid transparent; border-bottom: 15px solid transparent; border-left: 22px solid white; margin-left: 5px; }
.video-placeholder:hover .play-button { background-color: rgba(51, 255, 140, 0.9); transform: translate(-50%, -50%) scale(1.1); }
.category-content { display: none; }
.category-content.active { display: block; }
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); z-index: 1000; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s; }
.modal.active { display: flex; opacity: 1; }
.modal-content { display: flex; flex-direction: column; align-items: center; max-height: 95vh; max-width: 95vw; position: relative; justify-content: center; }
.image-container { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; height: auto; }
.modal-image { max-width: 100%; max-height: 80vh; border: 2px solid var(--neon-purple); box-shadow: 0 0 20px rgba(181, 28, 255, 0.5); border-radius: 4px; object-fit: contain; }
.modal-video { width: 100%; aspect-ratio: 16/9; max-height: 80vh; background-color: #000; border: 2px solid var(--neon-green); box-shadow: 0 0 20px rgba(51, 255, 140, 0.5); }
.close-btn { display: block; background: linear-gradient(45deg, rgba(181, 28, 255, 0.9), rgba(28, 152, 255, 0.9)); color: white; border: none; font-family: 'Orbitron', sans-serif; font-weight: bold; font-size: 1rem; padding: 10px 25px; border-radius: 25px; cursor: pointer; text-transform: uppercase; letter-spacing: 1.5px; position: static; overflow: hidden; box-shadow: 0 0 15px rgba(181, 28, 255, 0.5), 0 0 30px rgba(28, 152, 255, 0.3); transition: all 0.3s; z-index: 1010; margin: 15px auto 0; width: 150px; animation: buttonPulse 2s infinite; }
.close-btn:hover { box-shadow: 0 0 20px rgba(181, 28, 255, 0.7), 0 0 40px rgba(28, 152, 255, 0.5); transform: scale(1.05); }
.close-btn:before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); transition: all 0.6s; }
.close-btn:hover:before { left: 100%; }
.modal-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 10px; z-index: 1011; pointer-events: none; }
.nav-btn { width: 50px; height: 50px; background-color: rgba(181, 28, 255, 0.3); border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; pointer-events: auto; transition: background-color 0.3s; margin: 0 5px; }
.nav-btn:hover { background-color: rgba(181, 28, 255, 0.7); }
.prev-btn { position: absolute; left: 10px; }
.next-btn { position: absolute; right: 10px; }
.prev-btn:before { content: ''; width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-right: 15px solid white; }
.next-btn:before { content: ''; width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 15px solid white; }
.modal-caption { color: white; text-align: center; margin-top: 15px; font-family: 'Orbitron', sans-serif; text-shadow: 0 0 5px rgba(181, 28, 255, 0.5); font-size: 1rem; width: 100%; }

/* Portfolio Specific */
.portfolio-page .container {
  max-width: 1100px;
  min-height: 100vh;
  overflow: visible;
}
.portfolio-page header { animation: fadeInDown 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards; }
.portfolio-page .subtitle {
  font-size: 2rem;
  font-weight: 300;
  color: rgba(51, 255, 140, 0.8);
  margin-top: 0;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 3px rgba(51, 255, 140, 0.3);
  font-family: 'Orbitron', sans-serif;
}
.portfolio-page .shiny-name { font-size: 3.5rem; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.intro { max-width: 700px; margin: 0 auto 1.5rem; text-align: center; font-size: 1.1rem; color: #bbb; animation: fadeIn 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards 0.2s; }
.intro-text { margin: 0; display: inline-block; line-height: 1.7; }
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; overflow: visible; }
.card, .contact-card { background: rgba(12, 12, 23, 0.8); border-radius: 12px; padding: 1rem; animation: fadeInUp 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards; opacity: 0; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.card { border: 1px solid rgba(181, 28, 255, 0.2); box-shadow: 0 0 10px rgba(181, 28, 255, 0.15), inset 0 0 10px rgba(28, 152, 255, 0.03); }
.contact-card { border: 1px solid rgba(51, 255, 140, 0.2); box-shadow: 0 0 10px rgba(51, 255, 140, 0.15), inset 0 0 10px rgba(51, 255, 140, 0.03); display: flex; flex-direction: column; }
.card:hover, .contact-card:hover { transform: translateY(-8px) scale(1.03); }
.card:hover { box-shadow: 0 10px 20px rgba(181, 28, 255, 0.25), inset 0 0 15px rgba(28, 152, 255, 0.08), 0 0 0 1px rgba(181, 28, 255, 0.4); }
.contact-card:hover { box-shadow: 0 10px 20px rgba(51, 255, 140, 0.25), inset 0 0 15px rgba(51, 255, 140, 0.08), 0 0 0 1px rgba(51, 255, 140, 0.4); }
.card h2, .contact-card h2 { font-family: 'Orbitron', sans-serif; margin-top: 0; margin-bottom: 0.5rem; padding-bottom: 0.25rem; font-size: 1.4rem; letter-spacing: 0.5px; }
.card h2 { color: rgba(181, 28, 255, 0.9); border-bottom: 1px solid rgba(181, 28, 255, 0.2); text-shadow: 0 0 5px rgba(181, 28, 255, 0.3); }
.contact-card h2 { color: rgba(51, 255, 140, 0.9); border-bottom: 1px solid rgba(51, 255, 140, 0.2); text-shadow: 0 0 5px rgba(51, 255, 140, 0.3); }
.card ul { padding-left: 1.2rem; margin: 0.5rem 0; list-style-type: square; color: rgba(28, 152, 255, 0.8); }
.card li { margin-bottom: 0.3rem; color: #fff; }
.contact-card p { margin: 0.25rem 0; }
.contact-info { margin: 0.5rem 0 1.5rem 0; }
.contact-item { display: flex; align-items: center; margin-bottom: 0.3rem; }
.contact-icon { margin-right: 0.5rem; color: rgba(51, 255, 140, 0.9); width: 18px; display: inline-flex; justify-content: center; }
.telegram-icon { width: 18px; height: 18px; margin-right: 0.5rem; fill: currentColor; }
.protected-email, .protected-telegram { position: relative; cursor: pointer; color: #fff; text-decoration: none; transition: all 0.3s; }
.protected-email:hover, .protected-telegram:hover { color: rgba(51, 255, 140, 0.9); text-shadow: 0 0 3px rgba(51, 255, 140, 0.3); }
.email-tooltip, .telegram-tooltip { position: absolute; background: rgba(12, 12, 23, 0.95); border: 1px solid var(--neon-green); border-radius: 4px; padding: 8px 12px; font-size: 0.85rem; bottom: 25px; left: 50%; transform: translateX(-50%); white-space: nowrap; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; box-shadow: 0 0 10px rgba(51, 255, 140, 0.3); pointer-events: none; z-index: 100; }
.protected-email:hover .email-tooltip, .protected-telegram:hover .telegram-tooltip { opacity: 1; visibility: visible; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.tech-tag { background: rgba(28, 152, 255, 0.15); color: rgba(28, 152, 255, 0.9); padding: 0.2rem 0.5rem; border-radius: 20px; font-size: 0.8rem; border: 1px solid rgba(28, 152, 255, 0.2); }
.portfolio-page .button-container { gap: 1.5rem; margin-top: 0 !important; margin-bottom: 0.7rem !important; position: relative !important; top: -15px !important; }
.portfolio-page .btn { width: 320px; font-size: 0.95rem; animation: fadeInUp 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards; opacity: 0; }
.main-content { display: flex; flex-direction: column; flex: 1; justify-content: space-between; }
#card1 { animation-delay: 0.3s; } #card2 { animation-delay: 0.4s; } #card3 { animation-delay: 0.5s; } #card4 { animation-delay: 0.6s; }
.portfolio-page #buttonContainer { animation-delay: 0.7s; }

/* Responsive Media Queries */
@media (max-width: 768px) {
  .shiny-name { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .category-btn { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
  .gallery-page .btn { width: 220px; padding: 0.7rem 1.1rem; font-size: 0.85rem; }
  .modal-content { width: 95%; }
  .nav-btn { width: 40px; height: 40px; }
  .portfolio-page .subtitle { font-size: 1.5rem; }
  .portfolio-page .shiny-name { font-size: 2.5rem; }
  .content-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .card, .contact-card { padding: 0.8rem; min-height: 140px; }
  .card h2, .contact-card h2 { font-size: 1.2rem; }
  .intro { font-size: 0.9rem; margin-bottom: 1rem; }
  .card ul { padding-left: 1rem; }
  .tech-tags { gap: 0.3rem; }
  .tech-tag { font-size: 0.7rem; padding: 0.15rem 0.4rem; }
  .portfolio-page .button-container {
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    position: static !important;
    margin-top: 1.5rem !important; /* Changed from 1rem to 1.5rem and made important */
  }
  .portfolio-page .btn { width: 320px; padding: 0.8rem 1.4rem; font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .container { padding: 0.5rem; }
  .shiny-name { font-size: 2rem; }
  .category-nav { gap: 0.5rem; }
  .category-btn { font-size: 0.75rem; }
  .gallery-page .button-container { flex-direction: column; gap: 0.8rem; }
  .gallery-page .btn { width: 100%; max-width: 280px; }
  .nav-btn { width: 35px; height: 35px; }
  .portfolio-page .container { padding: 0.7rem; }
  .portfolio-page header { padding-top: 2rem !important; }
  .portfolio-page .subtitle { font-size: 1.2rem; }
  .portfolio-page .shiny-name { font-size: 2rem; }
  .intro { font-size: 0.8rem; margin-bottom: 0.7rem; max-width: 95%; }
  .intro-text { width: 100% !important; display: block !important; }
  .content-grid { gap: 0.5rem; }
  .card, .contact-card { padding: 0.7rem; min-height: 135px; }
  .card h2, .contact-card h2 { font-size: 1rem; margin-bottom: 0.3rem; }
  .card li { font-size: 0.85rem; margin-bottom: 0.2rem; }
  .contact-card p { font-size: 0.85rem; }
  .portfolio-page .btn { animation-delay: 0s; }
  .star:nth-child(even) { display: none; }
  .contact-info { margin: 0.4rem 0 1rem 0; }
  .contact-item { margin-bottom: 0.2rem; }
  .language-switcher { top: 0.5rem !important; right: 0.5rem !important; }
  .lang-link { font-size: 0.8rem !important; padding: 0.3rem 0.8rem !important; }
}


