:root {
	--bg: #08111f;
	--panel: rgba(9, 18, 33, 0.72);
	--panel-solid: #0f1b31;
	--panel-soft: #f5f7fb;
	--surface: rgba(255, 255, 255, 0.96);
	--surface-soft: #fbfcff;
	--text: #e8eefc;
	--text-dark: #1d293f;
	--heading: #0e1729;
	--muted: #91a0bc;
	--muted-dark: #5d6a82;
	--border: rgba(255, 255, 255, 0.12);
	--line: rgba(15, 23, 42, 0.08);
	--line-strong: rgba(15, 23, 42, 0.14);
	--brand: #fe2c55;
	--brand-dark: #d61c43;
	--brand-soft: #ffe6ec;
	--accent: #25f4ee;
	--accent-soft: rgba(37, 244, 238, 0.16);
	--header-bg: #ffffff;
	--header-text: #111827;
	--footer-bg: #071221;
	--footer-text: #c9d7ea;
	--body-text: #465468;
	--heading-text: #0b1220;
	--selection-bg: #fe2c55;
	--selection-text: #ffffff;
	--paragraph-size: 17px;
	--h1-size: 76px;
	--h2-size: 44px;
	--article-h1-size: 44px;
	--article-h2-size: 36px;
	--radius: 24px;
	--shadow: 0 24px 80px rgba(4, 8, 19, 0.32);
	--shadow-soft: 0 18px 52px rgba(8, 17, 31, 0.08);
	--shadow-card: 0 22px 64px rgba(7, 15, 28, 0.1);
	--content-width: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", system-ui, sans-serif;
	font-size: var(--paragraph-size);
	background:
		radial-gradient(circle at top left, rgba(37, 244, 238, 0.18), transparent 28%),
		radial-gradient(circle at top right, rgba(254, 44, 85, 0.18), transparent 30%),
		linear-gradient(180deg, #091120 0%, #101a31 24%, #142344 38%, #f5f7fb 38%, #edf3fb 100%);
	color: var(--body-text);
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

img {
	display: block;
	max-width: 100%;
}

::selection {
	background: var(--selection-bg);
	color: var(--selection-text);
}

:focus-visible {
	outline: 3px solid rgba(37, 244, 238, 0.42);
	outline-offset: 3px;
}

.site-main {
	position: relative;
}

.site-main > section {
	position: relative;
}

.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.site-main > section,
.site-footer__inner,
.site-footer__meta {
	width: min(calc(100% - 2rem), var(--content-width));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(18px);
	background: var(--header-bg);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 18px 44px rgba(4, 8, 19, 0.16);
}

.site-header__inner,
.site-footer__inner,
.site-footer__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-header__inner {
	width: min(calc(100% - 2rem), var(--content-width));
	margin: 0 auto;
	padding: 1rem 0 0.95rem;
}

.site-branding {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	color: var(--header-text);
	font-weight: 700;
}

.site-branding:hover .site-branding__badge,
.site-branding:hover .custom-logo,
.site-branding:focus .site-branding__badge,
.site-branding:focus .custom-logo {
	transform: translateY(-1px);
}

.site-branding__badge {
	width: 2.5rem;
	height: 2.5rem;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--brand) 0%, #ff7b9a 100%);
	box-shadow: 0 12px 32px rgba(254, 44, 85, 0.35);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-nav__link {
	color: var(--header-text);
	font-size: 0.95rem;
	opacity: 0.88;
}

.site-nav__link:hover,
.site-nav__link:focus {
	opacity: 1;
}

.hero {
	padding: 5.5rem 0 2.5rem;
	color: var(--text);
}

.hero__inner,
.feature-strip__inner,
.legal,
.content-shell,
.downloader-shell,
.info-grid {
	width: min(calc(100% - 2rem), var(--content-width));
	margin: 0 auto;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.3fr 0.9fr;
	gap: 2.4rem;
	align-items: center;
}

.hero__copy {
	max-width: 42rem;
}

.eyebrow {
	display: inline-flex;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--accent);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero h1,
.section-heading h1,
.section-heading h2,
.feature-strip h2,
.legal h2 {
	margin: 1rem 0;
	line-height: 1.05;
}

.hero h1 {
	font-size: clamp(2.8rem, 5vw, 4.8rem);
	max-width: 12ch;
	letter-spacing: -0.04em;
}

.hero p,
.feature-strip span,
.legal p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--muted);
}

