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

:root {
	--app-azure-primary: #0284c7;
	--app-azure-vibrant: #38bdf8;
	--app-azure-deep: #0369a1;
	--app-navy-dark: #0f172a;
	--app-surface-bg: #f8fafc;
	--app-surface-card: #ffffff;
	--app-text-main: #1e293b;
	--app-text-subtle: #64748b;
	--app-border-line: #e2e8f0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial,
		sans-serif;
	background: var(--app-surface-bg);
	color: var(--app-text-main);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.5;
	overflow-x: hidden;
}

img,
svg {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	background: none;
	border: none;
	cursor: pointer;
	font: inherit;
	color: inherit;
}

.app-shell-container {
	max-width: 880px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.app-top-nav {
	background: #ffffff;
	border-bottom: 1px solid var(--app-border-line);
	padding: 12px 0;
}
.app-top-nav__content {
	display: flex;
	align-items: center;
}
.app-identity {
	display: flex;
	align-items: center;
	gap: 8px;
}
.app-identity__symbol {
	width: 30px;
	height: 30px;
	background: var(--app-azure-primary);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.app-identity__symbol svg {
	width: 18px;
	height: 18px;
	fill: #ffffff;
}
.app-identity__label {
	font-family: 'General Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--app-navy-dark);
	letter-spacing: -0.3px;
}

.app-view-wrapper {
	padding: 0 0 40px;
}

.app-media-frame {
	margin: 0 -20px 18px;
}
.app-media-frame #eco-player {
	border-radius: 0;
	overflow: hidden;
}
@media (max-width: 640px) {
	.app-view-wrapper {
		padding: 0 0 32px;
	}
	.app-shell-container {
		padding-left: 0;
		padding-right: 0;
	}
	.app-entry-heading,
	.app-author-bar,
	.app-promo-card,
	#promo-block-area,
	.app-feedback-section,
	.app-site-footer .app-shell-container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.app-media-frame {
		margin: 0 0 14px;
	}
}
@media (min-width: 641px) {
	.app-entry-heading {
		margin-top: 16px;
	}
}

.app-entry-heading {
	font-family: 'General Sans', sans-serif;
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--app-navy-dark);
	margin-bottom: 16px;
	letter-spacing: -0.3px;
}

.app-author-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--app-border-line);
}
.app-author-bar__portrait {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.app-author-bar__details {
	flex: 1;
	min-width: 0;
}
.app-author-bar__title {
	font-size: 15px;
	font-weight: 600;
	color: var(--app-navy-dark);
	line-height: 1.2;
}
.app-author-bar__published {
	font-size: 13px;
	color: var(--app-text-subtle);
	margin-top: 2px;
}
.app-social-cluster {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.app-action-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	background: #f1f5f9;
	color: var(--app-navy-dark);
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease;
}
.app-action-pill:hover {
	background: #e2e8f0;
}
.app-action-pill svg {
	fill: currentColor;
}
@media (max-width: 640px) {
	.app-social-cluster .app-action-pill span {
		display: none;
	}
	.app-action-pill {
		padding: 8px 10px;
	}
}
@media (max-width: 420px) {
	.app-author-bar__published {
		font-size: 12px;
	}
}

#promo-block-area {
	display: none;
	text-align: center;
	margin: 0 0 12px;
}
#promo-block-area.app-promo-unfold {
	animation: app-promo-unfold 0.6s ease-out both;
}
@keyframes app-promo-unfold {
	0% {
		opacity: 0;
		transform: translateY(-12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.app-promo-card__tag {
	font-size: 12px;
	font-weight: 700;
	color: #15803d;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.app-purchase-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #16a34a;
	color: #ffffff;
	font-family: 'General Sans', sans-serif;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.5px;
	padding: 18px 32px;
	border-radius: 12px;
	width: 100%;
	max-width: 440px;
	box-shadow: 0 6px 22px rgba(22, 163, 74, 0.45);
	animation: app-purchase-pulse 1.8s ease-in-out infinite;
	transition: transform 0.15s ease, background 0.15s ease;
}
.app-purchase-btn:hover {
	background: #15803d;
	animation: none;
	transform: translateY(-2px);
}
.app-purchase-btn:active {
	transform: translateY(0);
}
.app-purchase-btn svg {
	stroke: currentColor;
	flex-shrink: 0;
}

@keyframes app-purchase-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 6px 22px rgba(22, 163, 74, 0.45);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 10px 32px rgba(22, 163, 74, 0.6);
	}
}

.app-promo-card__meta-info {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--app-text-subtle);
}
.app-promo-card__warranty,
.app-promo-card__dispatch {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	color: #15803d;
}
.app-promo-card__warranty svg,
.app-promo-card__dispatch svg {
	stroke: currentColor;
}

