/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
	padding: 14px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 100;
}

.menu-icon {
	display: none;
}

.navbar i {
	color: var(--primary);
}

.navbar-brand {
	width: 230px;
	height: 64px;
	background: url(../img/logo-wordmark.png) no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
	flex-shrink: 0;
}

.nav {
	margin: 0 50px;
	display: flex;
	align-items: center;
	gap: 50px;
}

.nav .item {
	position: relative;
	padding: 15px 0;
	font-weight: 600;
	color: var(--text-soft);
	transition: color 0.2s ease;
}

.nav .item:hover,
.nav .item.active {
	color: var(--text);
}

.nav .item::before,
.nav .item::after {
	position: absolute;
	content: '';
	height: 5px;
	bottom: 0;
	background: var(--gradient);
	border-radius: 5px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.nav .item::before {
	width: calc(100% - 10px);
	left: 0;
}

.nav .item::after {
	width: 5px;
	right: 0;
}

.nav .item:hover::before,
.nav .item:hover::after,
.nav .item.active::before,
.nav .item.active::after {
	opacity: 1;
}

.search {
	border: 1px solid var(--border-strong);
	background: var(--surface);
	flex-grow: 1;
	max-width: 300px;
	margin: 0 20px 0 0;
	padding: 10px 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	position: relative;
	box-shadow: var(--shadow-sm);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search:focus-within {
	border-color: var(--primary-2);
	box-shadow: 0 0 0 3px var(--primary-soft);
}

.search-input {
	margin-left: 20px;
	width: 100%;
	color: var(--text);
}

.search-input::placeholder {
	color: var(--text-muted);
}

.suggestions {
	border: 1px solid var(--border);
	position: absolute;
	width: calc(100% + 100px);
	right: -1px;
	top: calc(100% + 10px);
	background: var(--surface);
	border-radius: 10px;
	padding: 10px 0;
	box-shadow: var(--shadow-lg);
	z-index: 200;
}

.suggestions .suggestion {
	padding: 5px 20px;
	cursor: pointer;
	display: flex;
}

.suggestions .suggestion:hover {
	background: var(--surface-2);
}

.suggestions .suggestion img {
	width: 50px;
	height: 50px;
	flex-basis: 50px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.suggestions .suggestion .info {
	margin-left: 10px;
	overflow: hidden;
}

.suggestions .suggestion .info .name {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: var(--text);
}

.suggestions .suggestion .info .category {
	font-size: 14px;
	color: var(--text-muted);
}

.lang-btn {
	margin: 0 20px 0 auto;
	display: flex;
	align-items: center;
	position: relative;
	text-align: left;
	font-weight: 600;
	color: var(--text);
}

.lang-btn .flag {
	border-radius: 2px;
	margin-right: 8px;
}

.lang-btn i {
	color: var(--primary);
	font-size: 18px;
	margin-left: 10px;
}

.lang-btn .dropdown {
	position: absolute;
	width: calc(100% + 20px);
	top: 20px;
	left: -10px;
	display: none;
	flex-direction: column;
	align-self: start;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding-left: 15px;
	padding-bottom: 10px;
	box-shadow: var(--shadow);
	z-index: 200;
}

.lang-btn:hover .dropdown {
	padding-top: 15px;
	display: flex;
}

.lang-btn .dropdown .item {
	padding: 10px 0px;
	color: var(--text-soft);
}

.lang-btn .dropdown .item:hover {
	color: var(--primary);
}

.login-btn {
	display: flex;
	align-items: center;
	gap: 10px;
}

.login-btn i {
	font-size: 20px;
	color: #fff !important;
}

.offcanvas {
	display: none;
}

/* =====================================================
   HERO / SLIDERS
   ===================================================== */
.hero-slider {
	margin-top: 16px;
}

.hero-slider .item {
	position: relative;
	height: 400px;
}

.hero-slider .item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero-slider .slide-caption {
	position: absolute;
	left: 100px;
	bottom: 100px;
}

.hero-slider .slide-caption .title {
	font-size: 40px;
}

.hero-slider .slide-caption .description {
	margin: 5px 0 20px 0;
	font-size: 20px;
}

.slider {
	margin: 44px auto 0 auto;
}

.slider:first-child {
	margin-top: 32px;
}

.slider .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 18px 0;
}

.slider .header .title {
	font-size: 30px;
	line-height: 1.2;
	position: relative;
	padding-bottom: 8px;
}

.slider .header .title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 4px;
	border-radius: 4px;
	background: var(--gradient);
}

[dir='rtl'] .slider .header .title::after {
	left: auto;
	right: 0;
}

.slider .item {
	cursor: pointer;
	max-width: 100%;
	margin-left: 20px;
}

.slider.type-1 .item {
	width: 300px;
}

.slider.type-1 .item .thumb {
	width: 100%;
	height: 300px;
	position: relative;
}

.slider.type-1 .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider.type-1 .item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
}

.slider.type-1 .item .category {
	position: absolute;
	top: 10px;
	right: 5px;
	background: var(--info);
	color: #fff;
	padding: 3px 8px;
	font-size: 12px;
	border-radius: 5px;
}

