:root {
    --primary-color-start: #667eea;
    --primary-color-end: #764ba2;
    --background-dark: #0a0a0a;
    --background-card: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top: 100px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    opacity: 0;
    transition: opacity 0.3s ease-in;
}

body.i18n-loaded {
    opacity: 1;
}

body:not(.i18n-loaded) {
    animation: showContent 0.3s ease-in 2s forwards;
}

@keyframes showContent {
    to {
        opacity: 1;
    }
}

main {
    flex-grow: 1;
    padding-top: 80px;
}

.container {
    width: 100%;
    padding: 0 20px;

}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 38px;
    width: 38px;
}
.logo span {
    background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links > li {
    display: flex;
    align-items: center;
}

.nav-links > li > a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-size: 1.1rem;
}

.nav-links > li > a:hover, .nav-links > li > a.active {
    color: var(--primary-color-start);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
    transition: width 0.3s ease;
}

.nav-links > li > a:hover::after, .nav-links > li > a.active::after {
    width: 100%;
}

.lang-switcher-current {
    transition: color 0.3s ease;
}

.lang-switcher::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
    transition: width 0.3s ease;

    pointer-events: none;
}

.lang-switcher:hover {

    & .lang-switcher-current {
        color: var(--primary-color-start);
    }

    &::after {
        width: 100%;
    }
}

.nav-toggle { display: none; }
.overlay { display: none; }

.hero { min-height: calc(100vh - 80px); display: flex; align-items: center; position: relative; padding: 2rem 0; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-text h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end), #f093fb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: fadeInUp 1s ease; }
.hero-text p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; animation: fadeInUp 1s ease 0.2s both; }
.hero-buttons { display: flex; gap: 1rem; animation: fadeInUp 1s ease 0.4s both; }
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.btn-primary { background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end)); color: white; }
.btn-secondary {
    background: rgba(102, 126, 234, 0.8);
    backdrop-filter: blur(5px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3); }
.btn-secondary:hover { background: rgba(102, 126, 234, 1); }

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.6s both;

    transform: translateZ(0);
}

.hero-image img {

    width: 100%;
    height: auto;

    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

section { padding: 2rem 0; }
.section-title { text-align: center; font-size: 3rem; font-weight: 800; margin-bottom: 2rem; background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { text-align: center; font-size: 1.2rem; margin-top: -3rem; margin-bottom: 2rem; opacity: 0.8; max-width: 700px; margin-left: auto; margin-right: auto;}
.section-subtitle a { color: var(--primary-color-start); text-decoration: none; }
.section-subtitle a:hover { text-decoration: underline; }

#screenshots { background: rgba(0,0,0,0.2); }
.screenshots-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.screenshot-card {
    display: flex;
    flex-direction: column;
    background: var(--background-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2); }
.screenshot-card img { width: 100%; display: block; cursor: zoom-in; }
.screenshot-card figcaption {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    opacity: 0.9;

    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features { background: rgba(255, 255, 255, 0.02); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.feature-card { background: var(--background-card); backdrop-filter: blur(20px); border: 1px solid var(--border-color); border-radius: 20px; padding: 2rem; transition: all 0.3s ease; position: relative; overflow: hidden; }
.feature-card:hover { transform: translateY(-10px); border-color: rgba(102, 126, 234, 0.5); box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--primary-color-start), var(--primary-color-end)); transform: scaleX(0); transition: transform 0.3s ease; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #ffffff; }
.feature-card p { opacity: 0.8; line-height: 1.6; }

.stats { padding: 2rem 0; background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1)); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; }
.stat-item { text-align: center; }
.stat-number { font-size: 3rem; font-weight: 900; background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: 0.5rem; }
.stat-label { font-size: 1.1rem; opacity: 0.8; }

.install-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.install-option { background: var(--background-card); border-radius: 15px; padding: 2rem; text-align: center; transition: all 0.3s ease; border: 1px solid var(--border-color); display: flex; flex-direction: column; justify-content: space-between; }
.install-option:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.08); }
.install-icon { font-size: 4rem; margin-bottom: 1rem; display: block; }
.install-option h3 { margin-bottom: 1rem; color: var(--primary-color-start); }

