﻿@charset "UTF-8";

li.appearance {
			position: relative;
			margin: 0 auto 10px
	}

    li.appearance label {
			margin: 0 0 5px;
			font-size: 12px;
			color: #fff
	}

    li.appearance fieldset {
			border: none;
			position: relative;
			width: 100%;
			height: 45px
	}

    li.appearance input {
			position: relative;
			display: inline-block;
			width: 50%;
			height: 100%;
			margin: 0;
			padding: 0;
			background: transparent;
			border: none;
			-webkit-appearance: none;
			appearance: none
	}

    li.appearance svg {
			position: absolute;
			top: 0;
			left: 0;
			height: 100%;
			width: 100%;
			overflow: visible;
			stroke-linejoin: round;
			stroke-linecap: round;
			stroke: #fff;
			stroke-width: 2px
	}

    li.appearance svg .frame {
			fill: #0e167d;
			stroke-width: 2.5px
	}

    li.appearance svg .indicator {
			fill: #fff;
			stroke-width: 0;
			transition: transform .2s
	}

    li.appearance svg .celestial {
			stroke-width: 2px;
			fill: transparent
	}

    .theme-device li.appearance svg .indicator {
			transform: translate(-11%)
	}

    .theme-device li.appearance svg .celestial.sun {
			fill: #fff
	}

    .theme-device li.appearance svg .celestial.moon {
			fill: transparent
	}

	@media (prefers-color-scheme: dark) {
            .theme-device li.appearance svg .indicator {
					transform: translate(11%)
			}

            .theme-device li.appearance svg .celestial.sun {
					fill: transparent
			}

            .theme-device li.appearance svg .celestial.moon {
					fill: #fff
			}
	}

    .theme-light li.appearance svg .indicator {
			transform: translate(-11%)
	}

    .theme-light li.appearance svg .celestial.sun {
			fill: #fff
	}

    .theme-dark li.appearance svg .indicator {
			transform: translate(11%)
	}

    .theme-dark li.appearance svg .celestial.moon {
			fill: #fff
	}



.jbg.schemable.theme-dark {
    --accent: #4254F4;
    --alert: #ce4949;
    --shadows: rgb(4, 9, 14, .5);
    --backgroundPrimary: #0a1420;
    --backgroundSecondary: #0d1c2b;
    --inputPrimary: #1f2937;
    --inputSecondary: #353f4d;
    --textPrimary: #f5f7f7;
    --textSecondary: #8c939c;
    --textButton: #f5f7f7;
    color-scheme: dark
}

@media (prefers-color-scheme: dark) {
    .jbg.schemable.theme-device {
        --accent: #4254F4;
        --alert: #ce4949;
        --shadows: rgb(4, 9, 14, .5);
        --backgroundPrimary: #0a1420;
        --backgroundSecondary: #0d1c2b;
        --inputPrimary: #1f2937;
        --inputSecondary: #353f4d;
        --textPrimary: #f5f7f7;
        --textSecondary: #8c939c;
        --textButton: #f5f7f7;
        color-scheme: dark
    }
}

.jbg {
    --accent: #4254F4;
    --alert: #cf2929;
    --shadows: rgba(128, 128, 128, .4);
    --backgroundPrimary: #fff;
    --backgroundSecondary: #e0e0e0;
    --inputPrimary: #e0e0e0;
    --inputSecondary: #e0e0e0;
    --textPrimary: #333333;
    --textSecondary: #505050;
    --textButton: #f5f7f7;
    background: var(--backgroundPrimary);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--textPrimary)
}

a {
    color: var(--accent);
    text-decoration: none
}

.jbg h1 {
    font-size: 2em
}

.jbg button {
    cursor: pointer;
    height: 48px;
    width: calc(100% - 50px);
    margin: 10px 25px 15px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: Helvetica, Arial, sans-serif;
    background-color: var(--accent);
    color: var(--textButton);
    line-height: 1.5;
    text-transform: uppercase;
    box-shadow: 0 5px 0 0 var(--shadows);
    transition: color .5s, background-position .5s, box-shadow .5s
}

.jbg button .loading,
.jbg button.connecting span {
    display: none
}

