:root {
	--accent: #f5c518;
	--accent-dark: #d4a017;
	--bg: #0d0a1a;
	--bg-card: #160f2a;
	--text: #f0e8ff;
	--text-muted: #9b8fc0;
	--border: #2a1f4a;
	--footer-bg: #080512;
	--btn-gradient: linear-gradient(120deg, #f5c518, #d4a017, #f5c518);
}

body {
	background: linear-gradient(to bottom, #0d0a1a 0%, #160f2a 100%);
	color: var(--text);
	font-family: 'Segoe UI', system-ui, sans-serif;
}

.breadcrumb-bar {
	background: var(--bg-card);
	border-bottom: 1px solid var(--border);
}

.breadcrumb-bar .breadcrumb-item a {
	color: var(--accent);
	text-decoration: none;
}

.breadcrumb-bar .breadcrumb-item.active {
	color: var(--text-muted);
}

.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
	color: var(--text-muted);
}

.hero {
	background: rgba(5, 0, 20, 0.75), url('assets/img/header.jpg') center/cover no-repeat;
	color: white;
	padding: 70px 0 45px;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
	min-height: 300px;
}

.hero-badge {
	display: inline-block;
	background: rgba(245, 197, 24, 0.15);
	border: 1px solid #f5c518;
	color: #f5c518;
	padding: 4px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
}

.rating-stars {
	color: #f5c518;
	font-size: 1.2rem;
}

.article-content h2, .article-content h3 {
	color: #f5c518;
	position: relative;
	margin-top: 2rem;
}

.article-content h2::after, .article-content h3::after {
	content: '';
	position: absolute;
	width: 60px;
	height: 3px;
	background: #f5c518;
	bottom: 0;
	left: 0;
	border-radius: 3px;
}

.highlight {
	background: rgba(245, 197, 24, 0.07);
	border-left: 5px solid #f5c518;
	padding: 1.2rem 1.4rem;
	border-radius: 8px;
	margin: 1.5rem 0;
	color: var(--text);
}

.quote-block {
	background: rgba(245, 197, 24, 0.05);
	border-left: 4px solid #f5c518;
	padding: 1.4rem;
	margin: 2rem 0;
	font-style: italic;
	color: var(--text-muted);
	border-radius: 0 8px 8px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

@media (max-width: 576px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.stat-item {
	background: #160f2a;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 1rem;
	text-align: center;
}

.stat-number {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--accent);
}

.stat-label {
	font-size: 0.78rem;
	color: var(--text-muted);
	margin-top: 4px;
}

.steps-block {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: #160f2a;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 1rem;
}

.step-num {
	background: var(--accent);
	color: #000;
	font-weight: 800;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sidebar-card {
	background: #160f2a;
	border: 1px solid var(--border);
	border-radius: 14px;
}

.sidebar-card h5 {
	color: var(--accent);
}

.text-accent {
	color: var(--accent) !important;
}

.toc-list {
	padding-left: 1.2rem;
}

.toc-list li {
	margin-bottom: 0.5rem;
}

.toc-list a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.2s;
}

.toc-list a:hover {
	color: var(--accent);
}

.rating-row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 0.6rem;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.rating-row span:first-child {
	width: 130px;
	flex-shrink: 0;
}

.rating-bar {
	flex: 1;
	height: 6px;
	background: #2a1f4a;
	border-radius: 3px;
	overflow: hidden;
}

.rating-bar div {
	height: 100%;
	background: var(--accent);
	border-radius: 3px;
}

.rating-row span:last-child {
	width: 28px;
	text-align: right;
	color: var(--accent);
	font-weight: 700;
}

.list-group-item {
	color: var(--text);
	border-color: var(--border) !important;
}

.accordion-button {
	background: #160f2a;
	color: var(--text);
	border: 1px solid var(--border);
}

.accordion-button:not(.collapsed) {
	background: rgba(245, 197, 24, 0.08);
	color: var(--accent);
	box-shadow: none;
}

.accordion-button::after {
	filter: brightness(0) saturate(100%) invert(1);
}

.accordion-body {
	background: #160f2a;
	color: var(--text-muted);
	border: 1px solid var(--border);
	border-top: none;
}

.cta-section {
	background: linear-gradient(135deg, #0d0a1a 0%, #2a1a4a 100%);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.cta-section h2 {
	color: var(--accent);
}

.btn-cta {
	display: inline-block;
	padding: 14px 32px;
	background: var(--btn-gradient);
	background-size: 200% auto;
	color: #000;
	font-weight: 700;
	border-radius: 30px;
	text-decoration: none;
	animation: shine 3s linear infinite;
	box-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
	transition: transform 0.2s;
}

.btn-cta:hover {
	transform: scale(1.04);
	color: #000;
}

footer {
	background: var(--footer-bg);
	color: var(--text-muted);
	border-top: 1px solid var(--border);
}

.disclaimer {
	color: #3a2f5a;
	font-size: 0.75rem;
}

.sticky-button {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
}

.sticky-button a {
	display: block;
	padding: 14px 22px;
	color: #000;
	text-decoration: none;
	font-weight: 700;
	border-radius: 30px;
	writing-mode: vertical-rl;
	background: var(--btn-gradient);
	background-size: 200% auto;
	animation: shine 3s linear infinite;
	box-shadow: 0 4px 20px rgba(245, 197, 24, 0.35);
	transition: transform 0.2s;
}

.sticky-button a:hover {
	transform: scale(1.05);
}

@keyframes shine {
	to {
		background-position: 200% center;
	}
}