
        /* navbar styles */
        .navbar {
            display: flex;

            width: 100%;

            padding: 16px 20px;

            background: #430000;

            justify-content: space-between;
            align-items: center;

            color: white;

            position: fixed;

            width: 100%;

            top: 0;

            z-index: 1230;

        }

        .navbar .container {
            display: flex;

            justify-content: center;
            align-items: center;

            gap: 34px;

            width: 100%;
            max-width: 1180px;
        }

        .navbar .nav-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 34px;
            flex: 1;
        }

        .navbar .container a {
            display: flex;

            justify-content: center;
            align-items: center;

            font-family: Puritan;
            font-weight: 400;
            font-style: normal;
            font-size: 18.33px;
            line-height: 118%;
            letter-spacing: 1.5%;
            text-align: center;

            color: white;
            text-decoration: none;

            white-space: nowrap;

            text-transform: uppercase;
        }

        .navbar .language-switcher {
            position: relative;
            margin-left: auto;
            flex-shrink: 0;
        }

        .navbar .language-switcher > summary {
            display: flex;
            align-items: center;
            gap: 12px;

            padding: 18px 22px;

            border: 2px solid rgba(255, 255, 255, 0.95);
            border-radius: 18px;
            background: rgba(67, 0, 0, 0.15);

            list-style: none;
            cursor: pointer;

            color: white;
            font-family: Puritan;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            text-transform: uppercase;
        }

        .navbar .language-switcher > summary::-webkit-details-marker {
            display: none;
        }

        .navbar .language-switcher .icon {
            width: 28px;
            height: 28px;
            display: block;
        }

        .navbar .language-switcher .caret {
            width: 14px;
            height: 14px;
            border-right: 3px solid white;
            border-bottom: 3px solid white;
            transform: rotate(45deg);
            margin-left: 4px;
            transition: transform 180ms ease;
        }

        .navbar .language-switcher[open] > summary .caret {
            transform: rotate(-135deg) translateY(-1px);
        }

        .navbar .language-switcher .menu {
            position: absolute;
            right: 0;
            top: calc(100% + 14px);
            width: 270px;
            overflow: hidden;

            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
            background: linear-gradient(180deg, #5b0606 0%, #3c0000 100%);
        }

        .navbar .language-switcher .menu a {
            width: 100%;
            justify-content: center;
            padding: 26px 18px;
            text-transform: none;
            font-size: 21px;
            line-height: 1.1;
            border-top: 1px solid rgba(255, 255, 255, 0.25);
        }

        .navbar .language-switcher .menu a:first-child {
            border-top: 0;
        }

        .navbar .language-switcher .menu a:hover,
        .navbar .language-switcher .menu a:focus-visible {
            background: rgba(255, 255, 255, 0.08);
            outline: none;
        }