@media (max-width: 520px) {
	.app-promo-card {
		padding: 22px 18px;
		border-radius: 10px;
	}
	.app-purchase-btn {
		font-size: 15px;
		padding: 14px 18px;
		gap: 8px;
		letter-spacing: 0.3px;
		width: 80%;
		max-width: 320px;
	}
	.app-promo-card__meta-info {
		font-size: 12px;
		gap: 12px;
	}
}

.app-feedback-section {
	margin-top: 28px;
	padding-top: 4px;
}
.app-feedback-section__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--app-navy-dark);
	font-weight: 600;
	font-size: 15px;
}
.app-feedback-section__header svg {
	fill: var(--app-navy-dark);
}
.app-feedback-section__filter {
	margin-left: auto;
	font-size: 13px;
	color: var(--app-text-subtle);
	font-weight: 500;
}

.app-user-comment {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
}
.app-user-comment + .app-user-comment {
	border-top: 1px solid var(--app-border-line);
}
.app-user-comment__photo {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.app-user-comment__content {
	flex: 1;
	min-width: 0;
}
.app-user-comment__info {
	font-size: 13px;
	color: var(--app-text-subtle);
	margin-bottom: 4px;
}
.app-user-comment__info b {
	color: var(--app-navy-dark);
	font-weight: 600;
	margin-right: 8px;
}
.app-user-comment__message {
	font-size: 14px;
	color: var(--app-text-main);
	line-height: 1.55;
	margin-bottom: 8px;
	word-break: break-word;
}
.app-user-comment__toolbar {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: -8px;
}
.app-user-comment__toolbar button {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	border-radius: 50px;
	color: var(--app-text-subtle);
	font-size: 13px;
	font-weight: 500;
	transition: background 0.15s ease;
}
.app-user-comment__toolbar button:hover {
	background: #f1f5f9;
	color: var(--app-navy-dark);
}
.app-user-comment__toolbar button svg {
	fill: currentColor;
}

.app-user-comment__toolbar button.like-selected {
	color: #0284c7 !important;
	background-color: #e0f2fe !important;
}

.app-user-comment__toolbar button.dislike-selected {
	color: #dc2626 !important;
	background-color: #fef2f2 !important;
}

.app-user-comment__toolbar button {
	transition: color 0.2s ease, background-color 0.2s ease;
}

.app-action-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.app-action-pill.like-selected {
	color: #0284c7 !important;
	background-color: #e0f2fe !important;
	border-color: #0284c7 !important;
}

.app-user-comment--nested {
	margin-top: 14px;
	margin-left: 0;
	padding: 12px 0 0 16px;
	border-left: 2px solid var(--app-border-line);
	border-top: none !important;
}
.app-user-comment--nested .app-user-comment__photo {
	width: 32px;
	height: 32px;
}
.app-user-comment--nested .app-user-comment__message {
	font-size: 13.5px;
}

@media (max-width: 520px) {
	.app-user-comment__photo {
		width: 32px;
		height: 32px;
	}
	.app-user-comment__message {
		font-size: 13.5px;
	}
	.app-user-comment--nested .app-user-comment__photo {
		width: 28px;
		height: 28px;
	}
}

.app-site-footer {
	background: #ffffff;
	border-top: 1px solid var(--app-border-line);
	padding: 24px 0 20px;
	text-align: center;
	margin-top: 32px;
}
.app-site-footer__copyright {
	font-size: 12px;
	color: var(--app-text-subtle);
	margin-bottom: 4px;
}
.app-site-footer__entity {
	font-size: 11px;
	color: var(--app-text-subtle);
	opacity: 0.7;
	margin-bottom: 12px;
}
.app-site-footer__navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.app-site-footer__navigation a {
	color: var(--app-text-subtle);
	font-size: 13px;
	transition: color 0.15s ease;
}
.app-site-footer__navigation a:hover {
	color: var(--app-navy-dark);
}
.app-site-footer__divider {
	color: #cbd5e1;
}

@supports (padding: max(0px)) {
	.app-site-footer {
		padding-bottom: max(20px, env(safe-area-inset-bottom));
	}
}

.app-showcase-card {
	font-family: 'General Sans', sans-serif;
	max-width: 900px;
	margin: 30px auto;
	padding: 32px;
	box-sizing: border-box;
}

.app-showcase-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	align-items: center;
	justify-content: center;
}