.jbg button.connecting .loading {
    display: block
}

.jbg button.cancel {
    background-color: #ff0;
    box-shadow: 0 5px 0 0 var(--shadows)
}

.jbg button:disabled {
    background: var(--inputPrimary);
    color: var(--textPrimary);
    box-shadow: 0 0 0 0 var(--shadows)
}

.jbg form {
    margin: 0 auto 5px;
    padding: 70px 15px 0
}

.jbg label {
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    padding: 0 12px;
    color: var(--textPrimary);
    font-size: 17px
}

.jbg input,
.jbg textarea,
.jbg select {
    width: 100%;
    height: 34px;
    margin-bottom: 15px;
    padding: 21px 12px 19px;
    background-color: var(--inputPrimary);
    border: 1px solid var(--inputSecondary);
    border-radius: 12px;
    color: var(--textPrimary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase
}

.jbg input::placeholder,
.jbg textarea::placeholder,
.jbg select::placeholder {
    color: var(--textSecondary)
}

.jbg input:disabled,
.jbg textarea:disabled,
.jbg select:disabled {
    background: var(--inputPrimary);
    color: var(--textSecondary);
    cursor: not-allowed;
    user-select: none
}

.jbg textarea {
    height: auto;
    padding: 12px;
    font-size: 14px
}

.jbg .select {
    position: relative
}

.jbg .select.disabled:after {
    display: none
}

.jbg .select:after {
    content: "\25bc";
    position: absolute;
    top: 11px;
    right: 12px;
    font-size: 12px
}

.jbg select {
    cursor: inherit;
    appearance: none;
    height: auto;
    padding: 11px 12px 9px;
    -webkit-appearance: none
}

.jbg .loading,
.jbg .loading:before,
.jbg .loading:after {
    width: 12px;
    height: 12px;
    border: 2px solid #0E167D;
    border-radius: 50%;
    background: #4254F4;
    animation-fill-mode: both;
    animation: loading-pulse 1.5s infinite ease-in-out
}

.jbg .loading {
    position: relative;
    margin: 18px auto;
    animation-delay: -.25s
}

.jbg .loading:before,
.jbg .loading:after {
    content: "";
    position: absolute;
    top: -2px
}

.jbg .loading:before {
    left: -22px;
    animation-delay: -.5s
}

.jbg .loading:after {
    left: 18px
}

.jbg .disabled.loading,
.jbg .disabled.loading:before,
.jbg .disabled.loading:after {
    border: 2px solid var(--textSecondary);
    background: var(--backgroundSecondary);
    animation-name: loading-pulse-disabled
}

@keyframes loading-pulse {

    0%,
    20%,
    80%,
    to {
        background-color: #0e167d
    }

    50% {
        background-color: #4254f4
    }
}

@keyframes loading-pulse-disabled {

    0%,
    20%,
    80%,
    to {
        background-color: var(--backgroundSecondary)
    }

    50% {
        background-color: var(--textSecondary)
    }
}

.nav ul {
    min-width: 300px;
    max-width: 350px;
    margin: 25px auto;
    list-style: none;
    padding: 0;
}

.nav li {
    cursor: pointer;
    text-align: center;
    opacity: 0;
    animation: nav-fade-in .5s forwards
}

.nav li:nth-child(1) {
    animation-delay: .05s
}

.nav li:nth-child(2) {
    animation-delay: .1s
}

.nav li:nth-child(3) {
    animation-delay: .15s
}

.nav li:nth-child(4) {
    animation-delay: .2s
}

.nav li:nth-child(5) {
    animation-delay: .25s
}

.nav li:nth-child(6) {
    animation-delay: .3s
}

.nav li:nth-child(7) {
    animation-delay: .35s
}

.nav li:nth-child(8) {
    animation-delay: .4s
}

.nav li:nth-child(9) {
    animation-delay: .45s
}

.nav li:nth-child(10) {
    animation-delay: .5s
}

.nav li.version {
    padding: 0
}

.nav li.version a {
    position: relative;
    display: inline;
    width: auto;
    border: none;
    background-color: transparent;
    font-size: 13px;
    font-weight: 400;
    color: #fff
}

.nav a {
    position: relative;
    display: block;
    width: 210px;
    margin: 9px auto;
    padding: 10px 0;
    border-radius: 14px;
    border: 4px solid #c7c7c7;
    background-color: #fff;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    transition: border-color .25s
}

.nav a:active,
.nav a:hover,
.nav a:focus {
    border-color: #fff
}

.nav li.twitch a {
    color: #fff;
    padding-left: 25px;
    border: 5px solid #fff;
    background-color: #64449b;
    background-image: url(ui/twitch.svg);
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: 45px 13px;
    transition: background-color .25s
}

.nav li.twitch a:active {
    background-color: #442a72
}

.nav li.moderator a {
    color: #fff;
    border: 5px solid #fff;
    background-color: #0e167d;
    transition: background-color .25s
}

.nav li.moderator a:active {
    background-color: #3241ce
}

.nav li.social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 7px 10px;
    border: none;
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent
}