.slider.type-1 .item .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.slider.type-1 .item .btn-primary:hover {
	background: linear-gradient(to left, #ca1ebd 0%, #9482ff 100%);
}

.slider.type-1 .item .title {
	font-size: 30px;
	margin-top: 10px;
}

.slider.type-1 .item:hover .overlay {
	display: block;
}

.slider.type-2 .item {
	width: 350px;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}

.slider.type-2 .item .thumb {
	width: 100%;
	height: 400px;
	position: relative;
}

.slider.type-2 .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider.type-2 .item .category {
	position: absolute;
	top: 15px;
	right: 10px;
	background: var(--info);
	color: #fff;
	padding: 3px 8px;
	font-size: 12px;
	border-radius: 5px;
}

.slider.type-2 .item .title,
.slider.type-2 .item .description {
	background: var(--surface);
	text-align: center;
}

.slider.type-2 .item .title {
	font-weight: bold;
	padding: 10px 20px 5px 20px;
	font-size: 20px;
}

.slider.type-2 .item .description {
	padding: 5px 20px 20px 20px;
	color: var(--text-muted);
}

.slider.type-3 .item {
	width: 200px;
	border-radius: 10px;
	overflow: hidden;
}

.slider.type-3 .item .thumb {
	width: 100%;
	height: 300px;
	position: relative;
}

.slider.type-3 .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider.type-3 .item .caption {
	position: absolute;
	width: 100%;
	bottom: 25px;
	right: 0px;
	padding: 10px 20px;
	background: rgba(18, 18, 18, 0.55);
	color: #fff;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.slider.type-3 .item .caption i {
	font-size: 25px;
	color: var(--primary-2);
}

.slider.type-3 .item:hover .caption {
	opacity: 1;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
	position: relative;
	margin-top: 48px;
	background: var(--surface);
	border-top: 1px solid var(--border);
	color: var(--text-soft);
	font-size: 15px;
}

.footer .footer-main {
	padding: 50px 0 30px 0;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: 40px;
}

.footer .footer-brand .footer-logo {
	display: block;
	width: 190px;
	height: 54px;
	background: url(../img/logo-wordmark.png) no-repeat;
	background-size: contain;
	background-position: left center;
	margin: 0 0 12px 0;
}

[dir='rtl'] .footer .footer-brand .footer-logo {
	background-position: right center;
}

.footer .footer-brand .tagline {
	line-height: 1.6;
	max-width: 360px;
	margin-bottom: 18px;
}

.footer .social-links {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.footer .social-links a {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--gradient-v);
	color: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer .social-links a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(148, 130, 255, 0.4);
}

.footer .social-links i {
	font-size: 16px;
}

.footer .buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.footer .buttons .btn {
	padding: 8px 16px;
	font-size: 14px;
}

.footer .buttons .lang-btn {
	display: none;
}

.footer .footer-col h4 {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text);
	margin-bottom: 16px;
	position: relative;
	padding-bottom: 8px;
}

.footer .footer-col h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32px;
	height: 3px;
	border-radius: 3px;
	background: var(--gradient);
}

[dir='rtl'] .footer .footer-col h4::after {
	left: auto;
	right: 0;
}

