@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
	--sunrent-gradient: linear-gradient(135deg, #0000ff, #0500ff);
	--sunrent-gradient-hover: linear-gradient(135deg, #1a1aff, #3333ff);
	--sunrent-text-primary: #1a1a1a;
	--sunrent-text-secondary: rgba(26, 26, 26, 0.8);
	--sunrent-text-muted: rgba(26, 26, 26, 0.6);
}

:root {
	--bg-page: #ffffff;
}

[data-theme="dark"]:root {
	--bg-page: #1b1b1c;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	font-family: Manrope, sans-serif;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
}

[type=button],
[type=reset],
[type=submit],
button {
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
	display: block;
	vertical-align: middle;
}

.default-transition {
	transition-duration: .5s;
	transition-property: all;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.opacity-0 {
	opacity: 0;
}

.opacity-1 {
	opacity: 1;
}

[data-theme="dark"] .dark-opacity-0 {
	opacity: 0;
}

[data-theme="dark"] .dark-opacity-1 {
	opacity: 1;
}

html {
	height: 100%;
	padding: 0;
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body,
html {
	width: 100%;
	margin: 0;
}

body {
	background-color: #ffffff;
	font-family: Manrope, sans-serif;
	color: var(--sunrent-text-primary);
	position: relative;
	min-height: 100vh;
	overflow-x: hidden;
}

[data-theme="dark"] body {
	background-color: #1b1b1c;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 12px;
	}
}

.logo {
	color: #0500ff;
}

[data-theme="dark"] .logo {
	color: #48ff91;
}

.prime-btn {
	position: relative;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	line-height: .9375rem;
	color: #ffffff;
	background-color: #0500ff;
	border: none;
	border-radius: 9999px;
	padding-bottom: .625rem;
	padding-top: .625rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	overflow: hidden;
	cursor: pointer;
	z-index: 1;
}

.prime-btn:hover {
	color: #1b1b1c;
}

.prime-alt-btn {
	position: relative;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	line-height: .9375rem;
	color: #0500ff;
	background-color: #ffffff;
	border: none;
	border-radius: 9999px;
	padding-bottom: .625rem;
	padding-top: .625rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	overflow: hidden;
	cursor: pointer;
	z-index: 1;
}

.prime-btn::before,
.prime-alt-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #48ff91;
	border-radius: 9999px;
	z-index: -1;
	transition-property: width;
	transition-duration: .5s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.prime-btn:hover::before,
.prime-alt-btn:hover::before {
	content: "";
	width: 100%;
}

[data-theme="dark"] .prime-btn {
	color: #1b1b1c;
	background-color: #48ff91;
}

[data-theme="dark"] .prime-btn:hover {
	color: #ffffff;
}

[data-theme="dark"] .prime-btn::before {
	background-color: #0500ff;
}

.second-btn {
	position: relative;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	color: #0500ff;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	line-height: .9375rem;
	background-color: transparent;
	border-width: 1px;
	border-style: solid;
	border-color: #0500ff;
	border-radius: 9999px;
	padding-bottom: .625rem;
	padding-top: .625rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	overflow: hidden;
}

.second-btn:hover {
	color: #ffffff;
	background-color: #0500ff;
}

[data-theme="dark"] .second-btn {
	color: #48ff91;
	border-color: #48ff91;
}

[data-theme="dark"] .second-btn:hover {
	color: #1b1b1c;
	background-color: #48ff91;
}

.modal-lang-wrapper {
	position: relative;
	z-index: 50 !important;
	pointer-events: none;
}

.modal-lang-wrapper.active {
	pointer-events: auto;
}

.fade {
	position: fixed;
	background-color: rgba(27, 27, 28, .6);
	inset: 0;
	opacity: 0;
}

.modal-lang-wrapper.active .fade {
	opacity: 1;
}

.modal-lang-body {
	position: fixed;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	opacity: 0;
	transition-property: opacity, transform;
	transform: scale(.75, .75);
	inset: 0;
}

.modal-lang-wrapper.active .modal-lang-body {
	opacity: 1;
	transform: scale(1, 1);
}

@media (min-width: 768px) {
	.modal-lang-body {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

.modal-lang-content {
	max-width: 24rem;
	width: auto;
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: #dbdce5;
	border-radius: 20px;
	padding: 1.25rem;
}

[data-theme="dark"] .modal-lang-content {
	background-color: #242426;
	border-color: #4b4b4b;
}

.modal-lang-content button[aria-label="modal-close"] {
	width: 2rem;
	display: flex;
	flex-direction: column;
	gap: .375rem;
	border: none;
	margin-left: auto;
	margin-bottom: 1.5rem;
	transform: rotate(90deg);
	cursor: pointer;
}

.modal-lang-content button[aria-label="modal-close"]>span {
	height: 3px;
	width: 100%;
	display: block;
	background-color: #0500ff;
	border-radius: .125rem;
}

[data-theme="dark"] .modal-lang-content button[aria-label="modal-close"]>span {
	background-color: #48ff91;
}

.modal-lang-content button[aria-label="modal-close"]>span:nth-child(1) {
	transform: translate(0, 9px) rotate(45deg);
}

.modal-lang-content button[aria-label="modal-close"]>span:nth-child(2) {
	opacity: 0;
}

.modal-lang-content button[aria-label="modal-close"]>span:nth-child(3) {
	transform: translate(0, -9px) rotate(-45deg);
}

.row-langs {
	display: flex;
	gap: 2.5rem;
}

.flag-btn {
	position: relative;
	height: 51px;
	width: 52px;
	border-width: 2px;
	border-style: solid;
	border-color: #dbdce5;
	border-radius: 9999px;
	overflow: hidden;
	cursor: pointer;
}

.flag-btn:hover {
	border-color: #1b1b1c;
}

.flag-btn.active {
	border-color: #0500ff !important;
}

[data-theme="dark"] .flag-btn {
	border-color: #4b4b4b;
}

[data-theme="dark"] .flag-btn:hover {
	border-color: #ffffff;
}

[data-theme="dark"] .flag-btn.active {
	border-color: #48ff91 !important;
}

.flag-btn>img {
	position: absolute;
	top: -1px;
	height: 105%;
	width: 101%;
}

.modal-connect-wrapper {
	position: fixed;
	display: none;
	justify-content: center;
	align-items: center;
	background-color: color-mix(in oklab, #000 50%, transparent);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	z-index: 200;
	inset: 0;
}

.modal-connect-wrapper.active {
	display: flex;
}

.modal-connect-content {
	height: auto;
	max-height: 90vh;
	width: 100%;
	max-width: 28rem;
	background-color: #ffffff;
	border-radius: 1rem;
	box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 25px 50px -12px #00000040;
	margin-inline: 1rem;
	overflow-y: auto;
	animation: .2s ease-out forwards scale-in;
}

.modal-connect-header {
	border: 1px solid #ebe6e7;
	padding: 1.5rem;
}

.modal-connect-header>div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-connect-header h2 {
	color: #252525;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
}

.modal-connect-header button[aria-label="Close"] {
	height: 2rem;
	width: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	border-radius: 3.40282e38px;
	transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .2s, .15s;
}

@media (hover: hover) {
	.modal-connect-header button[aria-label="Close"]:hover {
		background-color: #f6f3f4;
	}
}

.modal-connect-header button[aria-label="Close"]>svg {
	height: 1.25rem;
	width: 1.25rem;
	color: #6a7282;
}

.modal-connect-header p {
	color: #252525;
	font-size: .875rem;
	line-height: 1;
	margin-top: .5rem;
}

.modal-connect-body {
	padding: 1.5rem;
}

.modal-connect-body>div {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #ebe6e7;
	border-radius: 1rem;
	padding: .75rem;
}

.modal-connect-body>div>img {
	height: auto;
	width: 100%;
	max-width: 260px;
}

.modal-connect-footer {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	background-color: #fbf9fa;
	border: 1px solid #ebe6e7;
	padding: 1.5rem;
}

.modal-connect-footer>div {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
}

.modal-connect-footer>div>svg {
	color: #155dfc;
	flex-shrink: 0;
	height: 1.25rem;
	width: 1.25rem;
	margin-top: 2px;
}

.modal-connect-footer>div>p {
	color: #252525;
	font-size: .875rem;
	font-weight: 500;
	line-height: 1;
}

@keyframes scale-in {
	0% {
		opacity: 0;
		transform: scale(.95);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
@layer properties {
	@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {

		*,
		::backdrop,
		:after,
		:before {
			--tw-rotate-x: initial;
			--tw-rotate-y: initial;
			--tw-rotate-z: initial;
			--tw-skew-x: initial;
			--tw-skew-y: initial;
			--tw-border-style: solid;
			--tw-outline-style: solid;
			--tw-blur: initial;
			--tw-brightness: initial;
			--tw-contrast: initial;
			--tw-grayscale: initial;
			--tw-hue-rotate: initial;
			--tw-invert: initial;
			--tw-opacity: initial;
			--tw-saturate: initial;
			--tw-sepia: initial;
			--tw-drop-shadow: initial;
			--tw-drop-shadow-color: initial;
			--tw-drop-shadow-alpha: 100%;
			--tw-drop-shadow-size: initial;
		}
	}
}

.invisible {
	visibility: hidden;
}

.visible {
	visibility: visible;
}

.fixed {
	position: fixed;
}

.static {
	position: static;
}

.container {
	width: 100%;
}

.block {
	display: block;
}

.block\! {
	display: block !important;
}

.flex {
	display: flex;
}

.grid {
	display: grid;
}

.hidden {
	display: none;
}

.inline-block {
	display: inline-block;
}

.inline-flex {
	display: inline-flex;
}

.table {
	display: table;
}

.flex-shrink {
	flex-shrink: 1;
}

.flex-grow,
.grow {
	flex-grow: 1;
}

.transform {
	transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
}

.resize {
	resize: both;
}

.flex-wrap {
	flex-wrap: wrap;
}

.truncate {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.border {
	border-style: var(--tw-border-style);
	border-width: 1px;
}

.capitalize {
	text-transform: capitalize;
}

.outline {
	outline-style: var(--tw-outline-style);
	outline-width: 1px;
}

.invert {
	--tw-invert: invert(100%);
}

.filter,
.invert {
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter\! {
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}

.transition {
	transition-property: color, background-color, border-color, outline-color,
		text-decoration-color, fill, stroke, --tw-gradient-from,
		--tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform,
		translate, scale, rotate, filter, backdrop-filter, display,
		content-visibility, overlay, pointer-events;
	transition-timing-function: var(--tw-ease, ease);
	transition-duration: var(--tw-duration, 0s);
}

@property --tw-rotate-x {
	syntax: '*';
	inherits: false;
}

@property --tw-rotate-y {
	syntax: '*';
	inherits: false;
}

@property --tw-rotate-z {
	syntax: '*';
	inherits: false;
}

@property --tw-skew-x {
	syntax: '*';
	inherits: false;
}

@property --tw-skew-y {
	syntax: '*';
	inherits: false;
}

@property --tw-border-style {
	syntax: '*';
	inherits: false;
	initial-value: solid;
}

@property --tw-outline-style {
	syntax: '*';
	inherits: false;
	initial-value: solid;
}

@property --tw-blur {
	syntax: '*';
	inherits: false;
}

@property --tw-brightness {
	syntax: '*';
	inherits: false;
}

@property --tw-contrast {
	syntax: '*';
	inherits: false;
}

@property --tw-grayscale {
	syntax: '*';
	inherits: false;
}

@property --tw-hue-rotate {
	syntax: '*';
	inherits: false;
}

@property --tw-invert {
	syntax: '*';
	inherits: false;
}

@property --tw-opacity {
	syntax: '*';
	inherits: false;
}

@property --tw-saturate {
	syntax: '*';
	inherits: false;
}

@property --tw-sepia {
	syntax: '*';
	inherits: false;
}

@property --tw-drop-shadow {
	syntax: '*';
	inherits: false;
}

@property --tw-drop-shadow-color {
	syntax: '*';
	inherits: false;
}

@property --tw-drop-shadow-alpha {
	syntax: '<percentage>';
	inherits: false;
	initial-value: 100%;
}

@property --tw-drop-shadow-size {
	syntax: '*';
	inherits: false;
}