.nav li.social a.patreon {
    background-image: url(ui/patreon.svg)
}

.nav li.social a.youtube {
    background-image: url(ui/youtube.svg)
}

.nav li.social a.telegram {
    background-image: url(ui/telegram.svg);
}

.nav li.social a.discord {
    background-image: url(ui/discord.svg);
}

.nav li.social a.monobank {
    background-image: url(ui/monobank.svg);
}

.nav li a .indicator {
    width: 24px;
    height: 24px;
    top: -10px;
    left: auto;
    right: -10px;
    border: 4px solid #3241CE
}

@keyframes nav-fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.jbg h1 {
    font-size: 2em
}

.jbg button {
    cursor: pointer;
    height: 48px;
    width: calc(100% - 50px);
    margin: 10px 25px 15px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: Helvetica, Arial, sans-serif;
    background-color: var(--accent);
    color: var(--textButton);
    line-height: 1.5;
    text-transform: uppercase;
    box-shadow: 0 5px 0 0 var(--shadows);
    transition: color .5s, background-position .5s, box-shadow .5s
}

.jbg button .loading,
.jbg button.connecting span {
    display: none
}

.jbg button.connecting .loading {
    display: block
}

.jbg button.cancel {
    background-color: #ff0;
    box-shadow: 0 5px 0 0 var(--shadows)
}

.jbg button:disabled {
    background: var(--inputPrimary);
    color: var(--textPrimary);
    box-shadow: 0 0 0 0 var(--shadows)
}

.jbg form {
    margin: 0 auto 5px;
    padding: 70px 15px 0
}

.jbg label {
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    padding: 0 12px;
    color: var(--textPrimary);
    font-size: 17px
}

