:root {
	--primary-color: #0056b3;
	--secondary-color: #f0f0f0;
	--text-color: #333;
	--bg-color: #fff;
	--accent-color: #00a8ff;
	--highlight-color: #ff6b00
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body {
	font-family: Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--text-color);
	background-color: var(--bg-color);
	line-height: 1.6
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem
}

header {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--secondary-color)
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.right-section {
	display: flex;
	align-items: center;
	gap: 1rem
}

.trial-info {
	display: inline-block;
	font-size: .85rem;
	color: #fff;
	background-color: var(--highlight-color);
	padding: .3rem .8rem;
	margin-right: 1rem;
	border-radius: 4px;
	font-weight: 500;
	position: relative;
	transition: all .3s ease;
	box-shadow: 0 2px 4px #0000001a;
	text-decoration: none;
	cursor: pointer
}

.trial-icon {
	display: inline-block;
	margin-right: .2rem;
	animation: pulse 1.5s infinite
}

@keyframes pulse {
	0% {
		opacity: .7
	}

	50% {
		opacity: 1
	}

	to {
		opacity: .7
	}
}

.trial-info:hover {
	background-color: #e85d00;
	transform: translateY(-1px);
	box-shadow: 0 3px 6px #00000026
}

.logo a {
	font-size: 1.8rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--primary-color)
}

.language-switcher button {
	background: none;
	border: none;
	padding: .5rem;
	margin-left: .5rem;
	cursor: pointer;
	font-size: .9rem;
	opacity: .7
}

.language-switcher button.active {
	font-weight: 700;
	opacity: 1
}

main {
	min-height: calc(100vh - 150px)
}

footer {
	padding: 1.5rem 0;
	background-color: var(--secondary-color);
	text-align: center;
	font-size: .9rem
}

.visitor-counter {
	margin-top: .5rem
}

.agreement-modal[data-v-f9ed1727] {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center
}

.overlay[data-v-f9ed1727] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0009;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px)
}

.modal-container[data-v-f9ed1727] {
	position: relative;
	width: 65%;
	max-width: 600px;
	max-height: 75vh;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px #0000001f;
	display: flex;
	flex-direction: column;
	z-index: 1001;
	overflow: hidden
}

.modal-header[data-v-f9ed1727] {
	padding: .75rem 1.2rem;
	border-bottom: 1px solid #eaeaea;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f9f9f9
}

.modal-header h2[data-v-f9ed1727] {
	margin: 0;
	font-size: 1.1rem;
	color: #333;
	font-weight: 600
}

.close-button[data-v-f9ed1727] {
	background: none;
	border: none;
	font-size: 1.4rem;
	cursor: pointer;
	color: #777;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all .2s ease
}

.close-button[data-v-f9ed1727]:hover {
	background-color: #0000000d;
	color: #444
}

.modal-body[data-v-f9ed1727] {
	padding: 1.2rem;
	overflow-y: auto;
	flex-grow: 1;
	max-height: 45vh
}

.agreement-content[data-v-f9ed1727] {
	color: #333;
	line-height: 1.65;
	font-size: .95rem
}

.agreement-paragraphs p[data-v-f9ed1727] {
	margin-bottom: 1.2rem;
	text-align: justify
}

.disclaimer[data-v-f9ed1727] {
	font-style: italic;
	color: #666;
	font-size: .85rem;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid #eaeaea
}

.modal-footer[data-v-f9ed1727] {
	padding: .9rem 1.2rem;
	border-top: 1px solid #eaeaea;
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
	background-color: #f9f9f9
}

.btn[data-v-f9ed1727] {
	padding: .5rem 1.2rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: all .25s ease;
	font-size: .9rem
}

.btn-primary[data-v-f9ed1727] {
	background-color: #5b8a7c;
	color: #fff
}

.btn-primary[data-v-f9ed1727]:hover {
	background-color: #4d7469;
	box-shadow: 0 2px 6px #0000001a
}

.btn-secondary[data-v-f9ed1727] {
	background-color: #d07070;
	color: #fff
}

.btn-secondary[data-v-f9ed1727]:hover {
	background-color: #b86060;
	box-shadow: 0 2px 6px #0000001a
}

.dropdown[data-v-a3fb0b84] {
	position: relative;
	display: inline-block
}

.dropdown-toggle[data-v-a3fb0b84] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px
}

.dropdown-arrow[data-v-a3fb0b84] {
	margin-left: 8px;
	font-size: 12px;
	transition: transform .2s
}

.dropdown-menu[data-v-a3fb0b84] {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 100;
	min-width: 180px;
	padding: .5rem 0;
	margin-top: .25rem;
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0 4px 12px #00000026;
	overflow: hidden
}

.dropdown-item[data-v-a3fb0b84] {
	display: block;
	padding: .65rem 1.25rem;
	color: #333;
	text-decoration: none;
	transition: background-color .2s
}

.dropdown-item[data-v-a3fb0b84]:hover {
	background-color: #e6f0ff;
	color: #3174c7
}

