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

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

:root {
	--yt-charcoal-primary: #0f0f0f;
	--yt-neutral-charcoal: #272727;
	--yt-pitch-black: #000000;
	--yt-slate-deep: #0f0f0f;
	--yt-pure-canvas: #fdfdfd;
	--yt-surface-card: #ffffff;
	--yt-main-text: #0f0f0f;
	--yt-secondary-subtext: #606060;
	--yt-line-separator: #e5e5e5;
	--yt-cta-forest: #207227;
	--yt-cta-forest-hover: #17541c;
	--yt-vote-up-active: #207227;
	--yt-vote-up-bg: #e8f5e9;
	--yt-vote-down-active: #cc0000;
	--yt-vote-down-bg: #ffebee;
}

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--yt-pure-canvas);
	color: var(--yt-main-text);
	-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;
}

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

.header-navigation-bar {
	background: #ffffff;
	border-bottom: 1px solid var(--yt-line-separator);
	padding: 12px 0;
}

.header-navigation-bar__flex {
	display: flex;
	align-items: center;
}

.brand-logotype-box {
	display: flex;
	align-items: center;
	gap: 8px;
}

.brand-logotype-box__icon {
	width: 30px;
	height: 30px;
	background: var(--yt-charcoal-primary);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-logotype-box__icon svg {
	width: 18px;
	height: 18px;
	fill: #ffffff;
}

.brand-logotype-box__text {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--yt-slate-deep);
	letter-spacing: -0.3px;
}

.video-presentation-viewport {
	padding: 0 0 40px;
}

.player-embed-container {
	margin: 0 -20px 18px;
}

.player-embed-container #player-media-runtime-node {
	border-radius: 0;
	overflow: hidden;
}

@media (max-width: 640px) {
	.video-presentation-viewport {
		padding: 0 0 32px;
	}
	.layout-content-container {
		padding-left: 0;
		padding-right: 0;
	}
	.primary-headline-text,
	.creator-profile-panel,
	.offer-highlight-container,
	#promo-access-portal,
	#community-discussion-block,
	.page-footer-container .layout-content-container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.player-embed-container {
		margin: 0 0 14px;
	}
}

@media (min-width: 641px) {
	.primary-headline-text {
		margin-top: 16px;
	}
}

.primary-headline-text {
	font-family: 'Inter', sans-serif;
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--yt-slate-deep);
	margin-bottom: 16px;
	letter-spacing: -0.3px;
}

.creator-profile-panel {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--yt-line-separator);
}

.creator-profile-panel__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.creator-profile-panel__details {
	flex: 1;
	min-width: 0;
}

.creator-profile-panel__name {
	font-size: 15px;
	font-weight: 600;
	color: var(--yt-slate-deep);
	line-height: 1.2;
}

.creator-profile-panel__timestamp {
	font-size: 13px;
	color: var(--yt-secondary-subtext);
	margin-top: 2px;
}

.video-actions-toolbar {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.action-pill-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	background: #f2f2f2;
	color: var(--yt-slate-deep);
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease;
}

.action-pill-button:hover {
	background: #e5e5e5;
}

.action-pill-button svg {
	fill: currentColor;
}

@media (max-width: 640px) {
	.video-actions-toolbar .action-pill-button span {
		display: none;
	}
	.action-pill-button {
		padding: 8px 10px;
	}
}

@media (max-width: 420px) {
	.creator-profile-panel__timestamp {
		font-size: 12px;
	}
}

#promo-access-portal {
	display: none;
	text-align: center;
	margin: 0 0 12px;
}

#promo-access-portal.promo-reveal-slide-anim {
	animation: promo-reveal-slide-anim 0.6s ease-out both;
}