.jbg input,
.jbg textarea,
.jbg select {
    width: 100%;
    height: 34px;
    margin-bottom: 15px;
    padding: 21px 12px 19px;
    background-color: var(--inputPrimary);
    border: 1px solid var(--inputSecondary);
    border-radius: 12px;
    color: var(--textPrimary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase
}

.jbg input::placeholder,
.jbg textarea::placeholder,
.jbg select::placeholder {
    color: var(--textSecondary)
}

.jbg input:disabled,
.jbg textarea:disabled,
.jbg select:disabled {
    background: var(--inputPrimary);
    color: var(--textSecondary);
    cursor: not-allowed;
    user-select: none
}

.jbg textarea {
    height: auto;
    padding: 12px;
    font-size: 14px
}

.jbg .select {
    position: relative
}

.jbg .select.disabled:after {
    display: none
}

.jbg .select:after {
    content: "\25bc";
    position: absolute;
    top: 11px;
    right: 12px;
    font-size: 12px
}

.jbg select {
    cursor: inherit;
    appearance: none;
    height: auto;
    padding: 11px 12px 9px;
    -webkit-appearance: none
}

.jbg .loading,
.jbg .loading:before,
.jbg .loading:after {
    width: 12px;
    height: 12px;
    border: 2px solid #0E167D;
    border-radius: 50%;
    background: #4254F4;
    animation-fill-mode: both;
    animation: loading-pulse 1.5s infinite ease-in-out
}

.jbg .loading {
    position: relative;
    margin: 18px auto;
    animation-delay: -.25s
}

.jbg .loading:before,
.jbg .loading:after {
    content: "";
    position: absolute;
    top: -2px
}

.jbg .loading:before {
    left: -22px;
    animation-delay: -.5s
}

.jbg .loading:after {
    left: 18px
}

.jbg .disabled.loading,
.jbg .disabled.loading:before,
.jbg .disabled.loading:after {
    border: 2px solid var(--textSecondary);
    background: var(--backgroundSecondary);
    animation-name: loading-pulse-disabled
}

@keyframes loading-pulse {

    0%,
    20%,
    80%,
    to {
        background-color: #0e167d
    }

    50% {
        background-color: #4254f4
    }
}

@keyframes loading-pulse-disabled {

    0%,
    20%,
    80%,
    to {
        background-color: var(--backgroundSecondary)
    }

    50% {
        background-color: var(--textSecondary)
    }
}



.header {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    padding: 12px 15px;
    background: #4254F4;
    user-select: none;
    color: #fff;
    z-index: 100
}

.header::after {
    content: "";
    position: fixed;
    top: var(--header-strip-top, 0px);
    right: 0;
    width: var(--app-scrollbar-width, 0px);
    height: var(--header-strip-height, 50px);
    background: #4254F4;
    pointer-events: none;
    z-index: 100;
}

.header .logo {
    width: 100%;
    height: 28px;
    background-image: url(ui/logo-top.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.header .hamburger {
    cursor: pointer;
    position: absolute;
    top: 5px;
    width: 24px;
    height: 20px;
    background-image: url(ui/hamburger.png);
    background-size: 576px 20px;
    background-position: 0 0;
    background-repeat: no-repeat;
    transition: background-position .45s steps(23)
}

.header .hamburger.close {
    background-position: -552px 0
}

.screen-container {
    position: fixed;
    top: var(--menu-top, 50px);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--menu-top, 50px));
    height: calc(100dvh - var(--menu-top, 50px));
    padding: 0 15px;
    background-color: #3241ce;
    overflow-y: auto;
    z-index: 99;
    transition: height .45s
}

.open-transition-enter-active,
.open-transition-leave-active {
    overflow: hidden;
    transition: height .45s
}

.open-transition-enter,
.open-transition-leave-to {
    height: 0px;
    overflow: hidden;
}

.screen-transition-enter-active,
.screen-transition-leave-active {
    transition: opacity .25s
}

.screen-transition-enter,
.screen-transition-leave-to {
    opacity: 0
}

.jbg.schemable.theme-dark {
    --accent: #4254F4;
    --alert: #ce4949;
    --shadows: rgb(4, 9, 14, .5);
    --backgroundPrimary: #0a1420;
    --backgroundSecondary: #0d1c2b;
    --inputPrimary: #1f2937;
    --inputSecondary: #353f4d;
    --textPrimary: #f5f7f7;
    --textSecondary: #8c939c;
    --textButton: #f5f7f7;
    color-scheme: dark
}

@media (prefers-color-scheme: dark) {
    .jbg.schemable.theme-device {
        --accent: #4254F4;
        --alert: #ce4949;
        --shadows: rgb(4, 9, 14, .5);
        --backgroundPrimary: #0a1420;
        --backgroundSecondary: #0d1c2b;
        --inputPrimary: #1f2937;
        --inputSecondary: #353f4d;
        --textPrimary: #f5f7f7;
        --textSecondary: #8c939c;
        --textButton: #f5f7f7;
        color-scheme: dark
    }
}

.jbg {
    --accent: #4254F4;
    --alert: #cf2929;
    --shadows: rgba(128, 128, 128, .4);
    --backgroundPrimary: #fff;
    --backgroundSecondary: #e0e0e0;
    --inputPrimary: #e0e0e0;
    --inputSecondary: #e0e0e0;
    --textPrimary: #333333;
    --textSecondary: #505050;
    --textButton: #f5f7f7;
    background: var(--backgroundPrimary);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--textPrimary)
}

.theme-dark.jbg {
	background-image: url(ui/banner.png);
}
.theme-light.jbg {
	background-image: url(ui/banner-dark.png);
}


