		:root {
			--bg-main: #020617;
			--card: #111827;
			--primary: #60a5fa;
			--secondary: #34d399;
			--text: #e5e7eb;
			--muted: #9ca3af;
			--radius: 16px;
		}
		
		* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
			font-family: Poppins, sans-serif;
			-webkit-tap-highlight-color: transparent;
		}
		
		html {
			scroll-behavior: smooth;
		}
		
		body {
			font-family: 'Poppins', system-ui, -apple-system, sans-serif;
			background: radial-gradient(circle at top, #0f172a), var(--bg-main);
			color: var(--text);
			margin: 0;
			line-height: 1.7;
		}
		
		.container {
			margin: 0 auto;
			width: 100%;
			max-width: 1100px;
			padding: 4px 16px 64px;
		}
		
		header {
			text-align: left;
			padding: 72px 16px 4px;
			position: relative;
			overflow: hidden;
		}
		
		.header-inner {
			width: min(1180px, 92%);
			text-align: left;
			position: relative;
			z-index: 2;
		}

		header::before {
			content: "";
			position: absolute;
			inset: 0;
			background:
				radial-gradient(circle at top,
					rgba(96, 165, 250, .20),
					transparent 60%);
			pointer-events: none;
			opacity: 0;
			transform: scale(0.88);
			animation: headerGlowReveal 2s ease forwards;
		}

		header::after {
			content: "";
			position: absolute;
			top: -120px;
			left: 50%;
			transform: translateX(-50%);
			width: 680px;
			height: 320px;
			background:
				radial-gradient(circle,
					rgba(147, 197, 253, .12),
					transparent 72%);
			pointer-events: none;
			opacity: 0;
			filter: blur(40px);
			animation: headerSoftLight 2.4s ease forwards;
		}
		
		header h1 {
			position: relative;
			max-width: 768px;
			font-size: clamp(2rem, 5vw, 3.6rem);
			line-height: 1.3;
			font-weight: 700;
			letter-spacing: 0.02em;
			background:
				linear-gradient(to bottom,
					#ffffff 0%,
					#dbeafe 45%,
					#93c5fd 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			text-shadow:
				0 0 10px rgba(147, 197, 253, .10),
				0 2px 12px rgba(96, 165, 250, .08);
			margin-bottom: 18px;
			opacity: 0;
			transform: translateY(10px);
			animation: headerTextReveal 1.4s ease forwards;
			animation-delay: .25s;
		}
		
		header p {
			position: relative;
			color: #b4bcc6;
			font-size: 15px;
			line-height: 1.8;
			max-width: 760px;
			margin: 0 0 14px;
			opacity: 0;
			transform: translateY(8px);
			animation: headerTextReveal 1.4s ease forwards;
			animation-delay: .45s;
		}

		@keyframes headerGlowReveal {
			0% {
				opacity: 0;
				transform: scale(.72);
				filter: blur(60px);
			}
			
			45% {
				opacity: 1;
				transform: scale(1.06);
				filter: blur(26px);
			}
			
			100% {
				opacity: 1;
				transform: scale(1);
				filter: blur(18px);
			}
		}

		@keyframes headerSoftLight {
			0% {
				opacity: 0;
				transform: translateX(-50%) scale(.7);
				filter: blur(70px);
			}
			
			55% {
				opacity: .9;
				transform: translateX(-50%) scale(1.05);
				filter: blur(42px);
			}
			
			100% {
				opacity: .75;
				transform: translateX(-50%) scale(1);
				filter: blur(40px);
			}
		}

		@keyframes headerTextReveal {
			to {
				opacity: 1;
				transform: translateY(0);
			}
		}
		
		
		section {
			margin-bottom: 54px;
			scroll-margin-top: 54px;
		}
		
		h2 {
			font-size: 22px;
			margin-bottom: 12px;
			color: #fff;
		}
		
		h3 {
			font-size: 17px;
			margin: 22px 0 6px;
			color: #c7d2fe;
		}
		
		p {
			font-size: 14px;
			color: #d1d5db;
			margin-bottom: 12px;
		}
		
		ul {
			padding-left: 20px;
			font-size: 14px;
			color: #d1d5db;
		}
		
		ul li {
			margin-bottom: 8px;
		}
		
		.box {
			background: rgba(255, 255, 255, 0.05);
			border: 1px solid rgba(255, 255, 255, 0.08);
			border-radius: 12px;
			padding: 16px;
			margin: 16px 0;
		}
		
		.box.hero {
			display: inline-block;
			width: auto;
			max-width: calc(100% - 442px);
			vertical-align: top;
		}
		
		.tip {
			color: #93c5fd;
			font-size: 13px;
		}
		
		.warn {
			color: #fbbf24;
			font-size: 13px;
		}
		
		a {
			text-decoration: none;
		}
		
		.navbar {
			position: sticky;
			top: 0;
			z-index: 1000;
			background:
				linear-gradient(to bottom,
					rgba(15, 23, 42, .82),
					rgba(15, 23, 42, .68));
			backdrop-filter: blur(18px);
			border-bottom:
				1px solid rgba(96, 165, 250, .14);
			box-shadow:
				0 8px 24px rgba(0, 0, 0, .18);
			overflow: hidden;
		}
		
		.navbar::before {
			content: "";
			position: absolute;
			left: 50%;
			bottom: -120px;
			transform: translateX(-50%) scale(.85);
			width: 520px;
			height: 180px;
			background:
				radial-gradient(ellipse at center,
					rgba(96, 165, 250, .12),
					transparent 72%);
			pointer-events: none;
			opacity: 0;
			animation: navbarGlow 1.8s ease forwards;
		}

		.navbar::after {
			content: "";
			position: absolute;
			left: 50%;
			bottom: 0;
			transform: translateX(-50%) scaleX(.4);
			width: min(900px, 92%);
			height: 1px;
			background:
				linear-gradient(to right,
					transparent,
					rgba(125, 211, 252, .45),
					rgba(96, 165, 250, .85),
					rgba(125, 211, 252, .45),
					transparent);
			opacity: 0;
			filter: blur(.3px);
			animation:
				navbarLineGlow 1.4s ease forwards;
		}

		@keyframes navbarGlow {
			0% {
				opacity: 0;
				transform: translateX(-50%) scale(.75);
				filter: blur(24px);
			}
			
			45% {
				opacity: .9;
				transform: translateX(-50%) scale(1.05);
				filter: blur(14px);
			}
			
			100% {
				opacity: 1;
				transform: translateX(-50%) scale(1);
				filter: blur(10px);
			}
		}
		
		@keyframes navbarLineGlow {
			0% {
				opacity: 0;
				transform: translateX(-50%) scaleX(.2);
				filter: blur(6px);
			}
			
			55% {
				opacity: 1;
				transform: translateX(-50%) scaleX(1.04);
				filter: blur(2px);
			}
			
			100% {
				opacity: .9;
				transform: translateX(-50%) scaleX(1);
				filter: blur(.3px);
			}
		}
		
		.navbar.scrolled {
			box-shadow:
				0 8px 30px rgba(0, 0, 0, .35),
				0 0 20px rgba(96, 165, 250, .08);
			border-bottom: 1px solid rgba(96, 165, 250, 0.12);
		}
		
		.nav-container {
			width: min(1180px, 92%);
			margin: auto;
		}
		
		nav {
			height: 64px;
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 24px;
		}
		
		.logo {
			display: flex;
			align-items: center;
			
		}
		
		.logo img {
			height: 36px;
			width: auto;
			object-fit: cover;
			filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
		}
		
		.nav-links {
			display: flex;
			align-items: center;
			gap: 34px;
			font-weight: 500;
		}
		
		.nav-links a {
			position: relative;
			color: #94a3b8;
			text-decoration: none;
			transition: .25s;
		}
		
		.nav-links a:hover {
			color: var(--primary);
		}
		
		.nav-links a::after {
			content: "";
			position: absolute;
			left: 0;
			bottom: -7px;
			height: 2px;
			width: 0;
			background: var(--primary);
			transition: .25s;
			border-radius: 999px;
		}
		
		.nav-links a:hover::after {
			width: 100%;
		}
		
		.menu {
			display: none;
			width: 46px;
			height: 46px;
			border: none;
			background: none;
			cursor: pointer;
			position: relative;
			z-index: 2000;
			margin-right: 16px;
		}
		
		.menu span {
			position: absolute;
			left: 11px;
			width: 24px;
			height: 3px;
			background: #fff;
			border-radius: 999px;
			transition: .3s ease;
			transform-origin: center;
		}
		
		.menu span:nth-child(1) {
			top: 14px;
		}
		
		.menu span:nth-child(2) {
			top: 22px;
		}
		
		.menu span:nth-child(3) {
			top: 30px;
		}
		
		.menu.active span:nth-child(1) {
			top: 22px;
			transform: rotate(45deg);
		}
		
		.menu.active span:nth-child(2) {
			opacity: 0;
			transform: scale(0);
		}
		
		.menu.active span:nth-child(3) {
			top: 22px;
			transform: rotate(-45deg);
		}
		
		.mobile-drawer {
			position: fixed;
			top: 0;
			right: -360px;
			width: 320px;
			max-width: 88vw;
			height: 100vh;
			padding:
				max(26px, env(safe-area-inset-top)) 28px 28px;
			background:
				linear-gradient(180deg,
					#0f172a 0%,
					#111827 100%);
			border-left: 1px solid rgba(255, 255, 255, 0.06);
			box-shadow:
				-18px 0 50px rgba(0, 0, 0, .45),
				0 0 25px rgba(96, 165, 250, .08);
			transition:
				right .35s ease,
				opacity .25s ease;
			z-index: 999;
			display: flex;
			flex-direction: column;
			overflow-y: auto;
		}
		
		.mobile-drawer.active {
			right: 0;
		}
		
		.drawer-top {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 34px;
			padding-bottom: 18px;
			border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		}
		
		.drawer-close {
			border: none;
			background: transparent;
			color: #e5e7eb;
			font-size: 28px;
			line-height: 1;
			cursor: pointer;
			padding: 6px;
			transition: .25s ease;
		}
		
		.drawer-close:hover {
			color: #93c5fd;
			transform: rotate(90deg);
		}
		
		.drawer-nav {
			display: flex;
			flex-direction: column;
			gap: 10px;
			margin-top: 60px;
		}
		
		.drawer-nav a {
			display: flex;
			align-items: center;
			width: 100%;
			padding: 15px 16px;
			border-radius: 16px;
			font-weight: 500;
			font-size: .96rem;
			color: #e5e7eb;
			text-decoration: none;
			transition:
				background .25s ease,
				color .25s ease,
				transform .25s ease,
				border-color .25s ease;
			border: 1px solid transparent;
		}
		
		.drawer-nav a:hover {
			background:
				rgba(96, 165, 250, 0.10);
			color: #93c5fd;
			border-color:
				rgba(96, 165, 250, 0.18);
			transform: translateX(4px);
		}
		
		.drawer-nav a:active {
			transform: scale(.98);
			opacity: .8;
		}
		
		.drawer-footer {
			margin-top: auto;
			padding-top: 28px;
			border-top:
				1px solid rgba(255, 255, 255, 0.06);
			display: flex;
			flex-wrap: wrap;
			gap: 14px;
		}
		
		.drawer-footer a {
			font-size: 14px;
			color: #94a3b8;
			text-decoration: none;
			transition: .2s ease;
		}
		
		.drawer-footer a:hover {
			color: #93c5fd;
		}
		
		@media(max-width:420px) {
			.mobile-drawer {
				width: 100%;
				max-width: 100%;
				right: -100%;
				border-radius: 0;
			}
		}
		
		@media(max-width:760px) {
			
			.nav-links {
				display: none;
			}
			
			.menu {
				display: flex;
			}
			
			nav {
				height: 76px;
			}
			
			.logo {
				font-size: 26px;
			}
		}
		
		@media(max-width:420px) {
			.mobile-drawer {
				width: 100%;
				max-width: 100%;
				right: -100%;
				border-radius: 0;
			}
		}
		
		
		
		
		.breadcrumb {
			max-width: 768px;
			margin: 0 0 40px;
			padding: 0 4px;
			display: flex;
			align-items: center;
			gap: 6px;
			flex-wrap: nowrap;
			overflow-x: auto;
			white-space: nowrap;
			-webkit-overflow-scrolling: touch;
			scrollbar-width: none;
			font-size: 0.8rem;
			color: var(--muted);
			opacity: 0;
		}
		
		.breadcrumb.ready {
			opacity: 1;
		}
		
		.breadcrumb::-webkit-scrollbar {
			display: none;
		}
		
		.breadcrumb a {
			color: var(--muted);
			text-decoration: none;
			transition: 0.2s;
		}
		
		.breadcrumb a:hover {
			color: #93c5fd;
		}
		
		.breadcrumb span {}
		
		.breadcrumb .current {
			color: var(--text);
			font-weight: 500;
		}
		
		.breadcrumb>* {
			opacity: 0;
			transform: translateY(6px);
		}
		
		.breadcrumb>*.show {
			opacity: 1;
			transform: translateY(0);
			transition: all 0.4s ease;
		}
		
		.breadcrumb>*.show span {
			opacity: 0.5;
		}
		
		.breadcrumb .current.glow {
			animation: breadcrumbGlow 0.6s ease;
		}
		
		@keyframes breadcrumbGlow {
			0% {
				color: #93c5fd;
				text-shadow: 0 0 0 transparent;
			}
			
			50% {
				color: #60a5fa;
				text-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
			}
			
			100% {
				color: var(--text);
				text-shadow: none;
			}
		}
		
		.site-footer {
			position: relative;
			overflow: hidden;
			padding: 48px 18px 30px;
			border-top: 1px solid rgba(255, 255, 255, 0.06);
		}
		
		.site-footer .container {
			position: relative;
			z-index: 2;
			width: min(1180px, 100%);
			margin: auto;
		}
		
		.footer-grid {
			display: grid;
			grid-template-columns: 1fr;
			gap: 32px;
			align-items: flex-start;
		}
		
		.footer-col {
			display: flex;
			flex-direction: column;
		}
		
		.footer-brand {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 18px;
			margin-bottom: 14px;
		}
		
		.footer-actions {
			display: flex;
			align-items: center;
			gap: 12px;
			flex-shrink: 0;
		}
		
		.like-btn,
		.footer-action-btn {
			width: 56px;
			height: 56px;
			min-width: 56px;
			min-height: 56px;
			display: inline-flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			padding: 0;
			color: #cbd5e1;
			text-decoration: none;
			transition:
				transform .25s ease,
				background .25s ease,
				border-color .25s ease,
				color .25s ease,
				box-shadow .25s ease;
			cursor: pointer;
			overflow: hidden;
			background: transparent;
			border: none;
			cursor: pointer;
		}
		
		.footer-action-btn svg {
			width: 32px;
			height: 32px;
			flex-shrink: 0;
		}
		
		.footer-action-btn.yt {
			color: #fb7185;
		}
		
		.footer-action-btn.share {
			color: #FBF4C6;
		}
		
		.footer-action-btn:hover {
			transform: translateY(-3px);
			color: #7dd3fc;
		}
		
		.footer-action-btn:active {
			transform: scale(.96);
		}
		
		.text-name {
			font-size: 12px;
			line-height: 1;
			color: #cbd5e1;
		}
		
		.like-count {
			font-size: 12px;
			line-height: 1;
		}
		
		.heart-icon {
			width: 32px;
			height: 32px;
			fill: none;
			stroke: currentColor;
			stroke-width: 1.8;
			transition: all 0.3s ease;
		}
		
		.like-btn.liked {
			color: #fb7185;
		}
		
		.like-btn.liked .heart-icon {
			fill: currentColor;
			stroke: currentColor;
		}
		
		.like-btn:hover {
			color: #fda4af;
			transform: translateY(-1px);
		}
		
		.like-btn.animate .heart-icon {
			animation: pop 0.35s ease;
		}
		
		@keyframes pop {
			0% {
				transform: scale(1);
			}
			
			40% {
				transform: scale(1.4);
			}
			
			100% {
				transform: scale(1);
			}
		}
		
		.footer-col p {
			font-size: 0.88rem;
			line-height: 1.7;
			color: #94a3b8;
			margin: 8px 0;
		}
		
		.footer-col h4 {
			position: relative;
			font-size: 0.86rem;
			font-weight: 600;
			letter-spacing: 0.08em;
			text-transform: uppercase;
			color: #e2e8f0;
			padding-bottom: 10px;
			margin-bottom: 12px;
		}
		
		.footer-col h4::after {
			content: "";
			position: absolute;
			left: 0;
			bottom: 0;
			width: 68px;
			height: 2px;
			border-radius: 999px;
			background: linear-gradient(to right,
					#60a5fa,
					transparent);
		}
		
		.footer-col a {
			display: flex;
			align-items: center;
			width: 100%;
			padding: 6px 0;
			margin-bottom: 0;
			font-size: 0.86rem;
			line-height: 1.35;
			color: #94a3b8;
			text-decoration: none;
			border-radius: 0;
			transition:
				color 0.25s ease,
				transform 0.25s ease;
		}
		
		.footer-col a:not(.footer-action-btn):hover {
			color: #7dd3fc;
			transform: translateX(3px);
		}
		
		.fan-disclaimer {
			margin-top: 18px;
			padding: 15px 16px;
			border-radius: 18px;
			background: linear-gradient(135deg,
					rgba(96, 165, 250, 0.12),
					rgba(255, 255, 255, 0.03));
			border: 1px solid rgba(255, 255, 255, 0.08);
			backdrop-filter: blur(10px);
			color: #cbd5e1 !important;
			font-size: 0.8rem !important;
			line-height: 1.7;
			
		}
		
		.footer-bottom {
			margin-top: 42px;
			padding-top: 24px;
			border-top: 1px solid rgba(255, 255, 255, 0.08);
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 14px;
		}
		
		.footer-mini-links {
			display: flex;
			align-items: center;
			justify-content: center;
			flex-wrap: wrap;
			gap: 8px;
		}
		
		.footer-mini-links a {
			padding: 6px 12px;
			font-size: 0.8rem;
			font-weight: 500;
			color: #94a3b8;
			text-decoration: none;
			border-radius: 999px;
			transition: 0.25s ease;
		}
		
		.footer-mini-links a:hover {
			background: rgba(255, 255, 255, 0.05);
			color: #7dd3fc;
			transform: translateY(-2px);
		}
		
		.copyright {
			max-width: 760px;
			text-align: center;
			font-size: 0.76rem;
			line-height: 1.65;
			color: #64748b;
		}
		
		@media (min-width: 681px) {
			
			.site-footer {
				padding: 80px 22px 36px;
			}
			
			.footer-grid {
				grid-template-columns: 1fr 1fr;
				gap: 42px 34px;
			}
			
			.footer-col p {
				font-size: 0.92rem;
				line-height: 1.75;
				margin: 16px 14px;
			}
			
			.footer-col h4 {
				font-size: 0.92rem;
				margin-bottom: 14px;
			}
			
			.footer-col a {
				padding: 7px 10px;
				margin-bottom: 2px;
				font-size: 0.88rem;
				border-radius: 10px;
				transition:
					background 0.25s ease,
					color 0.25s ease,
					transform 0.25s ease;
			}
			
			.footer-col a:hover {
				background: rgba(255, 255, 255, 0.04);
				transform: translateX(4px);
			}
			
			.fan-disclaimer {
				padding: 16px 18px;
				font-size: 0.84rem !important;
			}
			
			.footer-bottom {
				margin-top: 52px;
			}
			
			.footer-mini-links {
				gap: 12px;
			}
			
			.footer-mini-links a {
				padding: 8px 14px;
				font-size: 0.84rem;
			}
			
			.copyright {
				font-size: 0.82rem;
				line-height: 1.7;
			}
		}
		
		@media (min-width: 921px) {
			
			.site-footer {
				padding: 90px 20px 38px;
			}
			
			.footer-grid {
				grid-template-columns: 1.7fr 1fr 1fr 1fr;
				gap: 52px;
			}
			
			.footer-bottom {
				margin-top: 62px;
				padding-top: 28px;
			}
		}
		
		.text-link {
			color: #93c5fd;
			text-decoration: none;
			border-bottom: 1px dashed rgba(147, 197, 253, 0.5);
			transition: all 0.2s ease;
		}
		
		.text-link:hover {
			color: #60a5fa;
			border-bottom: 1px solid #60a5fa;
		}
		
		.text-link:active {
			opacity: 0.7;
		}
		
		.img-wrapper {
			float: left;
			width: min(420px, 48%);
			margin: 8px 22px 16px 0;
			border-radius: 16px;
			overflow: hidden;
			position: relative;
			aspect-ratio: 16 / 9;
			background: rgba(255, 255, 255, 0.04);
		}
		
		.img-skeleton {
			position: absolute;
			inset: 0;
			background: linear-gradient(110deg,
					#1f2937 25%,
					#374151 37%,
					#1f2937 63%);
			background-size: 200% 100%;
			animation: shimmer 1.4s infinite;
			z-index: 1;
		}
		
		.section-img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
			opacity: 0;
			transform: scale(0.98);
			transition:
				opacity 0.4s ease,
				transform 0.4s ease;
		}
		
		.img-wrapper.loaded .img-skeleton {
			display: none;
		}
		
		.img-wrapper.loaded .section-img {
			opacity: 1;
			transform: scale(1);
		}

		section::after,
		.intro::after {
			content: "";
			display: block;
			clear: both;
		}

		@media (max-width: 768px) {
			.img-wrapper {
				float: none;
				width: 100%;
				margin: 18px 0;
			}
			
			.box.hero {
				display: block;
				max-width: 100%;
			}
		}
		
		@keyframes shimmer {
			0% {
				background-position: 200% 0;
			}
			
			100% {
				background-position: -200% 0;
			}
		}
		
		.toc {
			background: rgba(255, 255, 255, 0.04);
			border: 1px solid rgba(255, 255, 255, 0.08);
			border-radius: 14px;
			padding: 16px;
			margin: 24px 0 40px;
		}
		
		.toc h3 {
			margin: 0 0 10px;
			font-size: 15px;
			color: #93c5fd;
		}
		
		.toc ul {
			list-style: none;
			padding: 0;
			margin: 0;
		}
		
		.toc li {
			margin-bottom: 8px;
		}
		
		.toc a {
			color: #cbd5f5;
			font-size: 13.5px;
			text-decoration: none;
			transition: 0.2s;
		}
		
		.toc a:hover {
			color: #60a5fa;
			transform: translateX(4px);
		}
		
		.date {
			font-size: 13px;
			color: #94a3b8;
			margin-bottom: 14px;
			display: block;
			opacity: 0.9;
		}
		
		.related {
			margin-top: 60px;
		}
		
		.related h2 {
			font-size: 20px;
			margin-bottom: 16px;
		}
		
		.related-grid {
			display: grid;
			grid-template-columns: 1fr;
			gap: 16px;
		}
		
		.related-card {
			display: flex;
			gap: 14px;
			padding: 12px;
			border-radius: 14px;
			background: rgba(255, 255, 255, 0.04);
			border: 1px solid rgba(255, 255, 255, 0.08);
			transition: 0.25s;
		}
		
		.related-card:hover {
			transform: translateY(-4px);
			border-color: rgba(96, 165, 250, 0.5);
			box-shadow: 0 10px 25px rgba(96, 165, 250, 0.15);
		}
		
		.related-card img {
			width: 110px;
			height: 70px;
			object-fit: cover;
			border-radius: 10px;
		}
		
		.related-content h3 {
			font-size: 14px;
			margin-bottom: 4px;
			color: #e5e7eb;
		}
		
		.related-content p {
			font-size: 12px;
			color: #9ca3af;
		}
		
		/* Desktop */
		@media (min-width: 768px) {
			.related-grid {
				grid-template-columns: repeat(3, 1fr);
			}
			
			.related-card {
				flex-direction: column;
			}
			
			.related-card img {
				width: 100%;
				height: 120px;
			}
		}
		
		.inline-icon {
			width: 16px;
			height: auto;
			vertical-align: -4px;
			margin-left: 4px;
			opacity: 0.85;
		}
		
		.image-source {
			margin: 8px 0 22px;
			font-size: 12px;
			color: #b0b0b0;
			text-align: left;
			line-height: 1.5;
		}
		
		.image-source a {
			color: #d6b36a;
			text-decoration: none;
			transition: 0.3s ease;
		}
		
		.image-source a:hover {
			color: #ffe29a;
			text-decoration: underline;
		}