@keyframes promo-reveal-slide-anim {
	0% {
		opacity: 0;
		transform: translateY(-12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.offer-highlight-container__tagline {
	font-size: 12px;
	font-weight: 700;
	color: var(--yt-pitch-black);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.action-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--yt-cta-forest);
	color: #ffffff;
	font-family: 'Inter', 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(32, 114, 39, 0.4);
	animation: conversion-btn-pulse-effect 1.8s ease-in-out infinite;
	transition: transform 0.15s ease, background 0.15s ease;
}

.action-cta-button:hover {
	background: var(--yt-cta-forest-hover);
	animation: none;
	transform: translateY(-2px);
}

.action-cta-button:active {
	transform: translateY(0);
}

.action-cta-button svg {
	stroke: currentColor;
	flex-shrink: 0;
}

@keyframes conversion-btn-pulse-effect {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 6px 22px rgba(32, 114, 39, 0.4);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 10px 32px rgba(32, 114, 39, 0.55);
	}
}

.offer-highlight-container__meta-info {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--yt-secondary-subtext);
}

.offer-highlight-container__guarantee-icon,
.offer-highlight-container__delivery-icon {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	color: var(--yt-pitch-black);
}

.offer-highlight-container__guarantee-icon svg,
.offer-highlight-container__delivery-icon svg {
	stroke: currentColor;
}

@media (max-width: 520px) {
	.offer-highlight-container {
		padding: 22px 18px;
		border-radius: 10px;
	}
	.action-cta-button {
		font-size: 15px;
		padding: 14px 18px;
		gap: 8px;
		letter-spacing: 0.3px;
		width: 80%;
		max-width: 320px;
	}
	.offer-highlight-container__meta-info {
		font-size: 12px;
		gap: 12px;
	}
}

#community-discussion-block {
	margin-top: 28px;
	padding-top: 4px;
}

#community-discussion-block .discussion-segment-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--yt-slate-deep);
	font-weight: 600;
	font-size: 15px;
}

#community-discussion-block .discussion-segment-header svg {
	fill: var(--yt-slate-deep);
}

#community-discussion-block .discussion-sort-trigger {
	margin-left: auto;
	font-size: 13px;
	color: var(--yt-secondary-subtext);
	font-weight: 500;
}

.community-post-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
}

.community-post-item + .community-post-item {
	border-top: 1px solid var(--yt-line-separator);
}

.community-post-item__avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.community-post-item__body {
	flex: 1;
	min-width: 0;
}

.community-post-item__meta {
	font-size: 13px;
	color: var(--yt-secondary-subtext);
	margin-bottom: 4px;
}

.community-post-item__meta b {
	color: var(--yt-slate-deep);
	font-weight: 600;
	margin-right: 8px;
}

.community-post-item__text {
	font-size: 14px;
	color: var(--yt-main-text);
	line-height: 1.55;
	margin-bottom: 8px;
	word-break: break-word;
}

.community-post-item__actions {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: -8px;
}

.community-post-item__actions button,
.action-pill-button,
.vote-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	border-radius: 50px;
	color: var(--yt-secondary-subtext);
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.community-post-item__actions button:hover {
	background: #f2f2f2;
	color: var(--yt-slate-deep);
}

.community-post-item__actions button svg {
	fill: currentColor;
}

.community-post-item__actions button.state-rate-up,
.action-pill-button.state-rate-up,
.vote-action-btn.state-rate-up {
	color: var(--yt-vote-up-active) !important;
	background-color: var(--yt-vote-up-bg) !important;
}

.community-post-item__actions button.state-rate-down {
	color: var(--yt-vote-down-active) !important;
	background-color: var(--yt-vote-down-bg) !important;
}

.community-post-item--nested {
	margin-top: 14px;
	margin-left: 0;
	padding: 12px 0 0 16px;
	border-left: 2px solid var(--yt-line-separator);
	border-top: none !important;
}

.community-post-item--nested .community-post-item__avatar {
	width: 32px;
	height: 32px;
}

.community-post-item--nested .community-post-item__text {
	font-size: 13.5px;
}

@media (max-width: 520px) {
	.community-post-item__avatar {
		width: 32px;
		height: 32px;
	}
	.community-post-item__text {
		font-size: 13.5px;
	}
	.community-post-item--nested .community-post-item__avatar {
		width: 28px;
		height: 28px;
	}
}

.page-footer-container {
	background: #ffffff;
	border-top: 1px solid var(--yt-line-separator);
	padding: 24px 0 20px;
	text-align: center;
	margin-top: 32px;
}