.jbg.sign-in {
    height: 100%;
    overflow-y: auto;
    scrollbar-gutter: stable
}

.jbg.sign-in.menu-open {
    overflow: hidden;
    scrollbar-gutter: stable
}

a.bottom-logo {
    cursor: pointer;
    display: block;
    width: 50%;
    height: 50px;
    max-width: 320px;
    margin: 20px auto;
    color: transparent;
    background-image: url(ui/logo-bottom.svg);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100vh;
    overflow: hidden;
    border: 0;
    font-family: Helvetica-Neue, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0
}

#app {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto
}

#app.menu-open {
    overflow: hidden;
}

#app.menu-open-bg {
    background-color: #3241ce;
    background-image: none;
}

.constrain {
    position: relative;
    width: 100%;
    min-height: 100%;
    min-width: 320px;
    max-width: 450px;
    margin: 0 auto
}


.cards {
    display: flex;
    gap: 40px;
    margin-left: 5%;
    margin-right: 5%;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
	border-radius: 20px;
/* 	background: #d8d8d8; */
    background: var(--inputPrimary);
    border: 1px solid var(--shadows);
    position: relative;
    width: 300px;
	display: flex;
	flex-direction: column;
}

.card-img {
	width: 100%;
	border-radius: 20px 20px 0 0;
}

.card-images {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
    width: 300px;
    height: 48px;
}

.card-store img {
    width: 40px;
    padding: 5px;
}

.card-title {
    font-family: Helvetica, sans-serif, Arial;
    font-weight: 700;
    font-size: 24px;
		text-align: center;
		margin: 12px 0;
}

.card-text {
    font-family: Helvetica, sans-serif, Arial;
    font-size: 12px;
    margin: 0 24px;
    padding-top: 10px;
}

.card-btn {
	/*margin: 20px 20px;*/
    margin: 20px 10px 20px 20px;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 2px solid #4254F4;
    border-radius: 5px;
    font-size: 12px;
    font-family: Helvetica, sans-serif, Arial;
    font-weight: 600;
    background-color: #3241ce;
    transition: .3s;
}

.card-btn:hover {
    text-decoration: none;
    color: #3241CE;
    background-color: #fff;
}

.card-btn-mac {
	/*margin: 20px 20px;*/
    margin: 20px 10px 20px -5px;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 2px solid #f58c5f;
    border-radius: 5px;
    font-size: 12px;
    font-family: Helvetica, sans-serif, Arial;
    font-weight: 600;
    background-color: #f47a42;
    transition: .3s;
}

.card-btn-mac:hover {
    text-decoration: none;
    color: #f47a42;
    background-color: #fff;
}

.card-footer {
    color: #999;
/* 	color: #585858; */
    text-align: center;
    padding: 15px 0 6px 0;
    border-top: 1px solid #6c757d;
}

.card-os {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
	/*margin-left: 20px;*/
	margin-bottom: 20px;
    filter: invert(0.5);
}

.card-badge {
	position: absolute;
	right: 5%;
	top: 15px;
	border-radius: 10px;
	padding: 1px 6px;
	font-weight: 700;
    float: right;
    color: #fff;
}

.count-text {
    padding-left: 21px;
    font-style: italic;
    font-size: 9px;
    margin-top: -5px;
}

.blue {
    background-color: #007bff;
}

.green {
    background-color: #28a745;
}

.grey {
    background-color: #6c757d;
}

.card-a {
	text-decoration: none;
}

.footer-div {
    display: flex;
    align-items: center;
	flex-direction: row;
	margin-top: auto;
}

.alert {
	position: absolute;
	top: 35%;
	left: 0;
	right: 0;
	border-radius: 10px;
	margin: 0 auto;
	padding: 20px;
	width: 1000px;
}

.dark {
	background-color: #0a1420;
}

.light {
	background-color: #c7c7c7;
}

.alert-title {
	font-family: Helvetica, sans-serif;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 0px;
}

.alert-text {
	font-size: 12px;
}