.hero__actions,
.result-card__actions,
.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.95rem 1.35rem;
	border-radius: 999px;
	font-weight: 700;
	border: 1px solid transparent;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus {
	transform: translateY(-2px);
}

.button--primary {
	background: linear-gradient(135deg, var(--brand) 0%, #ff6f90 100%);
	color: #fff;
	box-shadow: 0 18px 40px rgba(254, 44, 85, 0.28);
}

.button--primary:hover,
.button--primary:focus {
	box-shadow: 0 24px 52px rgba(254, 44, 85, 0.32);
}

.button--secondary {
	background: rgba(255, 255, 255, 0.09);
	color: var(--text);
	border: 1px solid var(--border);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-card,
.downloader-form,
.result-card,
.info-card,
.stat-card,
.content-card {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero-card {
	position: relative;
	padding: 2.15rem;
	background:
		radial-gradient(circle at top right, rgba(37, 244, 238, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(12, 24, 44, 0.96) 0%, rgba(16, 29, 55, 0.98) 100%);
	border: 1px solid var(--border);
	overflow: hidden;
}

.hero-card::after {
	content: "";
	position: absolute;
	inset: auto -8% -30% auto;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(254, 44, 85, 0.22), transparent 68%);
	pointer-events: none;
}

.hero-card__label {
	font-size: 0.9rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.hero-card__list {
	margin: 0;
	padding-left: 1.2rem;
	color: var(--muted);
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

.downloader-shell,
.info-grid,
.feature-strip,
.legal,
.content-shell {
	padding: 4.5rem 0;
}

.section-heading {
	max-width: 52rem;
	margin-bottom: 1.8rem;
}

.section-heading h1,
.section-heading h2,
.legal h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--heading);
	letter-spacing: -0.04em;
}

.section-heading p {
	max-width: 48rem;
	color: #65738f;
	line-height: 1.75;
}

.downloader-form {
	padding: 1.35rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
	border: 1px solid rgba(7, 15, 28, 0.08);
	box-shadow: var(--shadow-card);
}

.downloader-form__row {
	display: flex;
	gap: 0.85rem;
	align-items: stretch;
}

.downloader-form input[type="url"] {
	flex: 1;
	min-width: 0;
	border: 1px solid #d7ddea;
	border-radius: 18px;
	padding: 1rem 1.15rem;
	font: inherit;
	color: var(--text-dark);
	background: #fff;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
}

.downloader-form input[type="url"]:focus {
	outline: 2px solid rgba(37, 244, 238, 0.38);
	border-color: var(--accent);
}

.downloader-form input[type="url"]::placeholder {
	color: #94a0b8;
}

.downloader-form .button--primary {
	min-width: 168px;
}

.progress {
	position: relative;
	height: 0.85rem;
	margin-top: 1rem;
	border-radius: 999px;
	background: #ebeff7;
	overflow: hidden;
}

.progress__bar {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--accent), var(--brand));
	transition: width 0.25s ease;
}

.progress__label,
.form-status {
	display: block;
	margin-top: 0.9rem;
	font-size: 0.95rem;
	color: #5d6a82;
}

.form-status.is-error {
	color: #b42318;
}

.form-status.is-success {
	color: #027a48;
}

.result-area:empty {
	display: none;
}

.result-area {
	margin-top: 1.4rem;
}

.result-card {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 1.7rem;
	padding: 1.45rem;
	background: linear-gradient(180deg, #ffffff, #fbfcff);
	border: 1px solid rgba(7, 15, 28, 0.07);
	box-shadow: var(--shadow-card);
}

.result-card__media img,
.result-card__placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 20px;
	object-fit: cover;
}

.result-card__media img {
	box-shadow: 0 18px 48px rgba(8, 17, 31, 0.14);
}

.result-card__placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #edf2fb 0%, #dfe6f5 100%);
	color: #63708a;
	font-weight: 600;
}

.result-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding: 0;
	margin: 1rem 0 1.5rem;
	list-style: none;
}

