/* scrollbar */
::-webkit-scrollbar {
	width: max(0.375rem, 0.375rem);
	height: max(0.125rem, 0.125rem);
	background-color: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar-thumb {
	background-color: #253e6b;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #355e9b;
}

/* prld */
.prld {
	background-color: rgba(23, 23, 23, 1);
	min-width: 20rem;
	position: fixed;
	z-index: 500;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	visibility: visible;
	transition: all 0.5s cubic-bezier(0.64, 0.14, 0.34, 1.32);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 0 0.625rem;
}

.prld__logo {
	max-width: 100%;
	width: auto;
	height: auto;
	display: block;
}

.prld_fade {
	opacity: 0;
	visibility: hidden;
	transform: scale(1.4);
}

@-webkit-keyframes preanimateout {
	0% {
		transform: translate(-50%, -50%) scale(1);
	}

	100% {
		transform: translate(-50%, -50%) scale(0);
	}
}

@keyframes preanimateout {
	0% {
		transform: translate(-50%, -50%) scale(1);
	}

	100% {
		transform: translate(-50%, -50%) scale(0);
	}
}

.prld__progress {
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	width: 0;
	height: 0.3125rem;
	background: rgb(200, 129, 107);
}

.prld__items {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 0.9375rem;
	gap: 0.9375rem;
	margin-top: 0.9375rem;
}

.prld__item {
	width: 0.5rem;
	height: 0.5rem;
	background: #d0e4ff;
	border-radius: 50%;
}

/* ww */
.ww {
	max-width: 42.5rem;
	width: 100%;
	/* box-shadow: none; */
	box-sizing: border-box;
	background-color: transparent;
	padding: 0;
	box-shadow: 0px 0.9375rem 1.875rem rgba(255, 0, 0, 0.1);
}

.ww__inner {
	background: transparent;
	border: 0;
	width: 100%;
	box-shadow: none;
	padding: 0;
	box-sizing: border-box;
}

.ww__body {
	background-color: #1a1f2d;
	background-size: auto;
	background-position: center center;
	background-repeat: repeat;
	box-sizing: border-box;
	padding: 1.375rem 0.625rem;
	position: relative;
	z-index: 0;
	overflow: hidden;
	/* box-shadow: 0px 0.375rem 1.5rem rgba(0, 0, 0, 0.1); */
	border: 2px solid #e3da9a;
	border-radius: 5px;
}

.ww__close {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
	cursor: pointer;
	transition: 0.3s all;
	background-size: contain;
	border-radius: 50%;
	z-index: 20;
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
}

.ww__close:before,
.ww__close:after {
	display: block;
	content: "";
	background: #e3da9a;
	position: absolute;
	top: calc(50% - 0.0625rem);
	left: 0;
	right: 0;
	height: 0.125rem;
	border-radius: 0.125rem;
	transition: 0.3s all;
}

.ww__close:before {
	transform: rotate(-45deg);
}

.ww__close:after {
	transform: rotate(45deg);
}

.ww__close:hover:before,
.ww__close:hover:after {
	filter: brightness(120%);
	transform: rotate(0);
}

.ww__head {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-gap: 0.875rem;
	gap: 0.875rem;
	text-align: center;
	color: var(--accent-color);
	font-weight: 700;
	margin: 0 auto;
	padding: 1.375rem 0;
	margin-top: -1.375rem;
	position: relative;
	z-index: 0;
	text-transform: uppercase;
	font-family: var(--font-secondary);
}

.ww__title {
	font-size: 1.125rem;
}

.ww__content {
	text-wrap: pretty;
}

@media (min-width: 460px) {
	.ww__body {
		padding: 1.375rem 1.5rem;
	}
}

@media (min-width: 1200px) {
	.ww__title {
		font-size: 1.5rem;
	}
}

/* fancybox */
.fancybox-container {
	z-index: 666 !important;
}

.fancybox-content {
	padding: 0;
	background: transparent;
}

.fancybox-bg {
	background: rgb(0, 0, 0);
}

.fancybox-is-open .fancybox-bg {
	opacity: 0.5;
}

.gw-modal-close {
	display: none;
}

/* Custom animation */
.fancybox-is-open .ww_animated {
	-webkit-animation: modalIn 0.5s ease;
	animation: modalIn 0.5s ease;
}

.fancybox-is-closing .ww_animated {
	-webkit-animation: modalout 0.5s ease;
	animation: modalout 0.5s ease;
}

@-webkit-keyframes modalIn {
	0% {
		opacity: 0;
		transform: translateY(-10vh);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes modalIn {
	0% {
		opacity: 0;
		transform: translateY(-10vh);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes modalout {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(10vh);
	}
}

@keyframes modalout {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(10vh);
	}
}

/* ttl */

.ttl {
	color: var(--accent-color);
	font-size: clamp(2.25rem, 3.4722222222vw, 3.125rem);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 0;
	text-align: center;
	text-transform: uppercase;
	/* font-family: var(--font-secondary); */
	text-shadow: 0 2px 4px #0000006e;
	margin: 0;
	background-color: #0000004d;
	border-radius: 15px;
	padding: 0 20px;
}

.ttl_mb {
	margin-bottom: 40px;
}

/* heading */

.heading {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.heading_mb {
	margin-bottom: 40px;
}
section#download.download-section {
    container-type: inline-size;
    container-name: dlx-download;
}
.dlx-download-card {
    background: linear-gradient(180deg, #2a2d3a 0%, #232633 100%);
    border: 1px solid rgba(117, 146, 196, 0.28);
    border-radius: 10px;
    padding: 16px 26px 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #dbe5ff;
    max-width: 980px;
    margin: 0 auto;
}
.dlx-header { text-align: center; margin-bottom: 12px; }
.dlx-title {
    margin: 0;
    color: #f3f6ff;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.02em;
}
.dlx-subtitle {
    margin: 4px 0 0;
    color: #b8c4e2;
    font-size: 18px;
    font-weight: 600;
}
.dlx-primary-wrap {
    margin: 16px 0 12px;
    display: flex;
    justify-content: center;
}
.steps__btns.dlx-primary-wrap .dlx-btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    min-width: 0;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 8px;
    color: #111319;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 24px 30px;
    background: linear-gradient(180deg, #ffe08a 0%, #ffc94a 50%, #e0a52f 100%);
    border: 1px solid #d9a11c;
    box-shadow:
        0 0 25px rgba(255, 200, 80, 0.4),
        0 0 60px rgba(255, 200, 80, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}
.dlx-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0 20px;
    color: #ffe9d7;
    font-size: 15px;
    font-weight: 700;
}
.dlx-feature { display: flex; align-items: center; gap: 8px; justify-content: center; white-space: nowrap; letter-spacing: 0.01em; }
.dlx-feature .dlx-icon {
    color: #f4ca63;
}
.dlx-step1-line {
    display: block;
}
.dlx-step1-line + .dlx-step1-line {
    margin-top: 6px;
}
.dlx-cards {
    display: grid;
    grid-template-columns: 1fr 54px 1fr 54px 1fr;
    border: 1px solid rgba(117, 146, 196, 0.24);
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(24, 28, 42, 0.9);
    align-items: stretch;
}
.dlx-step {
    padding: 18px 16px;
    min-height: 136px;
    background: rgba(28, 32, 46, 0.94);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.dlx-step-icon-main {
    margin: 0;
    color: #c3cee6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    line-height: 1;
}
.dlx-step-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.08;
    color: #ecf2ff;
    font-weight: 800;
    min-height: 0;
    display: block;
    text-align: center;
}
.dlx-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 32, 46, 0.94);
}
.dlx-alt-title {
    margin: 2px 0 12px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
    color: #d6ddf1;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
}
.dlx-alt-title::before, .dlx-alt-title::after {
    content: "";
    height: 1px;
    background: rgba(124, 149, 195, 0.35);
}
.dlx-alt-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 8px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.dlx-alt-btn, .dlx-launcher-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid #6f521a;
    color: #9f8138;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(48, 51, 67, 0.95) 0%, rgba(39, 42, 56, 0.95) 100%);
}
.dlx-launcher-btn {
    width: auto;
    min-width: 350px;
    padding: 0 24px;
    white-space: nowrap;
    min-height: 48px;
    font-size: 18px;
    color: #111319;
    border: 1px solid #d9a11c;
    background: linear-gradient(180deg, #ffe468 0%, #f0b52e 100%);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 6px 14px rgba(0, 0, 0, 0.3);
}
.dlx-help {
    margin: 15px 0 -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #97a9cc;
    font-size: 13px;
}
.dlx-launcher-box {
    margin-top: 8px;
    border: 1px solid rgba(117, 146, 196, 0.26);
    border-radius: 9px;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(45, 48, 63, 0.92) 0%, rgba(36, 39, 53, 0.92) 100%);
}
.dlx-launcher-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    margin-bottom: 16px;
}
.dlx-launcher-title {
    margin: 0;
    color: #f0f4ff;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.06;
}
.dlx-launcher-desc {
    margin: 6px 0 4px;
    color: #a9b8d7;
    font-size: 14px;
    line-height: 1.16;
    font-weight: 600;
}
.dlx-launcher-desc b { color: #f2c85f; font-weight: 800; }
.dlx-launcher-note {
    margin: 8px 0 0;
    color: #7f93ba;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.dlx-launcher-note .dlx-icon {
    font-size: 20px;
}
.dlx-launcher-after-btn {
    margin: 12px 0 0;
    text-align: center;
    color: #a3a08d;
    font-size: 15px;
    font-weight: 700;
}
.dlx-launcher-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 880px;
    margin: 0 auto;
}
.dlx-zip {
    margin-top: 14px;
    border: 1px solid rgba(117, 146, 196, 0.3);
    border-radius: 9px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    background: linear-gradient(180deg, rgba(47, 50, 66, 0.9) 0%, rgba(37, 40, 54, 0.9) 100%);
}
.dlx-zip-title {
    margin: 0;
    color: #dbe7ff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
}
.dlx-zip-desc {
    margin: 2px 0 0;
    color: #9cadcf;
    font-size: 13px;
}
.dlx-zip-link { color: #c7ac72; font-weight: 800; text-decoration: underline; }
.dlx-icon {
    display: inline-flex;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    color: currentColor;
}
.dlx-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.dlx-btn-primary .dlx-icon { font-size: 38px; opacity: 0.9; }
.dlx-feature .dlx-icon, .dlx-alt-btn .dlx-icon { font-size: 24px; }
.dlx-step-icon-main .dlx-icon { font-size: 40px; }
.dlx-arrow .dlx-icon { font-size: 25px; color: #9fb1d4; }
.dlx-help .dlx-icon, .dlx-launcher-head .dlx-icon, .dlx-zip .dlx-icon { font-size: 20px; color: #8ea0c6; }
.download-section .steps__inner > .steps__item:nth-child(1),
.download-section .steps__inner > .steps__item:nth-child(2) {
    position: relative;
}
.download-section .steps__inner > .steps__item:nth-child(1) .steps__count,
.download-section .steps__inner > .steps__item:nth-child(2) .steps__count {
    position: absolute !important;
    top: 80px !important;
}
@media (max-width: 1280px) {
    .dlx-title { font-size: 30px; }
    .dlx-subtitle { font-size: 17px; }
    .steps__btns.dlx-primary-wrap .dlx-btn-primary { font-size: 22px; width: 100% !important; max-width: 100% !important; padding: 20px 24px; }
    .dlx-features { font-size: 16px; }
    .dlx-step-title { font-size: 18px; }
    .dlx-alt-title { font-size: 20px; }
    .dlx-alt-btn, .dlx-launcher-btn { font-size: 16px; min-height: 44px; }
    .dlx-launcher-btn { min-width: 320px; }
    .dlx-help { font-size: 16px; }
    .dlx-launcher-title { font-size: 26px; }
    .dlx-launcher-desc { font-size: 16px; }
    .dlx-launcher-note { font-size: 14px; }
    .dlx-zip-title { font-size: 18px; }
    .dlx-zip-desc { font-size: 14px; }
    .download-section .steps__inner > .steps__item:nth-child(1),
    .download-section .steps__inner > .steps__item:nth-child(2) {
        position: relative;
    }
    .download-section .steps__inner > .steps__item:nth-child(1) .steps__count,
    .download-section .steps__inner > .steps__item:nth-child(2) .steps__count {
        position: absolute !important;
        left: 50% !important;
        margin: 0 0 0 calc(var(--_steps-count-size, 108px) / 2 * -1) !important;
        top: calc(var(--_steps-count-size, 108px) / 2 * -1) !important;
    }
}
@media (max-width: 1100px) {
    .dlx-features {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 14px 0 16px;
    }
    .dlx-feature {
        white-space: normal;
        text-align: center;
        justify-content: center;
    }
    .dlx-feature .dlx-icon {
        font-size: 20px;
    }
    #download .dlx-download-card .dlx-cards {
        display: none !important;
    }
    .dlx-alt-links {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
    }
    .dlx-alt-btn {
        white-space: nowrap;
        word-break: normal;
        overflow-wrap: normal;
        width: min(100%, 420px);
    }
}
@media (max-width: 900px) {
    .dlx-features, .dlx-alt-links { grid-template-columns: 1fr; }
    #download .dlx-download-card .dlx-cards { display: none !important; }
    .dlx-arrow { min-height: 50px; }
    .dlx-download-card { padding: 18px 14px; }
    .dlx-title { font-size: 26px; }
    .dlx-subtitle { font-size: 15px; }
    .steps__btns.dlx-primary-wrap .dlx-btn-primary {
        font-size: 16px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 12px;
        gap: 10px;
        letter-spacing: 0.2px;
        white-space: nowrap;
    }
    .dlx-btn-primary .dlx-icon { font-size: 28px; }
    .dlx-launcher-btn { min-width: 0; width: 100%; max-width: 360px; }
    .download-section .steps__inner > .steps__item:nth-child(1) .steps__count,
    .download-section .steps__inner > .steps__item:nth-child(2) .steps__count {
        position: absolute !important;
        left: 50% !important;
        margin: 0 0 0 calc(var(--_steps-count-size, 108px) / 2 * -1) !important;
        top: calc(var(--_steps-count-size, 84px) / 2 * -1) !important;
    }
    .dlx-help {
        flex-wrap: wrap;
        text-align: center;
        padding: 0 10px;
        margin: 12px 0 0;
        gap: 6px;
        line-height: 1.35;
    }
    .dlx-help .dlx-zip-link {
        white-space: nowrap;
    }
    .dlx-alt-links {
        justify-items: center;
    }
    .dlx-alt-btn {
        width: min(100%, 420px);
    }
}
@container dlx-download (max-width: 1100px) {
    #download .dlx-download-card .dlx-cards {
        display: none !important;
    }
}
.hero__subtitle {
    color: rgba(255,255,255,0.85);
    opacity: 1;
    letter-spacing: 1.75px;
    font-size: 17px;
    margin-top: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: none;
}
.hero__subtitle .dot {
    opacity: 0.3;
}