.alert-btn {
	padding: 5px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	border: 1px solid #4254F4;
	border-radius: 5px;
	width: 150px;
	font-size: 12px;
	font-family: Helvetica, sans-serif, Arial;
	font-weight: 600;
	background-color: #3241ce;
	transition: .3s;
}

.alert-btn:hover {
	text-decoration: none;
	color: #3241CE;
	background-color: #fff;
}

.blur {
	filter: blur(8px);
	transition: all .5s linear;
	z-index: 10;
    pointer-events: none;
}

.btn {
	display: flex;
	justify-content: center;
	margin: 15px auto;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	width: 200px;
	border: 1px solid #4254F4;
	border-radius: 5px;
	font-size: 12px;
	font-family: Helvetica, sans-serif, Arial;
	font-weight: 600;
	background-color: #3241ce;
	transition: .3s;
}

.btn:hover {
	text-decoration: none;
	color: #3241CE;
	background-color: #fff;
}

.header-logo {
    position: relative;
    left: 31%;
    display: block;
    width: 170px;
    height: 28px;
}

.game-img {
    width: 20px;
}

.banner {
	background: var(--inputPrimary);
    width: 830px;
    height: 50px;
    border-radius: 30px;
    /*margin: 80px auto;*/
	margin-top: 80px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
	color: var(--textPrimary);
	border: 1px solid var(--shadows);
}

.banner-text {
    font-size: 13px;
    line-height: 16px;
    /*color: #fff;*/
    padding-left: 20px;
    text-align: center;
    font-weight: 600;
}

.theme-light.banner-text {
	color: var(--textPrimary);
}

.banner-btn {
    margin-left: 30px;
    width: 150px;
    border-radius: 30px;
    font-size: 12px;
}

@media (max-width: 1050px) {
	.alert {
		width: 600px;
	}

    .banner {
        width: 600px;
    }

    .banner-text {
        font-size: 11px;
    }

    .banner-btn {
        margin-left: 0;
        margin-right: 20px;
        width: 120px;
        font-size: 9px;
    }
}

@media (max-width: 650px) {
	.alert {
		width: 320px;
	}

    .banner {
        width: 300px;
        height: 70px;
    }

    .banner-text {
        font-size: 10px;
    }

    .banner-btn {
        width: 75px;
    }
}

.translator {
	transition: all 300ms ease-in-out;
	display: inline-block;
	color: white;
	background: var(--inputPrimary);
}
.translator__content {
	border-radius: 2px;
	background-image: linear-gradient(
		90deg,
		#231557 0%,
		#44107a 25%,
		#ff1361 60%,
		#231557 100%
	);
	background-size: auto auto;
	background-clip: border-box;
	background-size: 200% auto;
	color: #fff;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 3s linear infinite;
}
.theme-dark .translator__content {
	background-image: linear-gradient(
			90deg,
			#fff800 0%,
			#ffa113 25%,
			#ff1361 60%,
			#fff800 100%
	);
}

.translator:hover {
	transform: scale(1.5);
	transform-origin: bottom;
	box-shadow: 0 0 4px 4px var(--inputPrimary);
}

@keyframes textclip {
	to {
		background-position: -200% center;
	}
}

p > b {
    font-weight: 800;
}

code {
  background-color: #eee;
  border-radius: 3px;
  font-family: courier, monospace;
  padding: 0 3px;
}
.dark code {
  background-color: #555;
  border-radius: 3px;
  font-family: courier, monospace;
  padding: 0 3px;
}


.title {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    font-family: Helvetica, sans-serif, Arial;
    font-size: 28px;
    align-items: center;
}
.title > img {
    width: 70px;
    margin-right: 15px;
}

.faq-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    align-items: start;
    width: 100%;
    max-width: 1520px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    padding-inline: clamp(16px, 3vw, 32px);
    box-sizing: border-box;
}
.faq-column {
    flex: 1 1 380px;
    max-width: 460px;
    min-width: min(320px, 100%);
}

.faq-column-title {
    font-size: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
    align-items: center;
    display: flex;
}

.faq-column-title > img{
    width: 30px;
    margin-right: 10px;
}

.faq-item {
    font-family: Helvetica, sans-serif, Arial;
    font-size: 12px;
    margin-bottom: 10px;
}

