:root {
	--tb-bg: #09090a;
	--tb-surface: #121214;
	--tb-surface-2: #18181b;
	--tb-glass: rgba(24, 24, 27, .72);
	--tb-border: rgba(255, 255, 255, .10);
	--tb-text: #fafafa;
	--tb-muted: #a1a1aa;
	--tb-red: #ef2b33;
	--tb-red-dark: #ba1119;
	--tb-orange: #ff6534;
	--tb-gradient: linear-gradient(135deg, #ff3549 0%, #ed191f 48%, #ff6a32 100%);
	--tb-shadow: 0 28px 70px -24px rgba(0, 0, 0, .78);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
	background: var(--tb-bg) !important;
	color: var(--tb-text) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	overflow-x: hidden;
}
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 82% 6%, rgba(239, 43, 51, .13), transparent 25%),
		radial-gradient(circle at 10% 36%, rgba(255, 101, 52, .08), transparent 22%);
	pointer-events: none;
}
a { color: inherit; }
.site-container { width: min(1152px, calc(100% - 32px)); }

.tb-announcement {
	border-bottom: 1px solid rgba(255,255,255,.07);
	background: #080808;
	color: rgba(255,255,255,.68);
	font-size: 13px;
}
.tb-announcement-inner {
	min-height: 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.tb-announcement p { margin: 0; }
.tb-announcement p span {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-right: 7px;
	background: #41d17d;
	box-shadow: 0 0 0 5px rgba(65,209,125,.1);
}
.tb-announcement nav { display: flex; align-items: center; gap: 6px; }
.tb-announcement nav a {
	padding: 6px 10px;
	border-radius: 8px;
	text-decoration: none;
	transition: .2s ease;
}
.tb-announcement nav a:hover { color: #fff; background: rgba(255,255,255,.06); }

.tb-header {
	position: sticky !important;
	top: 0;
	z-index: 100;
	min-height: 72px;
	border-bottom: 1px solid var(--tb-border) !important;
	background: rgba(10, 10, 11, .76) !important;
	backdrop-filter: blur(24px) saturate(140%);
}
.tb-header-inner {
	min-height: 72px;
	display: flex;
	align-items: center;
	gap: 24px;
}
.tb-brand {
	flex: 0 0 auto;
	width: auto;
	min-width: 244px;
	height: 52px;
	display: flex !important;
	align-items: center;
	gap: 7px;
	background: transparent;
}
.brand-symbol {
	display: grid;
	flex: 0 0 55px;
	width: 55px;
	height: 48px;
	place-items: center;
}
.brand-symbol .brand-logo {
	width: 55px;
	height: 48px;
	object-fit: contain;
}
.brand-wordmark {
	display: flex;
	align-items: baseline;
	white-space: nowrap;
	font-size: 24px;
	font-style: italic;
	font-weight: 900;
	letter-spacing: -1.3px;
	line-height: 1;
	text-shadow: 0 2px 12px rgba(0,0,0,.42);
}
.brand-wordmark strong { color: #f7f7f8; font-weight: 900; }
.brand-wordmark b { color: var(--tb-red); font-weight: 900; }
.brand-wordmark small { color: #f7f7f8; font-size: .72em; font-weight: 850; letter-spacing: -.7px; }
.tb-desktop-nav { display: flex; align-items: center; gap: 3px; margin-left: auto; }
.tb-desktop-nav > a,
.tb-nav-trigger {
	border: 0;
	background: transparent;
	color: rgba(255,255,255,.78);
	padding: 11px 12px;
	border-radius: 10px;
	font: inherit;
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
	cursor: pointer;
	transition: color .2s ease, background .2s ease;
}
.tb-desktop-nav > a:hover,
.tb-nav-trigger:hover,
.tb-nav-trigger[aria-expanded="true"] { color: #fff; background: rgba(255,255,255,.07); }
.tb-nav-trigger span { color: var(--tb-red); margin-left: 4px; }
.tb-nav-group { position: relative; }
.tb-mega-menu {
	position: absolute;
	left: 0;
	top: calc(100% + 14px);
	width: 720px;
	padding: 12px;
	border: 1px solid var(--tb-border);
	border-radius: 18px;
	background: rgba(23,23,25,.82);
	backdrop-filter: blur(28px) saturate(140%);
	box-shadow: var(--tb-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px) scale(.985);
	transform-origin: top left;
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.tb-nav-group.open .tb-mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}
.tb-mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.tb-mega-grid a,
.tb-mega-menu-small > a {
	display: grid;
	grid-template-columns: 40px 1fr;
	grid-template-rows: auto auto;
	column-gap: 10px;
	align-items: center;
	padding: 10px;
	border-radius: 12px;
	color: var(--tb-text);
	text-decoration: none;
	transition: .2s ease;
}
.tb-mega-grid a:hover,
.tb-mega-menu-small > a:hover { background: rgba(239,43,51,.12); transform: translateY(-1px); }
.tb-mega-grid a > span { grid-row: 1 / 3; width: 40px; height: 40px; display: grid; place-items: center; }
.tb-menu-icon { width: 38px; height: 38px; object-fit: contain; }
.tb-mega-grid b, .tb-mega-menu-small b { font-size: 13px; }
.tb-mega-grid small, .tb-mega-menu-small small { color: var(--tb-muted); font-size: 11px; }
.tb-mega-all {
	display: flex;
	justify-content: space-between;
	margin-top: 9px;
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--tb-gradient);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}
.tb-mega-menu-small { width: 300px; }
.tb-mega-menu-small > a { grid-template-columns: 1fr; }
.tb-header-actions { display: flex; align-items: center; gap: 7px; }
.tb-icon-button, .tb-cart {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid var(--tb-border);
	border-radius: 11px;
	background: rgba(255,255,255,.04);
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}
.theme-mode-toggle span:first-child { display: none; }
.tb-login-link {
	border: 0;
	background: transparent;
	color: rgba(255,255,255,.8);
	padding: 10px 9px;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}
.tb-register-button {
	min-height: 40px;
	padding: 0 16px !important;
	border-radius: 11px !important;
	background: var(--tb-gradient) !important;
	box-shadow: 0 12px 28px -14px rgba(239,43,51,.9);
	font-size: 13px !important;
}
.tb-mobile-toggle { display: none !important; }
.tb-mobile-menu { display: none; }

.tb-hero {
	position: relative;
	overflow: hidden;
	padding: 80px 0 34px;
	background: transparent !important;
}
.tb-hero::before,
.tb-hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	pointer-events: none;
}
.tb-hero::before {
	width: 560px;
	height: 560px;
	right: -120px;
	top: -200px;
	background: radial-gradient(circle, rgba(239,43,51,.22), transparent 65%);
}
.tb-hero::after {
	width: 420px;
	height: 420px;
	left: -180px;
	bottom: 0;
	background: radial-gradient(circle, rgba(255,101,52,.13), transparent 65%);
}
.tb-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(470px, .9fr);
	align-items: center;
	gap: 42px;
	min-height: 520px;
}
.tb-hero-copy { position: relative; z-index: 3; max-width: 620px; }
.tb-hero .eyebrow,
.section-heading .eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	width: fit-content;
	padding: 7px 11px;
	border: 1px solid rgba(239,43,51,.25);
	border-radius: 999px;
	background: rgba(239,43,51,.08);
	color: #ff7379 !important;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.tb-hero .eyebrow i,
.section-heading .eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--tb-red); box-shadow: 0 0 12px var(--tb-red); }
.tb-hero h1 {
	margin: 20px 0 18px !important;
	color: #fff !important;
	font-size: clamp(44px, 5.2vw, 72px) !important;
	line-height: .98 !important;
	letter-spacing: -.055em !important;
	font-weight: 900 !important;
}
.tb-hero h1 span {
	color: transparent !important;
	background: linear-gradient(95deg, #ff3642, #ff7a34);
	-webkit-background-clip: text;
	background-clip: text;
}
.tb-hero-copy > p {
	max-width: 600px;
	margin: 0;
	color: var(--tb-muted) !important;
	font-size: 18px !important;
	line-height: 1.75 !important;
}
.tb-hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.tb-hero .hero-button {
	min-height: 52px;
	padding: 0 22px !important;
	border-radius: 14px !important;
	background: var(--tb-gradient) !important;
	box-shadow: 0 18px 38px -16px rgba(239,43,51,.85);
}
.tb-hero .hero-button:hover { transform: translateY(-2px); }
.tb-hero-track {
	color: rgba(255,255,255,.78);
	font-size: 14px;
	font-weight: 800;
	text-underline-offset: 5px;
}
.tb-hero-trust { margin-top: 27px !important; }
.tb-hero-trust strong { color: #fff !important; }
.tb-hero-trust small { color: var(--tb-muted) !important; }
.tb-hero-trust .avatar-stack b {
	border-color: var(--tb-bg) !important;
	background: linear-gradient(135deg, #27272a, #ef2b33) !important;
	color: #fff !important;
}
.tb-hero-trust .rating { color: #ffb11b !important; }
.tb-proof-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 28px;
}
.tb-proof-row span {
	padding: 13px 14px;
	border: 1px solid var(--tb-border);
	border-radius: 14px;
	background: rgba(255,255,255,.025);
}
.tb-proof-row b, .tb-proof-row small { display: block; }
.tb-proof-row b { color: #fff; font-size: 18px; }
.tb-proof-row small { margin-top: 3px; color: var(--tb-muted); font-size: 10px; }
.tb-hero-visual {
	position: relative;
	z-index: 2;
	height: 520px;
	border-radius: 38px;
	isolation: isolate;
}
.tb-hero-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: 34px;
	background: linear-gradient(to bottom, rgba(9,9,10,.96) 0%, rgba(9,9,10,.15) 23%, transparent 42%);
	pointer-events: none;
}
.tb-hero-visual::after {
	content: "";
	position: absolute;
	inset: 14% 10% 4%;
	z-index: -1;
	border-radius: 40%;
	background: radial-gradient(circle at 55% 46%, rgba(239,43,51,.42), rgba(255,101,52,.14) 45%, transparent 72%);
	filter: blur(30px);
	animation: tbGlow 5s ease-in-out infinite;
}
.tb-hero-visual .hero-mascot {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: 62% center !important;
	border-radius: 34px !important;
	-webkit-mask-image: radial-gradient(ellipse 88% 86% at 64% 52%, #000 62%, transparent 100%);
	mask-image: radial-gradient(ellipse 88% 86% at 64% 52%, #000 62%, transparent 100%);
}
.tb-floating-card {
	position: absolute;
	z-index: 3;
	display: flex;
	flex-direction: column;
	min-width: 128px;
	padding: 11px 14px;
	border: 1px solid var(--tb-border);
	border-radius: 15px;
	background: rgba(18,18,20,.78);
	backdrop-filter: blur(18px);
	box-shadow: 0 18px 40px -20px #000;
	animation: tbFloat 4.5s ease-in-out infinite;
}
.tb-floating-card b { color: #fff; font-size: 18px; line-height: 1.1; }
.tb-floating-card small { color: var(--tb-muted); font-size: 10px; margin-top: 4px; }
.tb-card-followers { left: -12px; top: 80px; }
.tb-card-views { left: 8px; bottom: 80px; animation-duration: 5.2s; }
.tb-card-likes { right: -8px; bottom: 42px; animation-delay: -1.5s; }
.tb-heart {
	position: absolute;
	z-index: 4;
	color: #ff4651;
	font-style: normal;
	text-shadow: 0 8px 24px rgba(239,43,51,.8);
	animation: tbRise 3.4s ease-in-out infinite;
}
.tb-heart-one { right: 18%; top: 8%; font-size: 28px; }
.tb-heart-two { left: 27%; top: 34%; font-size: 17px; animation-delay: -1s; }
.tb-heart-three { right: 8%; top: 45%; font-size: 20px; animation-delay: -2s; }
.tb-quick-order { position: relative; z-index: 4; margin-top: 26px; }
.tb-quick-order .order-card {
	width: 100%;
	display: grid;
	grid-template-columns: 1.1fr auto 2fr auto auto;
	align-items: center;
	gap: 18px;
	padding: 17px 18px !important;
	border: 1px solid var(--tb-border) !important;
	border-radius: 20px !important;
	background: rgba(20,20,22,.72) !important;
	backdrop-filter: blur(22px);
	box-shadow: var(--tb-shadow) !important;
}
.tb-quick-order .order-card-head { min-width: 180px; }
.tb-quick-order .order-card-head span { color: #ff686f !important; }
.tb-quick-order .order-card-head strong { color: #fff !important; }
.tb-quick-order .order-steps,
.tb-quick-order .order-card > label,
.tb-quick-order .order-note,
.tb-quick-order .hero-order-query { display: none !important; }
.tb-quick-order .platform-select-grid {
	display: grid !important;
	grid-template-columns: repeat(6, minmax(70px, 1fr)) !important;
	gap: 7px !important;
}
.tb-quick-order .platform-option {
	min-height: 66px;
	padding: 6px !important;
	border: 1px solid var(--tb-border) !important;
	border-radius: 13px !important;
	background: rgba(255,255,255,.035) !important;
	color: var(--tb-muted) !important;
}
.tb-quick-order .platform-option.active {
	border-color: rgba(239,43,51,.7) !important;
	background: rgba(239,43,51,.12) !important;
	color: #fff !important;
}
.tb-quick-order .platform-option .platform-art { width: 32px !important; height: 32px !important; }
.tb-quick-order .platform-option .platform-3d-icon { width: 32px !important; height: 32px !important; }
.tb-quick-order .button-block { width: auto !important; min-width: 120px; margin: 0 !important; background: var(--tb-gradient) !important; border-radius: 12px !important; }

.platform-marquee {
	border-top: 1px solid var(--tb-border) !important;
	border-bottom: 1px solid var(--tb-border) !important;
	background: #0e0e10 !important;
}
.platform-marquee-track { animation-duration: 28s !important; }
.platform-marquee a { color: rgba(255,255,255,.7) !important; }
.platform-marquee .platform-3d-icon { filter: drop-shadow(0 8px 12px rgba(0,0,0,.35)); }

.home-main .section,
.testimonial-section {
	position: relative;
	background: transparent !important;
	color: var(--tb-text);
	padding-top: 84px !important;
	padding-bottom: 84px !important;
}
.section-heading h2,
.testimonial-section h2 {
	color: #fff !important;
	font-size: clamp(32px, 4vw, 52px) !important;
	line-height: 1.08 !important;
	letter-spacing: -.04em !important;
}
.section-heading p { color: var(--tb-muted) !important; }
.text-link { color: #ff6269 !important; }
.platform-card,
.package-card,
.process-grid article,
.blog-card,
.testimonial-card,
.accordion-item {
	border: 1px solid var(--tb-border) !important;
	background: linear-gradient(155deg, rgba(255,255,255,.055), rgba(255,255,255,.018)) !important;
	box-shadow: none !important;
}
.platform-card,
.package-card,
.process-grid article,
.testimonial-card {
	transition: transform .25s ease, border-color .25s ease, background .25s ease !important;
}
.platform-card:hover,
.package-card:hover,
.process-grid article:hover,
.testimonial-card:hover {
	transform: translateY(-7px) !important;
	border-color: rgba(239,43,51,.45) !important;
	background: linear-gradient(155deg, rgba(239,43,51,.11), rgba(255,255,255,.025)) !important;
}
.platform-card strong,
.package-card h3,
.process-grid h3,
.blog-card h3,
.testimonial-card h3,
.accordion-item button { color: #fff !important; }
.platform-card small,
.package-card small,
.package-card p,
.package-card li,
.process-grid p,
.blog-card p,
.testimonial-card p,
.testimonial-card small,
.accordion-item p { color: var(--tb-muted) !important; }
.package-card .package-bottom strong { color: #fff !important; }
.package-card .package-bottom a,
.popular-label { background: var(--tb-gradient) !important; color: #fff !important; }
.process-showcase {
	border: 1px solid var(--tb-border) !important;
	background: #101012 !important;
	box-shadow: var(--tb-shadow) !important;
}
.process-showcase::after { background: linear-gradient(90deg, rgba(9,9,10,.98), rgba(9,9,10,.3), transparent) !important; }
.process-showcase-copy span { color: #ff666e !important; }
.process-showcase-copy strong { color: #fff !important; }
.process-showcase-copy a { background: var(--tb-gradient) !important; }
.testimonial-summary {
	border: 1px solid var(--tb-border) !important;
	background: linear-gradient(145deg, #ef2b33, #8f1016) !important;
}
.testimonial-cards {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0,1fr)) !important;
	gap: 14px !important;
	overflow: visible !important;
}
.testimonial-stars { color: #ffb11b !important; }
.faq-section .accordion-item.open { border-color: rgba(239,43,51,.5) !important; }
.faq-section .accordion-item button span { color: #ff6269 !important; }

/* Ana sayfa SSS alanı: eski mint görsel katmanını yeni koyu marka diliyle değiştirir. */
.home-main .faq-section {
	position: relative !important;
	isolation: isolate;
	min-height: 720px !important;
	overflow: hidden;
	border-top: 1px solid var(--tb-border) !important;
	background:
		radial-gradient(circle at 10% 70%, rgba(239,43,51,.16), transparent 32%),
		radial-gradient(circle at 90% 16%, rgba(255,101,52,.10), transparent 28%),
		linear-gradient(145deg, #09090a, #101012 58%, #0b0b0d) !important;
}
.home-main .faq-section::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: -1 !important;
	transform: none !important;
	opacity: 1 !important;
	background:
		linear-gradient(90deg, rgba(9,9,10,.04) 0%, rgba(9,9,10,.10) 43%, rgba(9,9,10,.76) 67%, #0b0b0d 100%),
		url('../images/faq/thinking-anime-character-dark.webp') left center / cover no-repeat !important;
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 7%, #000 93%, transparent 100%);
	mask-image: linear-gradient(to bottom, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.home-main .faq-section .faq-grid {
	position: relative;
	z-index: 2;
	align-items: center !important;
	gap: clamp(36px, 7vw, 86px) !important;
}
.home-main .faq-section .section-heading {
	margin-top: 255px !important;
	padding: clamp(24px, 4vw, 38px) !important;
	border: 1px solid var(--tb-border) !important;
	border-radius: 24px !important;
	background: rgba(20,20,23,.76) !important;
	backdrop-filter: blur(20px) saturate(130%) !important;
	box-shadow: 0 28px 70px -36px #000 !important;
}
.home-main .faq-section .section-heading h2 {
	margin-bottom: 16px !important;
	color: #fff !important;
	text-shadow: none !important;
}
.home-main .faq-section .section-heading p {
	color: #a8a8b2 !important;
	font-size: 15px;
	line-height: 1.75;
}
.home-main .faq-section .accordion {
	position: relative;
	display: grid;
	gap: 12px;
}
.home-main .faq-section .accordion-item {
	border: 1px solid var(--tb-border) !important;
	background: rgba(20,20,23,.88) !important;
	backdrop-filter: blur(18px) !important;
	box-shadow: 0 16px 45px -34px #000 !important;
}
.home-main .faq-section .accordion-item.open {
	border-color: rgba(239,43,51,.68) !important;
	background: linear-gradient(145deg, rgba(239,43,51,.11), rgba(20,20,23,.94)) !important;
	box-shadow: 0 0 0 3px rgba(239,43,51,.06), 0 22px 55px -38px #000 !important;
}
.home-main .faq-section .accordion-item button {
	color: #f8f8fa !important;
	font-size: 16px;
	line-height: 1.45;
}
.home-main .faq-section .accordion-item > div,
.home-main .faq-section .accordion-item p {
	color: #aaaab4 !important;
}
.home-main .faq-section .accordion-item button span {
	display: grid;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 9px;
	background: rgba(239,43,51,.11);
	color: #ff5c64 !important;
}

.footer-stats {
	border-top: 1px solid var(--tb-border) !important;
	border-bottom: 1px solid var(--tb-border) !important;
	background: #0d0d0f !important;
}
.footer-stat,
.footer-stat.featured,
.footer-stat.support { background: transparent !important; color: #fff !important; border-color: var(--tb-border) !important; }
.site-footer {
	position: relative;
	overflow: hidden;
	background: #09090a !important;
	color: var(--tb-text) !important;
}
.site-footer::before {
	content: "";
	position: absolute;
	width: 520px;
	height: 520px;
	left: -200px;
	bottom: -240px;
	background: radial-gradient(circle, rgba(239,43,51,.17), transparent 68%);
	pointer-events: none;
}
.site-footer h3, .site-footer strong { color: #fff !important; }
.site-footer a, .site-footer p, .site-footer small { color: var(--tb-muted) !important; }
.site-footer a:hover { color: #fff !important; }
.footer-brand .brand {
	width: max-content;
	min-width: 260px;
	height: 56px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.footer-brand .brand-wordmark { font-size: 27px; }
.footer-track-link {
	border-color: var(--tb-border) !important;
	background: rgba(255,255,255,.035) !important;
}
.footer-contact-wrap,
.footer-bottom { border-color: var(--tb-border) !important; }
.footer-contact-row a,
.footer-contact-row > div { border-color: var(--tb-border) !important; background: rgba(255,255,255,.025) !important; }

.tb-auth-modal {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: grid;
	place-items: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s;
}
.tb-auth-modal.open { opacity: 1; visibility: visible; }
.tb-auth-dialog{width:min(960px,calc(100% - 32px))!important;max-width:960px!important;min-height:620px;padding:36px calc(50% + 28px) 28px 34px!important;overflow:hidden!important}
.tb-auth-visual{position:absolute;inset:0 0 0 50%;display:flex;align-items:flex-end;background:linear-gradient(0deg,rgba(92,12,20,.82),rgba(12,9,10,.06) 65%),url('../images/auth/auth-community-anime.png') center/cover no-repeat}
.tb-auth-visual>div{width:100%;padding:42px 34px;color:#fff}.tb-auth-visual span{color:#ff6970;font-size:11px;font-weight:850;letter-spacing:.14em;text-transform:uppercase}.tb-auth-visual h2{margin:8px 0 8px;font-size:27px;line-height:1.12}.tb-auth-visual p{margin:0 0 15px;color:rgba(255,255,255,.78);font-size:12px}.tb-auth-visual ul{display:grid;gap:8px;margin:0;padding:0;list-style:none;font-size:12px}.tb-auth-visual li::before{content:"✓";display:inline-grid;width:20px;height:20px;margin-right:8px;place-items:center;border-radius:50%;background:rgba(255,255,255,.18)}
.services-showcase{position:relative;min-height:760px;overflow:hidden;background:#080809;color:#fff}.services-showcase-bg{position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,5,6,.97) 0%,rgba(5,5,6,.87) 52%,rgba(5,5,6,.44)),linear-gradient(0deg,#080809 0%,transparent 45%),url('../images/services/services-anime-bg.png') center/cover no-repeat}.services-showcase-content{position:relative;z-index:1;padding:64px 0 90px}.services-showcase-head{max-width:760px;margin:0 auto 48px;text-align:center}.services-showcase-head>span{color:#a5a5aa;font-size:11px}.services-showcase-head>span i{padding:0 9px;color:#ef2b33;font-style:normal}.services-showcase-head h1{margin:15px 0 12px;font-size:clamp(38px,5vw,58px);letter-spacing:-2.5px}.services-showcase-head h1 em{color:#ff454d;font-style:normal}.services-showcase-head>p{max-width:650px;margin:0 auto;color:#a0a0a6;font-size:14px}.services-stats{display:flex;justify-content:center;gap:78px;margin-top:30px}.services-stats b{display:grid;gap:1px}.services-stats strong{color:#ff454d;font-size:25px}.services-stats small{color:#929299;font-size:8px;letter-spacing:.05em;text-transform:uppercase}.services-card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;max-width:960px;margin:0 auto}.services-card{display:grid;grid-template-columns:46px minmax(0,1fr) auto;align-items:center;gap:12px;min-height:70px;padding:11px 14px;border:1px solid rgba(255,255,255,.13);border-radius:15px;background:rgba(20,18,19,.82);backdrop-filter:blur(10px);transition:.2s}.services-card:hover{transform:translateY(-3px);border-color:rgba(255,69,77,.5);background:rgba(29,22,23,.94)}.services-card>b{display:grid;width:42px;height:42px;place-items:center;border-radius:12px;background:var(--platform-color)}.services-card span{display:grid;min-width:0}.services-card strong{font-size:13px}.services-card small{overflow:hidden;color:#929298;font-size:9px;text-overflow:ellipsis;white-space:nowrap}.services-card>i{color:#b0b0b5;font-style:normal}
@media(max-width:900px){.tb-auth-dialog{max-width:540px!important;padding:28px!important}.tb-auth-visual{display:none}.services-card-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:560px){.services-showcase-content{padding:48px 0 70px}.services-showcase-head{margin-bottom:34px}.services-showcase-head h1{font-size:38px}.services-stats{gap:28px}.services-card-grid{grid-template-columns:1fr}.services-showcase-bg{background-position:66% center}}
.tb-auth-backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(0,0,0,.78);
	backdrop-filter: blur(10px);
}
.tb-auth-dialog {
	position: relative;
	width: min(500px, 100%);
	max-height: calc(100vh - 36px);
	overflow: auto;
	padding: 28px;
	border: 1px solid var(--tb-border);
	border-radius: 24px;
	background: rgba(19,19,21,.94);
	box-shadow: 0 38px 100px -30px #000;
	transform: translateY(18px) scale(.98);
	transition: transform .25s ease;
}
.tb-auth-modal.open .tb-auth-dialog { transform: translateY(0) scale(1); }
.tb-auth-close {
	position: absolute;
	right: 16px;
	top: 14px;
	width: 36px;
	height: 36px;
	border: 1px solid var(--tb-border);
	border-radius: 10px;
	background: rgba(255,255,255,.04);
	color: #fff;
	font-size: 22px;
	cursor: pointer;
}
.tb-auth-brand {
	width: max-content;
	min-width: 230px;
	height: 52px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	gap: 7px;
}
.tb-auth-brand .brand-wordmark { font-size: 23px; }
.tb-auth-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px;
	margin-bottom: 24px;
	padding: 5px;
	border-radius: 13px;
	background: rgba(255,255,255,.045);
}
.tb-auth-tabs button {
	padding: 10px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--tb-muted);
	font-weight: 800;
	cursor: pointer;
}
.tb-auth-tabs button[aria-selected="true"] { background: var(--tb-gradient); color: #fff; }
.tb-auth-panel { display: none; }
.tb-auth-panel.active { display: block; animation: tbFade .25s ease; }
.tb-auth-panel h2 { margin: 0; color: #fff; font-size: 29px; }
.tb-auth-panel > p { color: var(--tb-muted); }
.tb-auth-panel form { display: grid; gap: 15px; }
.tb-auth-panel label { display: grid; gap: 7px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 700; }
.tb-auth-panel input:not([type="checkbox"]) {
	width: 100%;
	height: 48px;
	padding: 0 14px;
	border: 1px solid var(--tb-border);
	border-radius: 12px;
	background: rgba(255,255,255,.035);
	color: #fff;
	outline: none;
}
.tb-auth-panel input:focus { border-color: var(--tb-red); box-shadow: 0 0 0 4px rgba(239,43,51,.1); }
.tb-auth-row { display: flex; justify-content: space-between; gap: 14px; font-size: 12px; }
.tb-auth-row label { display: flex; align-items: center; }
.tb-auth-row a { color: #ff646b; }
.tb-auth-panel .button { width: 100%; min-height: 50px; margin-top: 4px; background: var(--tb-gradient) !important; border-radius: 12px !important; }
.tb-auth-security { margin-top: 20px; color: var(--tb-muted); font-size: 11px; text-align: center; }
body.tb-modal-open { overflow: hidden; }
.tb-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .55s ease, transform .55s cubic-bezier(.2,.75,.25,1), border-color .25s ease, background .25s ease !important;
}
.tb-reveal.tb-in-view { opacity: 1; transform: translateY(0); }

/* İç sayfaları aynı cam ve koyu tasarım diline taşır. */
body:not(.home) .site-main,
body:not(.home) main {
	color: var(--tb-text);
}
body:not(.home) .site-main h1,
body:not(.home) .site-main h2,
body:not(.home) .site-main h3,
body:not(.home) main h1,
body:not(.home) main h2,
body:not(.home) main h3 { color: #fff !important; }
body:not(.home) .site-main p,
body:not(.home) main p { color: var(--tb-muted); }
body:not(.home) article,
body:not(.home) .catalog-card,
body:not(.home) .account-card,
body:not(.home) .checkout-card,
body:not(.home) .cart-card,
body:not(.home) .contact-card {
	border-color: var(--tb-border) !important;
	background: rgba(255,255,255,.035) !important;
	color: var(--tb-text) !important;
}
body:not(.home) input,
body:not(.home) select,
body:not(.home) textarea {
	border-color: var(--tb-border) !important;
	background: #141416 !important;
	color: #fff !important;
}
body:not(.home) .button { background: var(--tb-gradient) !important; }

/* İç sayfalarda kalan eski açık/yeşil yüzeyleri marka paletine çevirir. */
body:not(.home),
body:not(.home) .site-main,
body:not(.home) main,
.catalog-main,
.contact-main,
.tracking-main,
.faq-page-main,
.corporate-main,
.account-main,
.cart-page-main,
.checkout-main,
.order-success-main {
	background-color: #09090a !important;
	background-image:
		radial-gradient(circle at 82% 7%, rgba(239,43,51,.09), transparent 28%),
		radial-gradient(circle at 8% 58%, rgba(255,76,47,.055), transparent 24%) !important;
}
.site-main:not(.home-main)::before {
	top: 0 !important;
	height: 360px !important;
	background:
		radial-gradient(circle at 78% 0, rgba(239,43,51,.18), transparent 31%),
		linear-gradient(145deg, #111114, #09090a) !important;
}
.site-main:not(.home-main) > .site-container,
.site-main:not(.home-main).site-container {
	border-color: var(--tb-border) !important;
	background: linear-gradient(145deg, rgba(26,26,29,.94), rgba(14,14,16,.96)) !important;
	box-shadow: 0 30px 75px -45px #000 !important;
}
.catalog-hero,
.account-hero,
.contact-hero,
.tracking-hero,
.faq-page-hero,
.corporate-hero {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--tb-border) !important;
	background:
		radial-gradient(circle at 84% 8%, rgba(239,43,51,.24), transparent 30%),
		radial-gradient(circle at 10% 100%, rgba(255,76,47,.09), transparent 27%),
		linear-gradient(125deg, #171719, #09090a 70%) !important;
	color: #fff !important;
}
.catalog-hero::before,
.account-hero::before,
.contact-hero::before,
.tracking-hero::before,
.corporate-hero::before {
	content: "";
	position: absolute;
	right: -110px;
	top: -170px;
	width: 430px;
	height: 430px;
	border: 1px solid rgba(239,43,51,.15);
	border-radius: 50%;
	box-shadow: 0 0 0 55px rgba(239,43,51,.025), 0 0 0 110px rgba(239,43,51,.018);
	pointer-events: none;
}
.catalog-hero .site-container,
.account-hero .site-container,
.contact-hero .site-container,
.tracking-hero .site-container,
.corporate-hero .site-container { position: relative; z-index: 1; }
.catalog-hero h1,
.account-hero h1,
.contact-hero h1,
.tracking-hero h1,
.faq-page-hero h1,
.corporate-hero h1 { color: #fff !important; text-shadow: 0 10px 34px rgba(0,0,0,.26); }
.catalog-hero p,
.account-hero p,
.contact-hero p,
.tracking-hero p,
.faq-page-hero p,
.corporate-hero p,
.catalog-intro { color: #aaaab4 !important; }
.catalog-main > .section,
.account-main > .section,
.cart-page-main > .section,
.checkout-main > .section,
.contact-content,
.tracking-section,
.corporate-about,
.faq-help-section {
	background: transparent !important;
}
.packages-section,
.promo-section,
.process-section,
.blog-section {
	background-color: transparent !important;
}

/* Kartlar ve paneller */
.package-card,
.platform-card,
.blog-card,
.process-grid article,
.package-detail-card,
.purchase-card,
.account-sidebar,
.account-card,
.cart-items,
.cart-summary,
.empty-cart,
.checkout-form,
.checkout-summary,
.order-success-card,
.payment-card,
.tracking-card,
.tracking-help,
.tracking-result,
.contact-card,
.corporate-about aside,
.faq-help-card {
	border-color: var(--tb-border) !important;
	background: linear-gradient(145deg, rgba(29,29,32,.96), rgba(16,16,18,.98)) !important;
	color: var(--tb-text) !important;
	box-shadow: 0 24px 65px -42px #000 !important;
}
.package-card:hover,
.platform-card:hover,
.blog-card:hover,
.process-grid article:hover,
.contact-card:hover {
	border-color: rgba(239,43,51,.46) !important;
	box-shadow: 0 22px 55px -38px rgba(239,43,51,.55) !important;
}
.package-card h2,
.package-card h3,
.platform-card strong,
.blog-card h2,
.blog-card h3,
.process-grid h3,
.cart-item-copy h2,
.cart-summary strong,
.checkout-summary strong,
.order-success-card strong,
.payment-card strong,
.tracking-card strong,
.contact-card strong,
.corporate-about aside strong { color: #f7f7f9 !important; }
.package-card p,
.package-card li,
.blog-card p,
.blog-card small,
.process-grid p,
.feature-list,
.cart-item-copy span,
.cart-summary p,
.cart-summary small,
.checkout-summary small,
.contact-card small,
.corporate-about p,
.corporate-about aside small { color: #9999a3 !important; }
.package-card ul,
.feature-list,
.cart-item,
.cart-list-head,
.cart-summary .cart-total,
.checkout-summary-item,
.info-row,
.corporate-card a,
.corporate-about aside p,
.orders-row,
.order-detail-meta,
.customer-order-history {
	border-color: var(--tb-border) !important;
}
.package-bottom button,
.cart-remove {
	background: rgba(239,43,51,.12) !important;
	color: #ff646b !important;
}
.popular-label,
.success-icon,
.account-avatar,
.contact-heading-icon,
.faq-hero-icon {
	background: var(--tb-gradient) !important;
	color: #fff !important;
	box-shadow: 0 15px 35px rgba(239,43,51,.22) !important;
}
.purchase-card p,
.order-number,
.bank-details,
.tracking-meta,
.orders-head,
.payment-methods > label > span {
	border-color: var(--tb-border) !important;
	background: rgba(255,255,255,.035) !important;
	color: var(--tb-muted) !important;
}
.payment-methods > label > input:checked + span {
	border-color: var(--tb-red) !important;
	background: rgba(239,43,51,.09) !important;
	box-shadow: 0 0 0 3px rgba(239,43,51,.08) !important;
}
.payment-methods i { background: #2a1215 !important; }
.checkout-consent a,
.catalog-back,
.account-back,
.continue-shopping,
.orders-row > a,
.blog-card a,
.entry-content a { color: #ff646b !important; }
.entry-content,
.entry-content p,
.entry-content li { color: #b0b0b8 !important; }

/* Formlar */
body:not(.home) label,
.checkout-fields label span,
.profile-form label span { color: #d7d7dc !important; }
body:not(.home) input::placeholder,
body:not(.home) textarea::placeholder { color: #777780 !important; }
.contact-form label:not(.contact-honeypot) {
	border-color: var(--tb-border) !important;
	background: rgba(255,255,255,.035) !important;
}
.contact-form label > span {
	border-color: var(--tb-border) !important;
	color: #868691 !important;
}
.contact-form input,
.contact-form textarea { background: transparent !important; color: #fff !important; }
.contact-form label:focus-within,
.checkout-fields input:focus,
.profile-form input:focus {
	border-color: var(--tb-red) !important;
	box-shadow: 0 0 0 3px rgba(239,43,51,.11) !important;
}
.contact-form-card h2,
.info-row strong,
.corporate-card a span { color: #f1f1f4 !important; }

/* Sayfaya özel vurgu alanları */
.faq-dark-section {
	background:
		radial-gradient(circle at 50% 0, rgba(239,43,51,.09), transparent 36%),
		#0c0c0e !important;
}
.faq-page-hero::after { color: rgba(239,43,51,.07) !important; }
.faq-page-item {
	border-color: var(--tb-border) !important;
	background: rgba(255,255,255,.035) !important;
}
.faq-page-item:hover,
.faq-page-item.open {
	border-color: rgba(239,43,51,.55) !important;
	background: rgba(239,43,51,.08) !important;
}
.faq-page-item button i {
	border-color: rgba(239,43,51,.45) !important;
	background: rgba(239,43,51,.12) !important;
	color: #ff646b !important;
}
.faq-page-item.open button i { background: var(--tb-red) !important; color: #fff !important; }
.faq-page-item > div { color: #aaaab4 !important; }
.corporate-card-grid {
	border-color: var(--tb-border) !important;
	background: linear-gradient(145deg, #1b1b1e, #111113) !important;
	box-shadow: 0 22px 60px -40px #000 !important;
}
.corporate-card-grid a {
	border-color: var(--tb-border) !important;
	background: rgba(255,255,255,.035) !important;
}
.corporate-card-grid a:hover { border-color: rgba(239,43,51,.5) !important; background: rgba(239,43,51,.08) !important; }
.corporate-card-grid i { background: var(--tb-gradient) !important; }
.corporate-card-grid span { color: #ff646b !important; }
.account-sidebar nav,
.customer-order-history article { border-color: var(--tb-border) !important; }
.account-sidebar nav a { color: #aaaab4 !important; }
.account-sidebar nav a.active,
.account-sidebar nav a:hover { background: rgba(239,43,51,.11) !important; color: #ff646b !important; }
.account-card-head > span { background: rgba(239,43,51,.1) !important; color: #ff646b !important; }
.order-detail-meta strong { color: #fff !important; }
.customer-order-history article > i { background: var(--tb-red) !important; box-shadow: 0 0 0 4px #19191c !important; }
.cart-message-error,
.profile-message.error { background: rgba(239,43,51,.12) !important; color: #ff7b81 !important; }
.profile-message.success { background: rgba(45,190,91,.12) !important; color: #72dc94 !important; }
.status-pending { background: rgba(245,181,53,.13) !important; color: #f0c565 !important; }
.status-processing { background: rgba(59,130,246,.13) !important; color: #7eb2ff !important; }
.status-completed { background: rgba(45,190,91,.13) !important; color: #72dc94 !important; }
.status-cancelled { background: rgba(239,43,51,.13) !important; color: #ff7b81 !important; }
.order-success-main { background-image: radial-gradient(circle at 50% 25%, rgba(239,43,51,.15), transparent 32%) !important; }

@media (max-width: 700px) {
	.site-main:not(.home-main) > .site-container,
	.site-main:not(.home-main).site-container { padding: 24px !important; }
	.catalog-hero,
	.account-hero,
	.contact-hero,
	.tracking-hero,
	.faq-page-hero,
	.corporate-hero { background-position: center !important; }
}

@keyframes tbFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}
@keyframes tbRise {
	0%, 100% { transform: translateY(8px) scale(.85); opacity: .45; }
	50% { transform: translateY(-12px) scale(1.08); opacity: 1; }
}
@keyframes tbGlow {
	0%, 100% { opacity: .58; transform: scale(.96); }
	50% { opacity: 1; transform: scale(1.05); }
}
@keyframes tbFade {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
	.tb-desktop-nav { display: none; }
	.tb-header-actions { margin-left: auto; }
	.tb-mobile-toggle { display: inline-flex !important; }
	.tb-login-link { display: none; }
	.tb-mobile-menu {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 220;
		display: flex;
		flex-direction: column;
		width: min(390px, 92vw);
		height: 100vh;
		padding: 20px;
		border-left: 1px solid var(--tb-border);
		background: rgba(14,14,16,.97);
		backdrop-filter: blur(26px);
		box-shadow: -24px 0 70px -30px #000;
		transform: translateX(105%);
		transition: transform .28s cubic-bezier(.22,.8,.28,1);
	}
	.tb-mobile-menu.open { transform: translateX(0); }
	.tb-mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; color: #fff; font-size: 20px; }
	.tb-mobile-close { width: 38px; height: 38px; border: 1px solid var(--tb-border); border-radius: 10px; background: rgba(255,255,255,.04); color: #fff; font-size: 23px; }
	.tb-mobile-menu > a { display: flex; justify-content: space-between; padding: 15px 4px; border-bottom: 1px solid var(--tb-border); color: #fff; font-weight: 750; text-decoration: none; }
	.tb-mobile-menu > a span { color: var(--tb-red); }
	.tb-mobile-auth { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
	.tb-mobile-auth button { min-height: 46px; border: 1px solid var(--tb-border); border-radius: 12px; background: rgba(255,255,255,.04); color: #fff; font-weight: 800; }
	.tb-mobile-auth button:last-child { border: 0; background: var(--tb-gradient); }
	.tb-hero-grid { grid-template-columns: 1fr 420px; }
	.tb-quick-order .order-card { grid-template-columns: 1fr; }
	.tb-quick-order .platform-select-grid { grid-template-columns: repeat(6, 1fr) !important; }
}

@media (max-width: 820px) {
	.tb-announcement p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
	.tb-announcement nav a:not(:last-child) { display: none; }
	.tb-header { min-height: 64px; }
	.tb-header-inner { min-height: 64px; }
	.tb-brand { min-width: 220px; height: 46px; }
	.tb-brand .brand-wordmark { font-size: 22px; }
	.tb-brand .brand-symbol,
	.tb-brand .brand-logo { width: 48px; height: 42px; flex-basis: 48px; }
	.tb-icon-button, .tb-login-link, .tb-register-button { display: none !important; }
	.tb-hero { padding-top: 44px; }
	.tb-hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 28px; }
	.tb-hero-copy { text-align: center; margin: 0 auto; }
	.tb-hero .eyebrow { margin-inline: auto; }
	.tb-hero h1 { font-size: clamp(40px, 13vw, 62px) !important; }
	.tb-hero-copy > p { font-size: 16px !important; }
	.tb-hero-actions, .tb-hero-trust { justify-content: center; }
	.tb-proof-row { max-width: 520px; margin-inline: auto; }
	.tb-hero-visual { height: 430px; max-width: 560px; margin: 0 auto; }
	.tb-card-followers { left: 5px; }
	.tb-card-likes { right: 5px; }
	.tb-quick-order { margin-top: 0; }
	.tb-quick-order .order-card { padding: 18px !important; }
	.tb-quick-order .platform-select-grid { grid-template-columns: repeat(3, 1fr) !important; }
	.testimonial-cards { grid-template-columns: repeat(2, 1fr) !important; }
	.home-main .faq-section {
		min-height: auto !important;
		padding-top: 330px !important;
	}
	.home-main .faq-section::before {
		background:
			linear-gradient(to bottom, rgba(9,9,10,.03) 0%, rgba(9,9,10,.10) 48%, #09090a 78%),
			url('../images/faq/thinking-anime-character-dark.webp') 30% top / auto 430px no-repeat !important;
		-webkit-mask-image: none;
		mask-image: none;
	}
	.home-main .faq-section .section-heading {
		margin-top: 0 !important;
		background: rgba(20,20,23,.88) !important;
	}
}

@media (max-width: 560px) {
	.site-container { width: min(100% - 24px, 1152px); }
	.tb-announcement { font-size: 11px; }
	.tb-announcement nav { display: none; }
	.tb-brand { min-width: 168px; gap: 4px; }
	.tb-brand .brand-wordmark { font-size: 17px; letter-spacing: -.8px; }
	.tb-brand .brand-symbol,
	.tb-brand .brand-logo { width: 43px; height: 38px; flex-basis: 43px; }
	.tb-cart { width: 38px; height: 38px; }
	.tb-hero { padding-top: 34px; }
	.tb-hero h1 { letter-spacing: -.045em !important; }
	.tb-hero-actions { flex-direction: column; }
	.tb-hero .hero-button { width: 100%; justify-content: center; }
	.tb-hero-trust { flex-wrap: wrap; }
	.tb-proof-row { grid-template-columns: 1fr; }
	.tb-proof-row span { display: flex; align-items: center; justify-content: space-between; }
	.tb-proof-row small { margin: 0; }
	.tb-hero-visual { height: 360px; }
	.tb-floating-card { min-width: 105px; padding: 9px 10px; }
	.tb-floating-card b { font-size: 15px; }
	.tb-card-views { bottom: 50px; }
	.tb-quick-order .platform-select-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.home-main .section, .testimonial-section { padding-top: 58px !important; padding-bottom: 58px !important; }
	.testimonial-cards { grid-template-columns: 1fr !important; }
	.tb-auth-dialog { padding: 22px 18px; border-radius: 20px; }
	.footer-stats-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Homepage order journey */
.platform-section-heading{max-width:820px;margin:0 auto 44px;text-align:center}
.platform-section-heading>span{display:flex;align-items:center;justify-content:center;gap:12px;color:#ff5960;font-size:12px;font-weight:800;letter-spacing:.22em;text-transform:uppercase}
.platform-section-heading>span i{display:block;width:30px;height:1px;background:linear-gradient(90deg,transparent,#ef2b33)}
.platform-section-heading>span i:last-child{transform:scaleX(-1)}
.platform-section-heading h2{margin:14px 0 12px;color:#fff;font-size:clamp(32px,4vw,48px);line-height:1.12;letter-spacing:-1.8px}
.platform-section-heading h2 em{color:#ff454d;font-style:normal}
.platform-section-heading p{max-width:620px;margin:0 auto;color:#85858b;font-size:15px;line-height:1.65}
@media(max-width:560px){.platform-section-heading{margin-bottom:32px}.platform-section-heading h2{font-size:31px}.platform-section-heading p{font-size:13px}}

.order-journey{position:relative;overflow:hidden;padding:96px 0 104px;background:#09090a;color:#fff}
.order-journey::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 10% 54%,rgba(239,43,51,.12),transparent 25%),radial-gradient(circle at 67% 102%,rgba(239,43,51,.07),transparent 30%);pointer-events:none}
.order-journey-glow{position:absolute;top:-170px;left:50%;width:420px;height:260px;transform:translateX(-50%);border-radius:50%;background:rgba(239,43,51,.08);filter:blur(90px)}
.order-journey .site-container{position:relative;z-index:1}
.order-journey-heading{max-width:760px;margin:0 auto 50px;text-align:center}
.order-journey-heading>span{display:flex;align-items:center;justify-content:center;gap:12px;color:#ff5960;font-size:12px;font-weight:800;letter-spacing:.22em;text-transform:uppercase}
.order-journey-heading>span i{display:block;width:30px;height:1px;background:linear-gradient(90deg,transparent,#ef2b33)}
.order-journey-heading>span i:last-child{transform:scaleX(-1)}
.order-journey-heading h2{margin:15px 0 13px;color:#fff;font-size:clamp(32px,4vw,48px);font-style:normal;letter-spacing:-1.7px}
.order-journey-heading h2 em{color:#ff454d;font-style:normal}
.order-journey-heading p{margin:0;color:#88898f;font-size:15px}
.order-journey-layout{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);align-items:center;gap:42px;max-width:1080px;margin:0 auto}
.order-journey-visual{position:relative;overflow:hidden;margin:0;border:1px solid rgba(255,255,255,.12);border-radius:28px;background:#161618;box-shadow:0 28px 80px rgba(0,0,0,.42)}
.order-journey-visual::after{content:"";position:absolute;inset:auto 0 0;height:35%;background:linear-gradient(transparent,rgba(4,4,5,.45));pointer-events:none}
.order-journey-visual>img{display:block;width:100%;aspect-ratio:1.24/1;object-fit:cover;object-position:center}
.order-journey-visual figcaption{position:absolute;z-index:2;bottom:14px;left:18px;display:flex;align-items:center;gap:10px;padding:10px 14px;border:1px solid rgba(255,255,255,.18);border-radius:15px;background:rgba(15,15,17,.78);box-shadow:0 10px 30px rgba(0,0,0,.35);backdrop-filter:blur(12px)}
.order-journey-visual figcaption>b{display:grid;width:34px;height:34px;place-items:center;border-radius:10px;background:linear-gradient(135deg,#ff4050,#ef2b33);font-size:16px}
.order-journey-visual figcaption span{display:grid;gap:2px}.order-journey-visual figcaption strong{font-size:12px}.order-journey-visual figcaption small{color:#a4a4a9;font-size:10px}
.order-journey-steps ol{position:relative;display:grid;gap:0;margin:0;padding:0;list-style:none}
.order-journey-steps ol::before{content:"";position:absolute;top:23px;bottom:23px;left:22px;width:1px;background:linear-gradient(#ef2b33,rgba(239,43,51,.18))}
.order-journey-steps li{position:relative;display:grid;grid-template-columns:45px 1fr;gap:16px;min-height:78px}
.order-journey-steps li>b{position:relative;z-index:1;display:grid;width:45px;height:45px;place-items:center;border-radius:50%;background:linear-gradient(135deg,#ff5360,#ef2b33);box-shadow:0 7px 22px rgba(239,43,51,.2);font-size:13px}
.order-journey-steps li>div{padding:3px 0 18px}.order-journey-steps h3{display:flex;align-items:center;gap:9px;margin:0 0 7px;color:#f4f4f5;font-size:15px}.order-journey-steps h3 span{color:#ff4b53;font-size:19px;font-weight:400}
.order-journey-steps p{margin:0;color:#85858b;font-size:12.5px;line-height:1.55}
.order-journey-cta{display:inline-flex;align-items:center;gap:15px;margin-top:10px;padding:14px 24px;border-radius:999px;background:linear-gradient(100deg,#ff3d55,#ff4438);box-shadow:0 13px 32px rgba(239,43,51,.28);color:#fff;font-size:13px;font-weight:800;transition:transform .2s ease,box-shadow .2s ease}
.order-journey-cta:hover{transform:translateY(-2px);box-shadow:0 16px 38px rgba(239,43,51,.4);color:#fff}.order-journey-cta span{font-size:20px;font-weight:400}
@media(max-width:900px){.order-journey{padding:76px 0 84px}.order-journey-layout{grid-template-columns:1fr;max-width:660px}.order-journey-heading{margin-bottom:38px}.order-journey-visual>img{aspect-ratio:16/10}.order-journey-steps{max-width:560px;margin:0 auto;width:100%}}
@media(max-width:560px){.order-journey{padding:64px 0 70px}.order-journey-heading{margin-bottom:30px}.order-journey-heading h2{font-size:32px}.order-journey-heading p{font-size:13px;line-height:1.6}.order-journey-layout{gap:30px}.order-journey-visual{border-radius:20px}.order-journey-visual>img{aspect-ratio:1/1;object-position:center}.order-journey-visual figcaption{bottom:10px;left:10px}.order-journey-steps li{grid-template-columns:41px 1fr;gap:13px;min-height:86px}.order-journey-steps li>b{width:41px;height:41px}.order-journey-steps ol::before{left:20px}.order-journey-cta{width:100%;justify-content:center}}

/* Auth modal final layout overrides */
.tb-auth-modal .tb-auth-dialog{display:grid!important;grid-template-columns:minmax(0,1fr)!important;grid-template-rows:auto auto 1fr auto!important;width:min(780px,calc(100vw - 32px))!important;max-width:780px!important;min-height:620px!important;max-height:calc(100vh - 24px)!important;padding:28px calc(50% + 28px) 22px 22px!important;overflow:auto!important;border-radius:0!important}
.tb-auth-modal .tb-auth-brand,.tb-auth-modal .tb-auth-tabs,.tb-auth-modal .tb-auth-panel,.tb-auth-modal .tb-auth-security{grid-column:1;min-width:0;width:100%}
.tb-auth-modal .tb-auth-brand{justify-content:flex-start;height:34px;margin:0 0 14px}.tb-auth-modal .tb-auth-brand .brand-wordmark{font-size:17px}.tb-auth-modal .tb-auth-tabs{grid-row:2;margin-bottom:18px;padding:3px;border:1px solid #343438;border-radius:999px;background:#080809}.tb-auth-modal .tb-auth-tabs button{min-height:34px;padding:7px;border-radius:999px;font-size:11px}.tb-auth-modal .tb-auth-panel{grid-row:3}.tb-auth-modal .tb-auth-security{grid-row:4;margin-top:13px}.tb-auth-modal .tb-auth-panel h2{font-size:20px;line-height:1.18}.tb-auth-modal .tb-auth-panel>p{margin:4px 0 16px;font-size:11px;line-height:1.5}.tb-auth-modal .tb-auth-panel form{gap:10px}.tb-auth-modal .tb-auth-panel label{gap:5px!important;font-size:10px!important}.tb-auth-modal .tb-auth-panel label,.tb-auth-modal .tb-auth-panel input,.tb-auth-modal .tb-auth-row{min-width:0}.tb-auth-modal .tb-auth-panel input:not([type="checkbox"]){height:36px;padding:0 11px;border-radius:9px;font-size:11px}.tb-auth-modal .tb-auth-row{font-size:10px}.tb-auth-modal .tb-auth-panel .button{min-height:38px!important;border-radius:9px!important;font-size:11px}.tb-auth-modal .tb-auth-visual{z-index:0;inset:0 0 0 50%}.tb-auth-modal .tb-auth-visual>div{padding:28px 26px}.tb-auth-modal .tb-auth-visual h2{font-size:21px}.tb-auth-modal .tb-auth-visual p,.tb-auth-modal .tb-auth-visual ul{font-size:10px}.tb-auth-modal .tb-auth-close{z-index:3;top:10px;right:10px;width:28px;height:28px;border:0;background:transparent;color:#aaa;font-size:18px}
/* Same anime atmosphere on every platform category */
body.single-ps_platform .catalog-main{position:relative;overflow:hidden;background:#080809;color:#fff}
body.single-ps_platform .catalog-main::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,5,6,.96),rgba(5,5,6,.85) 52%,rgba(5,5,6,.48)),linear-gradient(0deg,#080809 12%,transparent 60%),url('../images/services/services-anime-bg.png') center top/cover no-repeat;opacity:1;pointer-events:none}
body.single-ps_platform .catalog-main>.catalog-hero,body.single-ps_platform .catalog-main>.section{position:relative;z-index:1;background:transparent!important}
body.single-ps_platform .catalog-main>.catalog-hero::before{display:none}body.single-ps_platform .catalog-hero h1{color:#fff}body.single-ps_platform .catalog-hero .catalog-intro,body.single-ps_platform .catalog-hero p{color:#aaaab0}body.single-ps_platform .catalog-package-grid .package-card{border-color:rgba(255,255,255,.13);background:rgba(18,18,20,.9);color:#f5f5f6;backdrop-filter:blur(10px)}body.single-ps_platform .catalog-package-grid .package-card p{color:#95959b}body.single-ps_platform .catalog-package-grid .package-bottom{border-color:#303034}
@media(max-width:900px){.tb-auth-modal .tb-auth-dialog{display:block!important;width:min(540px,calc(100vw - 28px))!important;min-height:0!important;padding:26px!important}.tb-auth-modal .tb-auth-visual{display:none!important}}
.tb-password-meter{display:grid;grid-template-columns:repeat(4,1fr);gap:5px;margin-top:-6px}.tb-password-meter i{height:3px;border-radius:5px;background:#3b3b40}.tb-password-label{margin-top:-8px;color:#8d8d94;font-size:9px}.tb-auth-modal .tb-terms{display:flex!important;align-items:flex-start;grid-template-columns:auto 1fr!important;gap:8px!important;color:#9d9da4!important;font-weight:500!important;line-height:1.45}.tb-auth-modal .tb-terms input{margin:2px 0 0;flex:0 0 auto}
.tb-auth-modal .tb-auth-dialog,.tb-auth-modal .tb-auth-dialog *{word-break:normal!important;overflow-wrap:normal!important}.tb-auth-modal .tb-auth-tabs button,.tb-auth-modal .tb-auth-panel h2,.tb-auth-modal .tb-auth-panel label:not(.tb-terms),.tb-auth-modal .tb-auth-row a,.tb-auth-modal .tb-auth-security{white-space:nowrap!important}.tb-auth-modal .tb-auth-panel>p{width:100%;max-width:none!important;white-space:normal!important}.tb-auth-modal .tb-auth-panel form,.tb-auth-modal .tb-auth-panel,.tb-auth-modal .tb-auth-tabs{max-width:none!important}.tb-auth-modal .tb-auth-row{align-items:center;flex-wrap:nowrap!important}.tb-auth-modal .tb-auth-row label{display:flex!important;grid-template-columns:auto 1fr!important;white-space:nowrap!important}
@media(max-width:420px){.tb-auth-modal .tb-auth-panel h2{white-space:normal!important}.tb-auth-modal .tb-auth-row{align-items:flex-start;flex-direction:column}.tb-auth-modal .tb-auth-row a{white-space:normal!important}}
.tb-auth-modal .tb-auth-panel.active{display:grid!important;grid-template-columns:max-content minmax(0,1fr);align-items:baseline;column-gap:12px;row-gap:12px}.tb-auth-modal .tb-auth-panel.active>h2{grid-column:1;margin:0!important;white-space:nowrap!important}.tb-auth-modal .tb-auth-panel.active>p{grid-column:2;margin:0!important;min-width:0;color:#929299;font-size:10px!important;line-height:1.4!important;white-space:normal!important}.tb-auth-modal .tb-auth-panel.active>form{grid-column:1/-1;width:100%}.tb-auth-modal .tb-auth-row{display:grid!important;grid-template-columns:minmax(0,1fr) max-content!important;width:100%;gap:12px!important}.tb-auth-modal .tb-auth-row>label{width:max-content!important;min-width:max-content!important;margin:0!important}.tb-auth-modal .tb-auth-row>a{justify-self:end;margin:0!important}.tb-auth-modal .tb-auth-row input[type="checkbox"]{width:auto!important;min-width:0!important;flex:0 0 auto}
@media(max-width:520px){.tb-auth-modal .tb-auth-panel.active{grid-template-columns:1fr}.tb-auth-modal .tb-auth-panel.active>h2,.tb-auth-modal .tb-auth-panel.active>p{grid-column:1}.tb-auth-modal .tb-auth-panel.active>p{margin-top:-7px!important}.tb-auth-modal .tb-auth-row{grid-template-columns:minmax(0,1fr) max-content!important}}