#releases { background: rgba(0,0,0,0.2); }
.install-note { background: var(--background-card); border: 1px solid var(--primary-color-start); border-radius: 15px; padding: 2rem; margin-bottom: 3rem; display: flex; align-items: center; gap: 2rem; }
.install-note .icon { font-size: 3rem; }
.install-note h3 { margin-bottom: 0.5rem; }
.install-note p { opacity: 0.9; }
.install-note .code-block { margin-top: 1rem; margin-bottom: 0; }
.releases-container { display: flex; flex-direction: column; gap: 3rem; }
.release-card { background: var(--background-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 2.5rem; backdrop-filter: blur(10px); }
.release-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.release-version { font-size: 2rem; font-weight: 700; color: var(--primary-color-start); }
.release-version .latest-tag { background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end)); color: white; font-size: 0.8rem; padding: 0.3rem 0.6rem; border-radius: 20px; margin-left: 0.5rem; vertical-align: middle; }
.release-date { opacity: 0.7; }
.release-body { line-height: 1.7; }
.release-body h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; color: #fff; }
.release-body ul { list-style-position: inside; padding-left: 1rem; }
.release-body li { margin-bottom: 0.5rem; }
.release-assets { margin-top: 2rem; }
.release-assets h4 { margin-bottom: 1rem; }
.asset-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.asset-btn { background: rgba(255, 255, 255, 0.1); color: white; padding: 0.75rem 1.5rem; border-radius: 10px; text-decoration: none; transition: all 0.3s ease; }
.asset-btn:hover { background: var(--primary-color-start); transform: translateY(-2px); }