img.lang {
    content: url(sections/lang.svg);
}
.theme-dark img.lang {
    content: url(sections/lang-dark.svg);
}
img.settings {
    content: url(sections/settings.svg);
}
.theme-dark img.settings {
    content: url(sections/settings-dark.svg);
}
img.check {
    content: url(sections/check.svg);
}
.theme-dark img.check {
    content: url(sections/check-dark.svg);
}

.faq-question {
    cursor: pointer;
    padding: 10px;
    padding-left: 30px;
    margin: 5px 0 0 0;
    background: var(--inputPrimary);
    border: 1px solid #ccc;
    border-radius: 10px;
    font-weight: bold;
    position: relative;
    font-family: Helvetica, sans-serif, Arial;
    font-weight: 700;
    font-size: 16px;
    transition: border-radius 0.3s ease;
}
.faq-question::before {
    content: ">";
    position: absolute;
    left: 10px;
    transition: transform 0.3s;
}
.faq-question.active {
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #ccc;
}
.faq-answer {
    padding: 0 10px;
    display: block;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 500;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height ease, opacity 0.3s ease, padding ease;
}

.faq-answer a {
    color: #7ba8ff;
    text-decoration: underline;
    text-decoration-color: rgba(123, 168, 255, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.15s;
}

.faq-answer a:hover {
    text-decoration-color: #7ba8ff;
}

.theme-light .faq-answer a {
    color: #3b64c8;
    text-decoration-color: rgba(59, 100, 200, 0.3);
}

.theme-light .faq-answer a:hover {
    text-decoration-color: #3b64c8;
}

.faq-question.active::before {
    content: ">";
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}
.faq-question.active + .faq-answer {
    opacity: 1;
    padding: 10px;
}
.bumper {
    display: inline-block;
    display: table;
    margin-top: 100px;
    margin-bottom: clamp(24px, 5vh, 56px);
    margin-left: auto;
    margin-right: auto;
    font-family: Helvetica, sans-serif, Arial;
    font-size: 20px;
    padding: 10px;
    background: var(--inputPrimary);
    border: 1px solid #ccc;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bumper > a {
    display: flex;
    align-items: center;
    color:#5765EC;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: color 0.25s ease;
}

.bumper > a:visited {
    color:#5765EC;
}

.bumper::before {
    content: "";
    position: absolute;
    inset: -35%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 48%, transparent 66%);
    transform: translateX(-120%) rotate(10deg);
    transition: transform 0.55s ease;
    pointer-events: none;
}

.bumper:hover,
.bumper:focus-within {
    transform: translateY(-3px) scale(1.01);
    border-color: var(--accent);
    box-shadow: 0 12px 26px -16px var(--accent), 0 7px 14px -10px rgba(0, 0, 0, 0.6);
}

.bumper:hover::before,
.bumper:focus-within::before {
    transform: translateX(120%) rotate(10deg);
}

.bumper > a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 8px;
}

.bumper img {
    width: 50px;
    margin-right: 15px;
    transition: transform 0.25s ease, filter 0.25s ease;
}

/* Theme-specific FAQ styles */
.theme-dark .faq-answer {
    background: #2d3f52;
}

.theme-light .faq-answer {
    background: #f0f0f0;
}

code {
    background-color: #eee;
    border-radius: 3px;
    font-family: courier, monospace;
    padding: 0 3px;
}

.theme-dark code {
    background-color: #555;
    border-radius: 3px;
    font-family: courier, monospace;
    padding: 0 3px;
}

/* Mobile styles using media queries */
@media (max-width: 768px) {
    .faq-section {
        justify-content: stretch;
        gap: 20px;
        padding-inline: 16px;
    }

    .faq-column {
        flex-basis: 100%;
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

    .faq-column-title {
        text-align: center;
    }

    .faq-item {
        font-size: 14px;
    }

    .faq-question {
        padding-left: 25px;
        font-size: 18px;
    }

    .faq-answer {
        font-size: 16px;
    }

    .bumper {
        font-size: 18px;
    }

    .title {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }

    .title > img {
        margin-bottom: 10px;
        margin-right: 0;
    }
}