.result-card__meta li {
	padding: 0.6rem 0.85rem;
	border-radius: 999px;
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-size: 0.9rem;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.info-grid__cards,
.feature-strip__stats,
.legal {
	display: grid;
	gap: 1rem;
}

.info-grid__cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-strip__stats {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 1.5rem;
}

.info-card,
.stat-card,
.content-card,
.legal__column {
	padding: 1.65rem;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	border: 1px solid rgba(7, 15, 28, 0.06);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover,
.stat-card:hover,
.post-card:hover,
.content-sidebar .widget:hover,
.site-footer__widgets .widget:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 56px rgba(8, 17, 31, 0.12);
	border-color: rgba(37, 244, 238, 0.18);
}

.info-card h3,
.stat-card strong {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 1.2rem;
	color: var(--text-dark);
}

.info-card p,
.stat-card span,
.content-card {
	color: #5d6a82;
	line-height: 1.7;
}

.feature-strip__inner {
	padding: 2.35rem;
	border-radius: 32px;
	background:
		radial-gradient(circle at top right, rgba(37, 244, 238, 0.14), transparent 28%),
		linear-gradient(135deg, #0c1730 0%, #111f3a 100%);
	color: var(--text);
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
	margin-top: 4rem;
	padding: 3.2rem 0 1.5rem;
	background:
		radial-gradient(circle at top left, rgba(37, 244, 238, 0.08), transparent 22%),
		var(--footer-bg);
	color: var(--footer-text);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner,
.site-footer__meta {
	padding: 0.9rem 0;
}

.site-footer p,
.site-footer__meta,
.site-footer__links a,
.site-footer a {
	color: var(--footer-text);
}

@media (max-width: 960px) {
	.hero__inner,
	.result-card,
	.feature-strip__stats,
	.info-grid__cards,
	.legal {
		grid-template-columns: 1fr;
	}

	.result-card__media img,
	.result-card__placeholder {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 720px) {
	.site-footer__inner,
	.site-footer__meta,
	.downloader-form__row {
		flex-direction: column;
		align-items: stretch;
	}

	.site-header__inner {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}

	.site-nav-panel {
		flex-basis: 100%;
	}

	.site-nav {
		flex-wrap: wrap;
	}

	.hero {
		padding-top: 3rem;
	}

	.hero h1 {
		max-width: none;
	}
}

body {
	font-family: var(--body-font, "Inter", system-ui, sans-serif);
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-branding__name,
.hero-card__label,
.post-card__title,
.page-hero h1 {
	font-family: var(--display-font, "Inter", system-ui, sans-serif);
}

.site-branding-wrap {
	display: flex;
	align-items: center;
}

.site-branding {
	gap: 1rem;
}

.site-branding .custom-logo-link {
	display: inline-flex;
}

.site-branding .custom-logo {
	width: 3rem;
	height: 3rem;
	border-radius: 18px;
	object-fit: cover;
}

.site-branding__copy {
	display: grid;
	gap: 0.15rem;
}

.site-branding__name {
	color: var(--header-text);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.site-branding__tagline {
	color: var(--muted);
	font-size: 0.9rem;
}

.site-nav-panel {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-nav__list,
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a,
.footer-menu a {
	color: inherit;
}

.site-nav__list a {
	display: inline-flex;
	align-items: center;
	padding: 0.6rem 0.9rem;
	border-radius: 999px;
	color: rgba(232, 238, 252, 0.86);
}

.site-nav__list a:hover,
.site-nav__list a:focus {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.language-switcher {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.language-switcher__flag {
	position: relative;
	flex: 0 0 1.35rem;
	width: 1.35rem;
	height: 0.9rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 0.18rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.language-switcher__flag--us {
	background: repeating-linear-gradient(180deg, #b22234 0 0.115rem, #fff 0.115rem 0.23rem);
}

.language-switcher__flag--us::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 0.58rem;
	height: 0.48rem;
	background: #3c3b6e;
	content: "";
}

.language-switcher__flag--es {
	background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.language-switcher__flag--pe {
	background: linear-gradient(90deg, #d91023 0 33%, #fff 33% 67%, #d91023 67%);
}

.language-switcher__flag--br {
	background: radial-gradient(circle, #002776 0 20%, #ffdf00 21% 48%, transparent 49%), #009c3b;
}

.language-switcher__flag--fr {
	background: linear-gradient(90deg, #0055a4 0 33%, #fff 33% 67%, #ef4135 67%);
}

.language-switcher__flag--de {
	background: linear-gradient(180deg, #111 0 33%, #dd0000 33% 67%, #ffce00 67%);
}

.language-switcher__flag--it {
	background: linear-gradient(90deg, #009246 0 33%, #fff 33% 67%, #ce2b37 67%);
}

.language-switcher__flag--id {
	background: linear-gradient(180deg, #ce1126 0 50%, #fff 50%);
}

.language-switcher__flag--ja {
	background: radial-gradient(circle, #bc002d 0 34%, transparent 36%), #fff;
}

.language-switcher__flag--cn {
	background: radial-gradient(circle at 25% 32%, #ffde00 0 13%, transparent 15%), #de2910;
}

.language-switcher__select,
.language-switcher__submit {
	min-height: 2.55rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: #fff;
	background: rgba(255, 255, 255, 0.07);
	font: inherit;
}

.language-switcher__select {
	max-width: 13.5rem;
	padding: 0.45rem 0.75rem;
	cursor: pointer;
}

.language-switcher__select option {
	color: #111827;
	background: #fff;
}

.language-switcher__submit {
	padding: 0.45rem 0.85rem;
	cursor: pointer;
}

.language-switcher.has-js .language-switcher__submit {
	display: none;
}

.language-switcher__select:hover,
.language-switcher__select:focus,
.language-switcher__submit:hover,
.language-switcher__submit:focus {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.12);
}

.footer-menu a {
	color: rgba(232, 238, 252, 0.74);
}

.footer-menu a:hover,
.footer-menu a:focus {
	color: #fff;
}

.site-nav-toggle {
	display: none;
	width: 3rem;
	height: 3rem;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: transparent;
	padding: 0.65rem;
	cursor: pointer;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	margin: 0.3rem 0;
}

.site-nav-toggle:hover,
.site-nav-toggle:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.24);
	transform: translateY(-1px);
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.social-link {
	padding: 0.5rem 0.85rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--text);
	font-size: 0.9rem;
	background: rgba(255, 255, 255, 0.04);
}

.social-link:hover,
.social-link:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.ad-slot {
	width: min(calc(100% - 2rem), var(--content-width));
	margin: 3rem auto;
}

.tikvid-ad {
	position: relative;
	min-height: 142px;
	padding: 1.35rem;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 16px;
	background: linear-gradient(180deg, #fbfcfe, #f7f9fc);
	box-shadow: 0 12px 34px rgba(15, 23, 42, .04);
	text-align: center;
	overflow: hidden;
}

.tikvid-ad__label {
	display: block;
	margin-bottom: .55rem;
	color: #8793a4;
	font-size: .65rem;
	font-weight: 750;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.tikvid-ad .adsbygoogle {
	min-height: 90px;
}

.ad-slot--home-after-download {
	margin-top: 4.5rem;
	margin-bottom: 4rem;
}

.ad-slot--home-middle,
.ad-slot--home-bottom {
	margin-top: 3.75rem;
	margin-bottom: 3.75rem;
}

.ad-slot--content-inline {
	width: 100%;
	margin: 3rem 0;
}

.ad-slot--sidebar {
	width: 100%;
	min-height: 290px;
	margin: 1.75rem 0 0;
}

.ad-slot--sidebar .adsbygoogle {
	min-height: 250px;
}

.ad-slot--before-footer {
	margin-top: 3.75rem;
	margin-bottom: 3.75rem;
}

.page-hero {
	padding: 3rem 0 1rem;
}

.page-hero--blog,
.page-hero--compact {
	width: min(calc(100% - 2rem), var(--content-width));
	margin: 0 auto;
}

.content-layout {
	width: min(calc(100% - 2rem), var(--content-width));
	margin: 0 auto;
	padding: 1.5rem 0 4.25rem;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 1.75rem;
}

.content-layout--page {
	grid-template-columns: minmax(0, 1fr) 320px;
}

.posts-feed,
.content-sidebar__widgets,
.article-card,
.content-card--empty {
	min-width: 0;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.post-card,
.article-card,
.content-sidebar .widget,
.search-form,
.site-footer__widgets .widget {
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	border: 1px solid rgba(7, 15, 28, 0.06);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.post-card {
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.post-card__thumb img,
.post-card__placeholder {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-card__placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #f0f4fb, #dfe9fa);
	color: #5f6b84;
	font-weight: 700;
}

.post-card__body {
	padding: 1.3rem 1.3rem 1.4rem;
}

.post-card__title {
	font-size: 1.35rem;
	line-height: 1.22;
	margin: 0.6rem 0 0.8rem;
	letter-spacing: -0.03em;
}

.post-card__title a:hover,
.post-card__title a:focus {
	color: var(--brand-dark);
}

.post-card__excerpt {
	color: #5d6a82;
	line-height: 1.75;
	margin-bottom: 1.1rem;
}

.button--ghost {
	background: #fff;
	color: var(--brand-dark);
	border: 1px solid rgba(254, 44, 85, 0.18);
	box-shadow: 0 10px 22px rgba(254, 44, 85, 0.08);
}

.button--ghost:hover,
.button--ghost:focus {
	border-color: rgba(254, 44, 85, 0.3);
	box-shadow: 0 14px 28px rgba(254, 44, 85, 0.12);
}

.button--disabled {
	background: #eef2f8;
	color: #667085;
	cursor: default;
}

.content-sidebar {
	display: grid;
	gap: 1.15rem;
	align-content: start;
}

.content-sidebar .widget,
.site-footer__widgets .widget {
	padding: 1.15rem 1.2rem;
}

.widget-title {
	margin-top: 0;
	margin-bottom: 0.9rem;
	font-size: 1.05rem;
	color: var(--heading);
}

.article-card {
	padding: 1.85rem;
}

.article-card__media img {
	width: 100%;
	border-radius: 20px;
	margin-bottom: 1.4rem;
	box-shadow: 0 18px 48px rgba(8, 17, 31, 0.12);
}

.article-card__content,
.article-card__content p,
.content-card--empty p {
	color: #4f5f7a;
	line-height: 1.85;
}

.article-card__content > *:first-child {
	margin-top: 0;
}

.article-card__content > *:last-child {
	margin-bottom: 0;
}

.article-card__content h2,
.article-card__content h3,
.article-card__content h4 {
	margin-top: 1.7em;
	margin-bottom: 0.7em;
	color: var(--heading);
	letter-spacing: -0.03em;
}

.article-card__content ul,
.article-card__content ol {
	padding-left: 1.3rem;
}

.article-card__content blockquote {
	margin: 1.6rem 0;
	padding: 1rem 1.2rem;
	border-left: 4px solid var(--brand);
	background: linear-gradient(180deg, #fff8fa 0%, #fff 100%);
	border-radius: 0 18px 18px 0;
	color: #44516a;
}

.article-card__content code {
	padding: 0.18rem 0.45rem;
	border-radius: 10px;
	background: #eef3fb;
	color: #18314f;
	font-size: 0.92em;
}

.article-card__content pre {
	padding: 1rem 1.1rem;
	border-radius: 18px;
	background: #0f172a;
	color: #e5ecff;
	overflow: auto;
}

.article-card__footer {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(7, 15, 28, 0.08);
}

.pagination-wrap,
.center-actions {
	margin-top: 1.5rem;
	display: flex;
	justify-content: center;
}

.search-form {
	padding: 1.1rem;
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	border: 1px solid #d7ddea;
	border-radius: 16px;
	padding: 0.9rem 1rem;
	font: inherit;
}

.search-field:focus {
	border-color: rgba(37, 244, 238, 0.7);
	box-shadow: 0 0 0 3px rgba(37, 244, 238, 0.14);
}

.search-submit {
	border: 0;
}

.site-footer__inner {
	align-items: start;
}

.site-footer__brand,
.site-footer__nav,
.site-footer__widgets {
	flex: 1;
}

.site-footer__title {
	display: block;
	margin-bottom: 0.65rem;
	font-size: 1.1rem;
	color: var(--footer-text);
}

.result-card__author,
.result-card__description,
.result-card__stats {
	color: #5d6a82;
}

.result-card__author {
	font-weight: 600;
	margin: 0.25rem 0 0.8rem;
}

.result-card__description {
	line-height: 1.75;
	margin-bottom: 1rem;
}

.result-card__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 1.2rem;
	font-size: 0.95rem;
}

.format-selector {
	margin: 1.6rem 0;
	padding: 1.15rem;
	border-radius: 24px;
	background: linear-gradient(180deg, #f8fbff 0%, #f4f8fe 100%);
	border: 1px solid rgba(7, 15, 28, 0.06);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.format-selector__heading {
	display: grid;
	gap: 0.35rem;
	margin-bottom: 1rem;
	color: #5d6a82;
}

.format-selector__heading strong {
	color: var(--text-dark);
	font-size: 1rem;
}

.format-selector__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
}

.format-chip {
	display: grid;
	gap: 0.3rem;
	padding: 1rem 1.05rem;
	border: 1px solid rgba(7, 15, 28, 0.08);
	border-radius: 20px;
	background: #fff;
	text-align: left;
	cursor: pointer;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.format-chip strong {
	font-size: 1rem;
	color: var(--text-dark);
}

.format-chip span {
	font-size: 0.9rem;
	color: #5d6a82;
}

.format-chip:hover,
.format-chip:focus,
.format-chip.is-active {
	transform: translateY(-2px);
	border-color: rgba(254, 44, 85, 0.32);
	box-shadow: 0 14px 32px rgba(254, 44, 85, 0.12);
}

.format-chip--no_watermark {
	background: linear-gradient(180deg, #ffffff 0%, #fdf4f7 100%);
}

.format-chip--watermarked {
	background: linear-gradient(180deg, #ffffff 0%, #f9f6ff 100%);
}

.format-chip--audio {
	background: linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
}

.format-chip:disabled {
	cursor: wait;
	opacity: 0.62;
}

.result-card__unavailable {
	margin: 1.25rem 0;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(7, 15, 28, 0.08);
	border-radius: 16px;
	background: #f8fbff;
}

.result-card__actions {
	margin-top: 1.1rem;
}

.result-card__source-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-height: 46px;
	padding: 0.75rem 1rem;
	border: 1px solid #d8dfeb;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(17, 26, 44, 0.07);
	color: #172033;
	font-weight: 750;
	text-decoration: none;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.result-card__source-link svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.result-card__source-link:hover,
.result-card__source-link:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(254, 44, 85, 0.42);
	box-shadow: 0 13px 30px rgba(254, 44, 85, 0.13);
	color: #dc183f;
}

.download-guard {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(7, 15, 28, 0.08);
}

.download-guard__message {
	margin: 0 0 0.85rem;
	color: #5d6a82;
}

.turnstile-box {
	min-height: 72px;
}

.turnstile-box--analyze {
	margin-top: 1rem;
}

.comments-area {
	width: min(1120px, calc(100% - 2rem));
	margin: 0 auto 4rem;
}

.comment-list {
	display: grid;
	gap: 1rem;
	padding-left: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

.entry-meta {
	color: #7b879d;
	font-size: 0.94rem;
}

.entry-meta time {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.72rem;
	border-radius: 999px;
	background: #f2f6fd;
	color: #48607c;
	font-weight: 600;
}

@media (max-width: 960px) {
	.content-layout,
	.posts-grid {
		grid-template-columns: 1fr;
	}

	.hero__inner {
		gap: 1.8rem;
	}

	.article-card {
		padding: 1.55rem;
	}
}

@media (max-width: 720px) {
	.site-nav-toggle {
		display: inline-block;
	}

	.site-nav-panel {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		padding: 1rem 0 0.2rem;
		margin-top: 0.85rem;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.site-nav-panel.is-open {
		display: flex;
	}

	.site-nav__list,
	.footer-menu {
		flex-direction: column;
		gap: 0.8rem;
	}

	.site-nav__list a {
		width: 100%;
		justify-content: center;
		background: rgba(255, 255, 255, 0.04);
	}

	.language-switcher {
		width: 100%;
	}

	.language-switcher__select {
		width: 100%;
		max-width: none;
	}

	.language-switcher__submit {
		flex: 0 0 auto;
	}

	.site-branding__tagline {
		display: none;
	}

	.result-card__stats {
		flex-direction: column;
		gap: 0.4rem;
	}

	.format-selector__grid {
		grid-template-columns: 1fr;
	}

	.result-card__source-link {
		width: 100%;
	}

	.hero {
		padding-top: 4rem;
	}

	.downloader-shell,
	.info-grid,
	.feature-strip,
	.legal,
	.content-shell {
		padding: 3.4rem 0;
	}

	.result-card,
	.article-card,
	.downloader-form,
	.info-card,
	.stat-card,
	.legal__column {
		padding: 1.15rem;
	}

	.post-card__body {
		padding: 1.15rem;
	}
}