.page-footer-container__copyright {
	font-size: 12px;
	color: var(--yt-secondary-subtext);
	margin-bottom: 4px;
}

.page-footer-container__company-id {
	font-size: 11px;
	color: var(--yt-secondary-subtext);
	opacity: 0.7;
	margin-bottom: 12px;
}

.page-footer-container__nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.page-footer-container__nav-links a {
	color: var(--yt-secondary-subtext);
	font-size: 13px;
	transition: color 0.15s ease;
}

.page-footer-container__nav-links a:hover {
	color: var(--yt-slate-deep);
}

.page-footer-container__separator {
	color: #cccccc;
}

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

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

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

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

.status-badge-indicator {
	display: inline-block;
	padding: 6px 14px;
	background: var(--yt-slate-deep);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.item-link-container {
	display: block;
	width: 100%;
	text-decoration: none;
}

.product-display-image {
	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;
}

.product-display-image:hover {
	transform: scale(1.05);
}

.showcase-main-title {
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 900;
	color: var(--yt-slate-deep);
	margin: 0 0 8px 0;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.highlight-accent-token {
	color: var(--yt-charcoal-primary);
}

.showcase-sub-title {
	font-size: 15px;
	color: var(--yt-secondary-subtext);
	margin: 0 0 20px 0;
	font-weight: 400;
}

.product-key-points-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.product-key-points-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--yt-main-text);
}

.feature-point-bullet {
	width: 20px;
	height: 20px;
	background: #f2f2f2;
	color: var(--yt-pitch-black);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	flex-shrink: 0;
}

.security-verification-badge {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	color: var(--yt-secondary-subtext);
	font-weight: 600;
}

.warranty-assurance-container {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--yt-line-separator);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.warranty-seal-visual {
	width: 56px;
	height: 56px;
	background: #f8f8f8;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	flex-shrink: 0;
}

.warranty-assurance-container__content h3 {
	font-size: 16px;
	font-weight: 800;
	color: var(--yt-slate-deep);
	margin: 0 0 4px 0;
}

.warranty-assurance-container__content p {
	font-size: 13px;
	color: var(--yt-secondary-subtext);
	line-height: 1.5;
	margin: 0;
}

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

	.showcase-product-grid {
		flex-direction: column;
		gap: 20px;
	}

	.warranty-assurance-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

.post-composer-container {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 28px;
}

.post-composer-container__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background-color: var(--yt-line-separator);
}

#msg-editor-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.composer-input-field-shell {
	position: relative;
	width: 100%;
}

#msg-input-field {
	width: 100%;
	padding: 4px 0 6px 0;
	border: none;
	border-bottom: 1px solid #ccc;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	color: var(--yt-slate-deep);
	outline: none;
	resize: none;
	min-height: 24px;
	line-height: 1.4;
	box-sizing: border-box;
	display: block;
	overflow: hidden;
}

.composer-active-focus-underline {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--yt-charcoal-primary);
	transition: width 0.2s ease, left 0.2s ease;
}

#msg-input-field:focus ~ .composer-active-focus-underline {
	width: 100%;
	left: 0;
}

#editor-control-panel {
	display: none;
	justify-content: flex-end;
	margin-top: 8px;
}

#editor-control-panel.editor-controls-visible {
	display: flex;
}

.composer-btn-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

#btn-discard-entry {
	background: transparent;
	border: none;
	color: #606060;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

#btn-discard-entry:hover {
	background-color: #272727;
	color: #ffffff;
}

#btn-publish-entry {
	background-color: #272727;
	color: #ffffff;
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

#btn-publish-entry:hover:not(:disabled) {
	background-color: #0f0f0f;
}

#btn-publish-entry:disabled {
	background-color: #f2f2f2;
	color: #909090;
	cursor: not-allowed;
}

.legal-document-content-block {
	padding: 16px;
	list-style-type: none;
}

.legal-document-content-block h1 {
	padding: 0;
	font-size: 32px;
}

.legal-document-content-block article {
	padding: 16px 0 0 0;
}

.legal-document-content-block li {
	list-style-type: none;
}