.footer .footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer .footer-col a {
	color: var(--text-soft);
	transition: color 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.footer .footer-col a:hover {
	color: var(--primary);
}

.footer .footer-col a i {
	color: var(--primary);
	font-size: 13px;
	width: 16px;
	text-align: center;
}

.footer .footer-company address {
	font-style: normal;
	line-height: 1.6;
	margin-bottom: 14px;
}

.footer .footer-company address strong {
	display: block;
	color: var(--text);
	font-size: 16px;
	margin-bottom: 2px;
}

.footer .footer-company .marketed {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.5;
}

.footer .footer-company .contact-line {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.footer .footer-company .contact-line i {
	color: var(--primary);
	width: 16px;
	text-align: center;
}

.footer .footer-notice {
	border-top: 1px solid var(--border);
	padding: 22px 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-muted);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 40px;
}

.footer .footer-notice p {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.footer .footer-notice p i {
	color: var(--primary);
	margin-top: 3px;
	flex-shrink: 0;
}

.footer .footer-notice a {
	color: var(--primary);
	font-weight: 600;
}

.footer .footer-bottom {
	border-top: 1px solid var(--border);
	padding: 18px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: var(--text-muted);
}

.footer .footer-bottom .legal-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 14px;
}

.footer .footer-bottom .legal-links a:hover {
	color: var(--primary);
}

.footer .footer-bottom .legal-links span {
	color: var(--border-strong);
}

/* =====================================================
   CATEGORIES / LISTINGS
   ===================================================== */
.categories {
	margin-top: 32px;
	display: flex;
	gap: 16px;
}

.categories .sidebar {
	flex-basis: 300px;
	flex-shrink: 0;
	padding: 0 20px;
	position: relative;
	z-index: 88;
}

.categories .sidebar .link {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 15px;
	color: var(--text-soft);
	border-radius: 10px;
	font-weight: 600;
	transition: background 0.2s ease, color 0.2s ease;
}

.categories .sidebar .link i {
	background: linear-gradient(#ca1ebd, #9482ff);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.categories .sidebar .link.active,
.categories .sidebar .link:hover {
	background: var(--surface);
	color: var(--primary);
	box-shadow: var(--shadow-sm);
}

.listing.type-1 {
	flex-grow: 1;
	display: flex;
	gap: 0 24px;
	flex-wrap: wrap;
	align-content: flex-start;
	position: relative;
	z-index: 87;
}

.listing.type-1 .title {
	width: 100%;
	font-size: 30px;
	line-height: 1.2;
}

.listing.type-1 .description {
	width: 100%;
	color: var(--text-muted);
	margin: 6px 0 28px 0;
	line-height: 1.6;
	max-width: 900px;
}

.listing.type-1 .item {
	width: calc(33.333% - 16px);
	margin-bottom: 28px;
	cursor: pointer;
}

.listing.type-1 .item .thumb {
	width: 100%;
	padding-top: 52.55%;
	object-fit: cover;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.listing.type-1 .item:hover .thumb {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.listing.type-1 .item .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.listing.type-1 .ribbon {
	margin-top: 12px;
	align-items: flex-start;
	gap: 12px;
}

.listing.type-1 .ribbon .title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
}

.listing.type-1 .ribbon i {
	font-size: 22px;
	color: var(--primary);
	cursor: pointer;
	flex-shrink: 0;
	margin-top: 1px;
}

.page-title {
	margin-top: 32px;
	margin-bottom: 24px;
	font-size: 32px;
	line-height: 1.2;
}

.listing.type-2 {
	display: flex;
	gap: 0 24px;
	flex-wrap: wrap;
}

.listing.type-2 .item {
	width: calc(25% - 18px);
	margin-bottom: 28px;
	cursor: pointer;
	position: relative;
}

.listing.type-2 .item .thumb {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.listing.type-2 .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.listing.type-2 .ribbon .title {
	font-size: 20px;
}

.listing.type-2 .ribbon i {
	font-size: 30px;
	color: var(--primary);
}

.listing.type-2 .activity {
	font-size: 14px;
	color: var(--text-muted);
}

/* =====================================================
   LOGIN
   ===================================================== */
.login {
	display: flex;
	justify-content: center;
	padding: 24px 0 64px 0;
}

.login .login-card {
	width: 100%;
	max-width: 960px;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.login .login-art {
	position: relative;
	padding: 48px 44px;
	color: #fff;
	background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 45%),
		radial-gradient(circle at 85% 90%, rgba(255, 255, 255, 0.14), transparent 40%),
		linear-gradient(140deg, #ca1ebd 0%, #9482ff 60%, #7e61ff 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 22px;
}

.login .login-art .art-logo {
	width: 190px;
	height: 56px;
	background: url(../img/logo-wordmark.png) no-repeat left center / contain;
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

[dir='rtl'] .login .login-art .art-logo {
	background-position: right center;
}

.login .login-art h2 {
	color: #fff;
	font-size: 30px;
	line-height: 1.2;
}

.login .login-art p {
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.92;
}

.login .login-art ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.login .login-art li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
}

.login .login-art li i {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
}

.login .login-art .art-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	font-weight: 600;
	align-self: flex-start;
	transition: background 0.2s ease;
}

.login .login-art .art-link:hover {
	background: rgba(255, 255, 255, 0.3);
}

.login .login-form-side {
	padding: 48px 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.login .login-form-side .page-title {
	margin: 0 0 8px 0;
	font-size: 32px;
	text-align: left;
}

[dir='rtl'] .login .login-form-side .page-title {
	text-align: right;
}

.login .login-form-side .sub {
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 26px;
}

.login .form {
	display: flex;
	flex-direction: column;
	color: var(--text);
}

.login .form label {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-soft);
}

.login .form .input-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--surface-2);
	border: 1px solid var(--border-strong);
	border-radius: 12px;
	padding: 0 16px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login .form .input-wrap:focus-within {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-soft);
	background: var(--surface);
}

.login .form .input-wrap i {
	color: var(--primary);
	font-size: 18px;
}

.login .form .input-wrap input {
	flex: 1;
	min-width: 0;
	padding: 14px 0;
	font-size: 16px;
	color: var(--text);
	direction: ltr;
}

.login .form .input-wrap input::placeholder {
	color: var(--text-muted);
}

.login .form .hint {
	font-size: 13px;
	color: var(--text-muted);
	margin: 8px 0 18px 0;
}

.login .form .errors {
	list-style: none;
	margin: 0 0 16px 0;
	padding: 12px 14px;
	border-radius: 10px;
	background: #fff1f2;
	border: 1px solid #fecdd3;
	color: #be123c;
	font-size: 14px;
}

.login .form .check {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	color: var(--text-soft);
	margin-bottom: 22px;
	cursor: pointer;
}

.login .form .check input {
	width: 18px;
	height: 18px;
	accent-color: var(--primary);
	margin: 0;
}

.login .form .btn {
	width: 100%;
	padding: 14px 20px;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.login .form .btn i {
	color: #fff;
}

.login .login-foot {
	margin-top: 26px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	font-size: 14px;
	color: var(--text-muted);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.login .login-foot a {
	color: var(--primary);
	font-weight: 600;
}

.login .login-foot a:hover {
	text-decoration: underline;
}

.login .status {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 14px auto;
	padding: 12px 16px;
	border-radius: 10px;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #047857;
	font-size: 14px;
	font-weight: 600;
}

/* =====================================================
   GAME DETAIL PAGE - DESKTOP
   ===================================================== */
.game {
	padding-top: 24px;
	padding-bottom: 8px;
}

.game .content {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 40px;
	align-items: stretch;
}

.game .content .card-1 {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--surface);
}

.game .content .card-1 .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 10;
}

.game .content .card-1 .caption h1 {
	font-size: 32px;
	margin: 0;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.game .content .card-1 .caption .play-btn {
	padding: 12px 35px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(202, 30, 189, 0.4);
}

.game .content .card-1 .caption .play-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(202, 30, 189, 0.6);
}

.game .content .card-1 .category {
	position: absolute;
	top: 20px;
	left: 20px;
	background: linear-gradient(135deg, #00c2ff 0%, #0099cc 100%);
	color: #fff;
	padding: 6px 16px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 20px;
	z-index: 10;
	box-shadow: 0 2px 10px rgba(0, 194, 255, 0.3);
}

.game .content .card-1 img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.game .content .card-1:hover img {
	transform: scale(1.03);
}

.game .content .card-1 .play-btn-container {
	display: none;
}

.game .content .card-2 {
	background: var(--surface);
	border-radius: 20px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 15px;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.game .content .card-2 .info {
	position: relative;
	top: 0;
	text-align: center;
	padding: 20px;
	background: var(--surface-2);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.game .content .card-2 .info:hover {
	background: var(--primary-soft);
	transform: translateY(-2px);
}

.game .content .card-2 .info h3 {
	font-size: 28px;
	margin-bottom: 5px;
	color: var(--text);
}

.game .content .card-2 .info p {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0;
}

.game .content .card-2 .info i {
	color: var(--primary);
	font-size: 26px;
}

.game .content .card-2 .info i.fa-star {
	color: #ffc107;
}

.game .content .card-2 .info i.fa-heart {
	color: #ff4d6d;
}

.game .action-bar {
	display: flex;
	gap: 15px;
	padding-top: 10px;
	border-top: 1px solid var(--border);
	margin-top: 10px;
}

.game .action-bar .btn {
	flex: 1;
	padding: 14px 20px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	background: var(--surface-2);
	border: 1px solid var(--border);
	color: var(--text);
}

.game .action-bar .btn:hover {
	background: var(--primary-soft);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(148, 130, 255, 0.2);
}

.game .action-bar .btn i {
	font-size: 18px;
	color: var(--primary);
}

.game .action-bar .btn:first-child:hover i {
	color: #ff4d6d;
}

.game .slider {
	margin-top: 48px;
}

.game .slider.type-screenshots {
	position: relative;
	padding: 0 50px;
}

.game .slider.type-screenshots .slick-prev,
.game .slider.type-screenshots .slick-next {
	width: 50px;
	height: 50px;
	background: var(--gradient) !important;
	border-radius: 50%;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(148, 130, 255, 0.4);
	transition: all 0.3s ease;
}

.game .slider.type-screenshots .slick-prev:hover,
.game .slider.type-screenshots .slick-next:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(148, 130, 255, 0.5);
}

.game .slider.type-screenshots .slick-prev {
	left: 0;
}

.game .slider.type-screenshots .slick-next {
	right: 0;
}

.game .slider.type-screenshots .slick-prev:before,
.game .slider.type-screenshots .slick-next:before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 18px;
	color: #fff;
	opacity: 1;
}

.game .slider.type-screenshots .slick-prev:before {
	content: '\f053';
}

.game .slider.type-screenshots .slick-next:before {
	content: '\f054';
}

.slider.type-screenshots .item {
	padding: 0 10px;
}

.slider.type-screenshots .item img {
	max-height: 450px;
	border-radius: 15px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

.slider.type-screenshots .item:hover img {
	transform: scale(1.02);
}

.game .description {
	margin-top: 48px;
	padding: 40px;
	background: var(--surface);
	border-radius: 20px;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.game .description .title {
	font-size: 28px;
	margin: 0 0 16px 0;
}

.game .description p {
	line-height: 1.8;
	font-size: 17px;
	color: var(--text-soft);
	margin: 0;
}

.game .more {
	margin-top: 48px;
}

.game .more h2.title {
	font-size: 30px;
	margin: 0 0 24px 0;
}

/* Desktop-only sliders (home category rows) */
.slider.type-desktop-only .item {
	width: 400px;
	position: relative;
	margin-bottom: 0;
}

.slider.type-desktop-only .item .thumb {
	padding-top: 52.5%;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slider.type-desktop-only .item:hover .thumb {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.slider.type-desktop-only .item .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.slider.type-desktop-only .item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	display: none;
}

.slider.type-desktop-only .item .category {
	position: absolute;
	top: 10px;
	right: 5px;
	background: var(--info);
	color: #fff;
	padding: 3px 8px;
	font-size: 12px;
	border-radius: 5px;
	z-index: 2;
}

.slider.type-desktop-only .item .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.slider.type-desktop-only .item .btn-primary:hover {
	background: linear-gradient(to left, #ca1ebd 0%, #9482ff 100%);
}

.slider.type-desktop-only .item .title {
	font-size: 19px;
	line-height: 1.35;
	margin-top: 12px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
}

.slider.type-desktop-only .item .title i {
	color: var(--primary);
	cursor: pointer;
	font-size: 22px;
	flex-shrink: 0;
	margin-top: 1px !important;
	float: none !important;
}

.slider.type-desktop-only .item:hover .overlay {
	display: block;
}

.slider.type-desktop-only .owl-prev,
.slider.type-desktop-only .owl-next {
	top: 10%;
}

.slider.recently-played .item .title,
.slider.recently-played .item .description {
	background: var(--surface);
	text-align: center;
}

.slider.recently-played .item .title {
	font-weight: bold;
	padding: 10px 20px 5px 20px;
	font-size: 20px;
}

.slider.recently-played .item .description {
	padding: 5px 20px 20px 20px;
	color: var(--text-muted);
}

.thumb a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* =====================================================
   CHARACTER BELT
   ===================================================== */
.character-belt {
	background: var(--primary);
	padding: 12px 40px;
	margin-top: 8px;
}

.character-belt .item {
	width: 100px;
}

.character-belt .item .thumb {
	width: 100%;
	padding-top: 100%;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.character-belt .item .thumb img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	object-fit: cover;
}

.character-belt .owl-prev,
.character-belt .owl-next {
	top: 10%;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	color: #fff !important;
}

.character-belt .owl-prev {
	left: 0px;
}

.character-belt .owl-next {
	right: 0px;
}

.character-belt .item .thumb:hover {
	animation: scale 0.4s forwards;
}

.character-belt .owl-stage-outer {
	overflow: visible !important;
}

@keyframes scale {
	0% {
		transform: scale(1);
	}
	60% {
		transform: scale(1.25);
	}
	100% {
		transform: scale(1.1);
	}
}

.btn {
	overflow: auto;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section {
	display: flex;
	gap: 60px;
	padding: 24px 0 64px 0;
	color: var(--text);
	max-width: 1100px;
	margin: 0 auto;
	align-items: flex-start;
}

.contact-form {
	flex-grow: 1;
	max-width: 600px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 40px;
	box-shadow: var(--shadow-sm);
}

.contact-form h3 {
	font-size: 25px;
	margin-bottom: 24px;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	color: var(--text-soft);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 10px;
	background: var(--surface);
	border: 1px solid var(--border-strong);
	border-radius: 10px;
	color: var(--text);
	font-family: inherit;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-soft);
}

.contact-form .btn {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}

.contact-form .btn i {
	color: #fff !important;
}

.company-info {
	flex-basis: 320px;
	flex-shrink: 0;
	padding-top: 40px;
}

.company-info h2 {
	font-size: 32px;
	margin-bottom: 24px;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.address {
	display: flex;
	gap: 15px;
	margin-bottom: 22px;
}

.address i,
.contact-details i {
	color: var(--primary);
	font-size: 20px;
	margin-top: 5px;
}

.address p {
	margin-bottom: 5px;
	color: var(--text-soft);
}

.contact-details .detail {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	align-items: center;
}

.contact-details p {
	color: var(--text-soft);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-page {
	margin-top: 24px;
	color: var(--text);
	padding-bottom: 64px;
}

.hero-section {
	text-align: center;
	padding: 72px 30px;
	background: radial-gradient(ellipse at top, rgba(148, 130, 255, 0.25), transparent 60%),
		radial-gradient(ellipse at bottom right, rgba(202, 30, 189, 0.15), transparent 60%),
		var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin-bottom: 48px;
}

.hero-section h1 {
	font-size: 44px;
	line-height: 1.15;
	margin-bottom: 14px;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-section .tagline {
	font-size: 22px;
	color: var(--text-muted);
}

.mission-section {
	padding: 0;
}

.mission-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 24px;
	padding: 0;
}

.mission-card {
	flex: 1;
	background: var(--surface);
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.mission-card i {
	font-size: 40px;
	margin-bottom: 20px;
	background: linear-gradient(#ca1ebd, #9482ff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mission-card h2 {
	margin-bottom: 15px;
	font-size: 24px;
}

.mission-card p {
	color: var(--text-soft);
	line-height: 1.6;
}

.stats-section {
	max-width: 1200px;
	margin: 48px auto 0 auto;
	display: flex;
	justify-content: space-around;
	gap: 20px;
	padding: 32px 20px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}

.stat-card {
	text-align: center;
}

.stat-card .number {
	display: block;
	font-size: 36px;
	font-weight: bold;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
}

.stat-card .label {
	color: var(--text-muted);
}

.about-content {
	max-width: 1000px;
	margin: 48px auto 0;
	padding: 0 20px;
}

.content-section {
	margin-bottom: 40px;
}

.content-section:last-child {
	margin-bottom: 0;
}

.content-section h2 {
	font-size: 30px;
	margin-bottom: 14px;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.content-section p {
	color: var(--text-soft);
	line-height: 1.8;
	font-size: 16px;
}

/* =====================================================
   LEGAL PAGES (Terms, Privacy)
   ===================================================== */
.legal-page {
	max-width: 1200px;
	margin: 24px auto 64px auto;
}

.legal-page .legal-hero {
	background: radial-gradient(ellipse at top left, rgba(148, 130, 255, 0.25), transparent 55%),
		radial-gradient(ellipse at bottom right, rgba(202, 30, 189, 0.18), transparent 55%),
		var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 44px 48px 36px 48px;
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
}

.legal-page .legal-hero .eyebrow {
	display: inline-block;
	background: var(--gradient);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}

.legal-page .legal-hero h1 {
	font-size: 42px;
	line-height: 1.15;
	margin-bottom: 12px;
}

.legal-page .legal-hero .lede {
	font-size: 18px;
	color: var(--text-soft);
	line-height: 1.6;
	max-width: 760px;
}

.legal-page .legal-hero .meta {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	font-size: 14px;
	color: var(--text-muted);
}

.legal-page .legal-hero .meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.legal-page .legal-hero .meta i {
	color: var(--primary);
}

.legal-page .legal-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 24px;
	align-items: start;
}

.legal-page .legal-toc {
	position: sticky;
	top: 20px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow-sm);
}

.legal-page .legal-toc h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.legal-page .legal-toc ol {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: toc;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.legal-page .legal-toc ol li a {
	counter-increment: toc;
	display: flex;
	gap: 10px;
	padding: 7px 10px;
	border-radius: 8px;
	font-size: 14px;
	color: var(--text-soft);
	transition: background 0.2s ease, color 0.2s ease;
}

.legal-page .legal-toc ol li a::before {
	content: counter(toc, decimal-leading-zero);
	font-weight: 700;
	color: var(--primary);
	min-width: 22px;
}

.legal-page .legal-toc ol li a:hover {
	background: var(--surface-2);
	color: var(--text);
}

.legal-page .legal-body {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px 50px 40px 50px;
	box-shadow: var(--shadow-sm);
	line-height: 1.75;
	color: var(--text-soft);
}

.legal-page .legal-body section {
	padding: 28px 0;
	border-bottom: 1px solid var(--border);
	scroll-margin-top: 20px;
}

.legal-page .legal-body section:last-child {
	border-bottom: none;
}

.legal-page .legal-body h2 {
	font-size: 24px;
	margin-bottom: 14px;
	display: flex;
	align-items: baseline;
	gap: 14px;
}

.legal-page .legal-body h2 .num {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background: var(--gradient);
	border-radius: 8px;
	padding: 2px 9px;
	flex-shrink: 0;
	transform: translateY(-2px);
}

.legal-page .legal-body h3 {
	font-size: 17px;
	margin: 20px 0 8px 0;
}

.legal-page .legal-body p {
	margin-bottom: 12px;
}

.legal-page .legal-body ul,
.legal-page .legal-body ol {
	margin: 0 0 14px 0;
	padding-left: 22px;
}

[dir='rtl'] .legal-page .legal-body ul,
[dir='rtl'] .legal-page .legal-body ol {
	padding-left: 0;
	padding-right: 22px;
}

.legal-page .legal-body li {
	margin-bottom: 6px;
}

.legal-page .legal-body li::marker {
	color: var(--primary);
	font-weight: 700;
}

.legal-page .legal-body a {
	color: var(--primary);
	font-weight: 600;
}

.legal-page .legal-body a:hover {
	text-decoration: underline;
}

.legal-page .legal-body .callout {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-left: 4px solid var(--primary);
	border-radius: 10px;
	padding: 16px 18px;
	margin: 16px 0;
	display: flex;
	gap: 12px;
	color: var(--text);
}

[dir='rtl'] .legal-page .legal-body .callout {
	border-left: 1px solid var(--border);
	border-right: 4px solid var(--primary);
}

.legal-page .legal-body .callout i {
	color: var(--primary);
	margin-top: 4px;
	flex-shrink: 0;
}

.legal-page .legal-body .callout p {
	margin: 0;
}

.legal-page .legal-body .definitions dt {
	font-weight: 700;
	color: var(--text);
	margin-top: 10px;
}

.legal-page .legal-body .definitions dd {
	margin: 2px 0 0 0;
}

.legal-page .legal-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px 0 16px 0;
	font-size: 15px;
}

.legal-page .legal-body table th,
.legal-page .legal-body table td {
	text-align: left;
	padding: 10px 12px;
	border-bottom: 1px solid var(--border);
	vertical-align: top;
}

[dir='rtl'] .legal-page .legal-body table th,
[dir='rtl'] .legal-page .legal-body table td {
	text-align: right;
}

.legal-page .legal-body table th {
	color: var(--text);
	background: var(--surface-2);
	font-weight: 700;
}

.legal-page .legal-body .company-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 10px;
}

.legal-page .legal-body .company-card > div {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 16px 18px;
}

.legal-page .legal-body .company-card strong {
	display: block;
	color: var(--text);
	margin-bottom: 4px;
}

.legal-page .legal-body .company-card small {
	display: block;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 11px;
	margin-bottom: 6px;
}

/* =====================================================
   PRICING / SUBSCRIBE / UNSUBSCRIBE PAGE
   ===================================================== */
.pricing-page {
	max-width: 1200px;
	margin: 24px auto 64px auto;
}

.pricing-page .pricing-hero {
	text-align: center;
	padding: 44px 30px;
	background: radial-gradient(ellipse at top, rgba(148, 130, 255, 0.28), transparent 60%),
		radial-gradient(ellipse at bottom left, rgba(202, 30, 189, 0.16), transparent 55%),
		var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	margin-bottom: 48px;
}

.pricing-page .pricing-hero .eyebrow {
	display: inline-block;
	background: var(--gradient);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}

.pricing-page .pricing-hero h1 {
	font-size: 42px;
	margin-bottom: 14px;
}

.pricing-page .pricing-hero p {
	font-size: 18px;
	color: var(--text-soft);
	max-width: 760px;
	margin: 0 auto;
	line-height: 1.6;
}

.pricing-page .pricing-hero .jump-links {
	margin-top: 26px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.pricing-page .pricing-hero .jump-links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--surface);
	border: 1px solid var(--border-strong);
	font-weight: 600;
	color: var(--text);
	transition: all 0.2s ease;
}

.pricing-page .pricing-hero .jump-links a:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-1px);
}

.pricing-page .pricing-hero .jump-links a i {
	color: var(--primary);
}

.pricing-page .section-title {
	font-size: 30px;
	margin-bottom: 8px;
	position: relative;
	padding-bottom: 10px;
	display: inline-block;
}

.pricing-page .section-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 4px;
	border-radius: 4px;
	background: var(--gradient);
}

[dir='rtl'] .pricing-page .section-title::after {
	left: auto;
	right: 0;
}

.pricing-page .section-sub {
	color: var(--text-muted);
	margin-bottom: 24px;
	line-height: 1.6;
	max-width: 800px;
}

.pricing-page section {
	margin-bottom: 48px;
	scroll-margin-top: 20px;
}

.pricing-page section:last-of-type {
	margin-bottom: 40px;
}

.pricing-page .country-block {
	margin-bottom: 32px;
}

.pricing-page .country-block:last-child {
	margin-bottom: 0;
}

.pricing-page .country-block.is-current {
	position: relative;
}

.pricing-page .country-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.pricing-page .country-head .flag {
	font-size: 34px;
	line-height: 1;
}

.pricing-page .country-head h3 {
	font-size: 24px;
}

.pricing-page .country-head .badge {
	font-size: 12px;
	font-weight: 700;
	background: var(--gradient);
	color: #fff;
	padding: 4px 12px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pricing-page .country-head .support {
	margin-left: auto;
	font-size: 14px;
	color: var(--text-muted);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

[dir='rtl'] .pricing-page .country-head .support {
	margin-left: 0;
	margin-right: auto;
}

.pricing-page .country-head .support a {
	color: var(--primary);
	font-weight: 600;
}

.pricing-page .plan-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.pricing-page .plan-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-page .plan-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.pricing-page .is-current .plan-card {
	border-color: var(--primary-2);
}

.pricing-page .plan-card .operator {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.pricing-page .plan-card .operator strong {
	font-size: 18px;
	color: var(--text);
}

.pricing-page .plan-card .operator .plan-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--primary);
	background: var(--primary-soft);
	padding: 4px 10px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.pricing-page .plan-card .price {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.pricing-page .plan-card .price .amount {
	font-size: 36px;
	font-weight: 700;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
}

.pricing-page .plan-card .price .period {
	color: var(--text-muted);
	font-weight: 600;
}

.pricing-page .plan-card .facts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 14px;
	color: var(--text-soft);
}

.pricing-page .plan-card .facts li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.pricing-page .plan-card .facts li i {
	color: var(--primary);
	margin-top: 3px;
	width: 14px;
	text-align: center;
	flex-shrink: 0;
}

.pricing-page .plan-card .facts li.trial i {
	color: #16a34a;
}

.pricing-page .plan-card .unsub {
	margin-top: auto;
	background: var(--surface-2);
	border: 1px dashed var(--border-strong);
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 14px;
	color: var(--text-soft);
	line-height: 1.6;
}

.pricing-page .plan-card .unsub .label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.pricing-page .plan-card .unsub code {
	font-family: inherit;
	font-weight: 700;
	color: var(--text);
	background: var(--surface);
	border: 1px solid var(--border-strong);
	border-radius: 6px;
	padding: 1px 8px;
}

.pricing-page .plan-card .subscribe-btn {
	text-align: center;
	display: block;
}

.pricing-page .steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.pricing-page .step {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow-sm);
	position: relative;
}

.pricing-page .step .step-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gradient);
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	box-shadow: 0 4px 14px rgba(148, 130, 255, 0.35);
}

.pricing-page .step p {
	color: var(--text-soft);
	line-height: 1.6;
	font-size: 15px;
}

.pricing-page .unsub-panel {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.pricing-page .unsub-panel table {
	width: 100%;
	border-collapse: collapse;
}

.pricing-page .unsub-panel th,
.pricing-page .unsub-panel td {
	text-align: left;
	padding: 14px 18px;
	border-bottom: 1px solid var(--border);
	vertical-align: middle;
	font-size: 15px;
}

[dir='rtl'] .pricing-page .unsub-panel th,
[dir='rtl'] .pricing-page .unsub-panel td {
	text-align: right;
}

.pricing-page .unsub-panel th {
	background: var(--surface-2);
	color: var(--text);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pricing-page .unsub-panel tr:last-child td {
	border-bottom: none;
}

.pricing-page .unsub-panel td .flag {
	margin-right: 8px;
}

.pricing-page .unsub-panel td code {
	font-family: inherit;
	font-weight: 700;
	color: var(--text);
	background: var(--surface-2);
	border: 1px solid var(--border-strong);
	border-radius: 6px;
	padding: 2px 8px;
}

.pricing-page .unsub-panel td .free {
	font-size: 12px;
	color: #16a34a;
	font-weight: 700;
	margin-left: 6px;
}

.pricing-page .manage-card {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: linear-gradient(135deg, rgba(148, 130, 255, 0.12), rgba(202, 30, 189, 0.08));
	border: 1px solid var(--border-strong);
	border-radius: var(--radius);
	padding: 22px 26px;
}

.pricing-page .manage-card h3 {
	font-size: 18px;
	margin-bottom: 4px;
}

.pricing-page .manage-card p {
	color: var(--text-soft);
	font-size: 15px;
	line-height: 1.5;
}

.pricing-page .manage-card .btn {
	white-space: nowrap;
}

.pricing-page .note {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-left: 4px solid var(--primary);
	border-radius: 10px;
	padding: 16px 18px;
	display: flex;
	gap: 12px;
	color: var(--text-soft);
	line-height: 1.6;
	font-size: 15px;
}

[dir='rtl'] .pricing-page .note {
	border-left: 1px solid var(--border);
	border-right: 4px solid var(--primary);
}

.pricing-page .note i {
	color: var(--primary);
	margin-top: 4px;
	flex-shrink: 0;
}

.pricing-page .faq {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.pricing-page .faq details {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 0;
	box-shadow: var(--shadow-sm);
}

.pricing-page .faq summary {
	cursor: pointer;
	list-style: none;
	padding: 16px 20px;
	font-weight: 700;
	color: var(--text);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.pricing-page .faq summary::-webkit-details-marker {
	display: none;
}

.pricing-page .faq summary::after {
	content: '\f078';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 12px;
	color: var(--primary);
	transition: transform 0.2s ease;
}

.pricing-page .faq details[open] summary::after {
	transform: rotate(180deg);
}

.pricing-page .faq details p {
	padding: 0 20px 16px 20px;
	color: var(--text-soft);
	line-height: 1.6;
	font-size: 15px;
}

.pricing-page .support-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	color: var(--text-muted);
	font-size: 15px;
}

.pricing-page .support-strip a {
	color: var(--primary);
	font-weight: 600;
}

/* =====================================================
   HOME HERO
   ===================================================== */
.home-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin: 32px auto 0 auto;
	padding: 36px 40px;
	background: radial-gradient(ellipse at top left, rgba(148, 130, 255, 0.22), transparent 55%),
		radial-gradient(ellipse at bottom right, rgba(202, 30, 189, 0.14), transparent 55%),
		var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	color: var(--text);
}

.home-hero-copy {
	flex: 1 1 auto;
	max-width: 640px;
}

.home-hero h1 {
	font-size: 36px;
	line-height: 1.15;
	font-weight: 800;
	margin: 0 0 10px 0;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.home-hero .tagline {
	font-size: 17px;
	line-height: 1.5;
	color: var(--text-soft);
	margin: 0 0 20px 0;
}

.home-hero .tagline-short {
	display: none;
}

.home-hero .actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.home-hero .actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	white-space: nowrap;
	overflow: visible;
}

.home-hero-points {
	flex: 0 0 auto;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.home-hero-points li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 14px;
	color: var(--text-soft);
	box-shadow: var(--shadow-sm);
}

.home-hero-points li i {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--primary-soft);
	color: var(--primary);
	font-size: 14px;
	flex-shrink: 0;
}