.app-showcase-media {
	flex: 1 1 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: space-around;
}

.app-status-chip {
	display: inline-block;
	padding: 6px 14px;
	background: #0f172a;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.app-media-anchor {
	display: block;
	width: 100%;
	text-decoration: none;
}

.app-item-preview {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.08));
	transition: transform 0.4s ease;
}

.app-item-preview:hover {
	transform: scale(1.05);
}

.app-showcase-title {
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 900;
	color: #0f172a;
	margin: 0 0 8px 0;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.app-text-accent {
	color: #0284c7;
}

.app-showcase-caption {
	font-size: 15px;
	color: #64748b;
	margin: 0 0 20px 0;
	font-weight: 400;
}

.app-feature-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.app-feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
}

.app-feature-icon {
	width: 20px;
	height: 20px;
	background: #e0f2fe;
	color: #0284c7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	flex-shrink: 0;
}

.app-purchase-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 24px;
	background: #16a34a;
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
	transition: background-color 0.2s ease, transform 0.2s ease;
	box-sizing: border-box;
	text-align: center;
	margin: 0 auto;
}

.app-purchase-btn:hover {
	background: #15803d;
	transform: translateY(-1px);
}

.app-purchase-btn svg {
	transition: transform 0.2s ease;
}

.app-purchase-btn:hover svg {
	transform: translateX(4px);
}

.app-trust-indicator {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	color: #94a3b8;
	font-weight: 600;
}

.app-assurance-block {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #f1f5f9;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.app-assurance-icon-box {
	width: 56px;
	height: 56px;
	background: #f0f9ff;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	flex-shrink: 0;
}

.app-assurance-details h3 {
	font-size: 16px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 4px 0;
}

.app-assurance-details p {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 600px) {
	.app-showcase-card {
		padding: 20px;
	}

	.app-showcase-layout {
		flex-direction: column;
		gap: 20px;
	}

	.app-assurance-block {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

.app-post-comment-box {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 28px;
}

.app-post-comment-box__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background-color: #e2e8f0;
}

.app-feedback-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.app-feedback-form__input-wrapper {
	position: relative;
	width: 100%;
}

.app-feedback-form__editor {
	width: 100%;
	padding: 4px 0 6px 0;
	border: none;
	border-bottom: 1px solid #cbd5e1;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	color: #0f172a;
	outline: none;
	resize: none;
	min-height: 24px;
	line-height: 1.4;
	box-sizing: border-box;
	display: block;
	overflow: hidden;
}

.app-feedback-form__focus-border {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #0284c7;
	transition: width 0.2s ease, left 0.2s ease;
}

.app-feedback-form__editor:focus ~ .app-feedback-form__focus-border {
	width: 100%;
	left: 0;
}

.app-feedback-controls {
	display: none;
	justify-content: flex-end;
	margin-top: 8px;
}

.app-feedback-controls.is-visible {
	display: flex;
}

.app-feedback-controls__btn-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.app-btn-abort {
	background: transparent;
	border: none;
	color: #0f172a;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

.app-btn-abort:hover {
	background-color: rgba(0, 0, 0, 0.08);
}

.app-btn-send {
	background-color: #0f172a;
	color: #ffffff;
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

.app-btn-send:hover:not(:disabled) {
	background-color: #1e293b;
}

.app-btn-send:disabled {
	background-color: #f1f5f9;
	color: #94a3b8;
	cursor: not-allowed;
}

.app-terms-container {
	padding: 16px;
	list-style-type: none;
}

.app-terms-container h1 {
	padding: 0;
	font-size: 32px;
}

.app-terms-container article {
	padding: 16px 0 0 0;
}

.app-terms-container li {
	list-style-type: none;
}