.content-section { background: var(--background-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 3rem; max-width: 900px; margin: 0 auto; }
.content-section h3 { color: var(--primary-color-start); margin-top: 2rem; margin-bottom: 1rem; }
.content-section p, .content-section li { line-height: 1.8; opacity: 0.9; margin-bottom: 1rem; }
.content-section ul { list-style-position: inside; padding-left: 1rem; }

footer { padding: 2rem 0 1rem; background: rgba(0, 0, 0, 0.5); border-top: 1px solid var(--border-color); margin-top: auto; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 1rem; }
.footer-section h4 { margin-bottom: 1rem; color: var(--primary-color-start); }
.footer-section a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; }
.footer-section a:hover { color: var(--primary-color-start); }
.footer-bottom { text-align: center; padding-top: 1rem; border-top: 1px solid var(--border-color); opacity: 0.6; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(180deg); } }
.particle { position: absolute; background: rgba(102, 126, 234, 0.3); border-radius: 50%; pointer-events: none; animation: float 6s ease-in-out infinite; z-index: -1; }

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1001;
        flex-shrink: 0;
    }
    .nav-toggle span {
        width: 100%;
        height: 2px;
        background: white;
        transition: all 0.3s ease-in-out;

        transform-origin: center;
    }

    .nav-toggle.active span:first-child {

        transform: translateY(8.5px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {

        opacity: 0;
    }
    .nav-toggle.active span:last-child {

        transform: translateY(-8.5px) rotate(-45deg);
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 65%;
        max-width: 280px;
        background: #111;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 6rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
        visibility: hidden;
    }
    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    .overlay.active {
        display: block;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .feature-card h3 { font-size: 1.2rem; }
    .feature-card p { font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .hero { padding: 1rem 0; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .screenshots-grid { grid-template-columns: 1fr; }
    section { padding: 1rem 0; }
    .section-title { font-size: 2.5rem; }
    .release-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .install-note { flex-direction: column; text-align: center; }

    .content-section {
        padding: 1.5rem;
    }
    .release-card {
        padding: 1.5rem;
    }
    .install-option {
        padding: 1.5rem;
    }

    .hide-on-mobile {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.copy-btn {
    position: absolute;

    top: 3px;
    right: 7px;

    padding: 4px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
    opacity: 0.3;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.copy-btn svg {
    stroke: #ffffff;
    display: block;

    width: 14px;
    height: 14px;
}

.copy-btn.copied {
    background: rgba(255, 255, 255, 0.1);
}

.code-block::-webkit-scrollbar {
    height: 8px;
}
.code-block::-webkit-scrollbar-track {
    background: transparent;
}
.code-block::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}
.code-block::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.code-block {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.code-block {
    position: relative;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 10px;

    padding: 2.0rem 1rem 1rem;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    text-align: left;
}

.code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 1.8rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#global-tooltip {
    position: fixed;
    padding: 8px 12px;
    background-color: #333;
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 220px;
    text-align: center;
    word-wrap: break-word;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(5px);
}

#global-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#global-tooltip::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
}

#global-tooltip::after {
    top: 100%;
    border-color: #333 transparent transparent transparent;
}

#global-tooltip.show-below::after {
    top: -10px;
    border-color: transparent transparent #333 transparent;
}

.lightbox {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.lightbox.visible {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.lightbox-content.zoomed {
    max-width: none;
    max-height: none;
    cursor: grab;
}

.lightbox-content.panning {
    cursor: grabbing;
    transition: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #bbb;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    transition: background-color 0.2s ease;
    user-select: none;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.lightbox-prev {
    left: 10px;
    border-radius: 0 5px 5px 0;
}

.lightbox-next {
    right: 10px;
    border-radius: 5px 0 0 5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    position: relative;
}

.lang-switcher-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.lang-switcher-current svg {
    transition: transform 0.2s ease;
}

.lang-switcher-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #111;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem;
    min-width: 120px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.lang-switcher.active .lang-switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-switcher-dropdown li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.lang-switcher-dropdown li a:hover {
    color: var(--primary-color-start);
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .nav-right {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .lang-switcher {
        width: 100%;
    }
    .lang-switcher-current {

        background: transparent;
        justify-content: flex-start;
        width: 100%;
        font-size: 1.1rem;
        padding: 5px 0;
        color: #ffffff;
    }
    .lang-switcher-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        margin-top: 0.5rem;
    }
    .lang-switcher:hover .lang-switcher-dropdown {

    }
    .lang-switcher.active .lang-switcher-dropdown {
        display: block;
    }
     .lang-switcher.active .lang-switcher-current svg {
        transform: rotate(180deg);
    }

    .lang-switcher:hover .lang-switcher-current {
        color: var(--primary-color-start);
    }

    .lang-switcher::after {
        display: none;
    }

}

#releases .section-subtitle {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

body.menu-open {
    overflow: hidden;
}

@media (hover: hover) {

  .nav-links > li > a:hover, .nav-links > li > a.active {
    color: var(--primary-color-start);
  }
  .nav-links > li > a:hover::after, .nav-links > li > a.active::after {
    width: 100%;
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  }
  .btn-secondary:hover {
    background: rgba(102, 126, 234, 1);
  }
  .asset-btn:hover {
    background: var(--primary-color-start);
    transform: translateY(-2px);
  }

  .hero-image:hover img {
    transform: scale(1.05);
  }
  .screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
  }
  .feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
  }
  .feature-card:hover::before {
    transform: scaleX(1);
  }
  .install-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
  }
  .footer-section a:hover {
    color: var(--primary-color-start);
  }

  .copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
  }
  .lightbox-close:hover {
    color: #bbb;
  }
  .lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }

}

@media (max-width: 992px) {

    .lang-switcher::after {
        display: none;
    }

    .lang-switcher-current {
        background: transparent !important;
        justify-content: flex-start;
        padding: 5px 0;
        color: #ffffff;
        position: relative;
        transition: color 0.3s ease;
    }

    .lang-switcher-current::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
        transition: width 0.3s ease;
    }

    .lang-switcher:hover .lang-switcher-current {
        color: var(--primary-color-start);
    }
    .lang-switcher:hover .lang-switcher-current::after {
        width: 100%;
    }

}

.lightbox-caption {
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    max-width: 90%;
    width: fit-content;

    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);

    transition: opacity 0.3s ease;
}