.btn-secondary[data-v-a3fb0b84] {
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center
}

.btn {
	display: inline-block;
	padding: .8rem 2rem;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all .3s ease;
	font-size: 1rem;
	text-align: center
}

.btn-primary {
	background-color: var(--primary-color);
	color: #fff;
	border: none
}

.btn-primary:hover {
	background-color: #004494;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px #0000001a
}

.btn-secondary {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color)
}

.btn-secondary:hover {
	background-color: #0056b30d;
	transform: translateY(-2px)
}

.section {
	padding: 4rem 0
}

.text-center {
	text-align: center
}

.mb-1 {
	margin-bottom: .5rem
}

.mb-2 {
	margin-bottom: 1rem
}

.mb-3 {
	margin-bottom: 1.5rem
}

.mb-4 {
	margin-bottom: 2rem
}

.mt-1 {
	margin-top: .5rem
}

.mt-2 {
	margin-top: 1rem
}

.mt-3 {
	margin-top: 1.5rem
}

.mt-4 {
	margin-top: 2rem
}

@media (max-width: 768px) {
	.section {
		padding: 2rem 0
	}

	.btn {
		padding: .7rem 1.5rem;
		font-size: .9rem
	}
}

.hero {
	padding: 4rem 0;
	text-align: center
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 700
}

.hero h2 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 400;
	color: #666
}

.hero p {
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto 2rem
}

.hero .note {
	display: inline-block;
	padding: .5rem 1rem;
	background-color: #fff3cd;
	color: #856404;
	border-radius: 4px;
	margin-bottom: 2rem;
	font-size: .9rem
}

.hero .note-icon {
	display: inline-block;
	margin-right: .5rem;
	font-size: 1rem;
	color: #e4a11b
}

.hero .btn-group {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap
}

.features {
	background-color: var(--secondary-color);
	padding: 4rem 0
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
	gap: 2rem;
	margin-top: 2rem
}

@media (max-width: 1200px) {
	.features-grid {
		grid-template-columns: repeat(auto-fit,minmax(220px,1fr))
	}
}

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

.feature-card {
	background-color: #fff;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 6px #0000000d;
	text-align: center;
	transition: transform .3s ease;
	height: 100%;
	display: flex;
	flex-direction: column
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px #0000001a
}

.feature-card h3 {
	margin-bottom: 1rem;
	color: var(--primary-color)
}

.feature-card p {
	font-size: .95rem;
	line-height: 1.5;
	flex-grow: 1
}

.faq-container {
	max-width: 800px;
	margin: 0 auto
}

.faq-search {
	width: 100%;
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 2rem;
	font-size: 1rem
}

.faq-item {
	margin-bottom: 1.5rem;
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden
}

.faq-question {
	padding: 1rem;
	background-color: #f9f9f9;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.faq-answer {
	padding: 1rem;
	border-top: 1px solid #eee;
	line-height: 1.6
}

.perfect-skin {
	background-color: #f8f9fa;
	padding: 4rem 0
}

.section-header {
	max-width: 800px;
	margin: 0 auto 2rem
}

.section-header h2 {
	margin-bottom: 1rem
}

.section-header p {
	margin-bottom: 2rem
}

.svip-badge {
	display: inline-block;
	background-color: #ff9800;
	color: #fff;
	padding: .15rem .4rem;
	border-radius: 4px;
	font-size: .7rem;
	font-weight: 600;
	margin-left: .3rem;
	vertical-align: super;
	position: relative;
	top: -.5rem;
	box-shadow: 0 2px 4px #ff98004d
}

.skin-examples-wrapper {
	margin: 0 auto;
	max-width: 900px;
	overflow: hidden
}

.skin-examples-container {
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 1rem 0
}

.skin-examples-scroll {
	display: flex;
	animation: scroll 15s linear infinite;
	width: fit-content
}

@keyframes scroll {
	0% {
		transform: translate(0)
	}

	to {
		transform: translate(-50%)
	}
}

.skin-example-item {
	flex: 0 0 auto;
	background-color: #fff;
	border-radius: 8px;
	padding: 1rem 1.5rem;
	margin-right: 1rem;
	box-shadow: 0 2px 4px #0000000d;
	white-space: nowrap
}

.skin-examples-wrapper:hover .skin-examples-scroll {
	animation-play-state: paused
}

.notes-section {
	max-width: 800px;
	margin: 2rem auto 0;
	background-color: #fff;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 8px #00000014
}

.notes-title {
	margin-bottom: 1rem;
	font-weight: 600;
	color: var(--primary-color)
}

.notes-section p {
	margin-bottom: 1rem;
	line-height: 1.6
}

.download-patch-btn {
	padding: .8rem 2rem
}

@media (max-width: 768px) {
	.skin-examples-scroll {
		animation: scroll 10s linear infinite
	}

	.skin-example-item {
		padding: .8rem 1.2rem;
		font-size: .9rem
	}

	.notes-section {
		padding: 1.5rem
	}
}
