:root {
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--black);
	color: var(--text);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
	width: 4px;
}

::-webkit-scrollbar-track {
	background: var(--black);
}

::-webkit-scrollbar-thumb {
	background: var(--gold-dark);
	border-radius: 2px;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	height: 64px;
	background: rgba(0,0,0,0.85);
	border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.nav-logo-text {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .05em;
	background: linear-gradient(135deg, var(--silver-light), var(--silver));
	-webkit-background-clip: text;
}

.nav-logo img {
	height: 32px;
	width: auto;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
}

.nav-links a {
	color: rgba(240,240,240,0.75);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .02em;
	padding: 6px 12px;
	border-radius: 6px;
	transition: color 0.2s, background .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--gold);
	background: rgba(201,168,76,0.08);
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(-6px);
	background: var(--dark-2);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-sm);
	padding: 6px;
	min-width: 180px;
	opacity: 0;
	visibility: hidden;
	transition: all .2s ease;
}

.dropdown-menu a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 13px;
	color: var(--text);
	transition: background .15s;
}

.dropdown-menu a:hover {
	background: rgba(201,168,76,0.1);
	color: var(--gold);
}

.badge-live {
	font-size: 9px;
	padding: 2px 6px;
	background: var(--green);
	color: #000;
	border-radius: 4px;
	font-weight: 700;
	letter-spacing: .05em;
}

.badge-soon {
	font-size: 9px;
	padding: 2px 6px;
	background: rgba(201,168,76,0.2);
	color: var(--gold);
	border-radius: 4px;
	font-weight: 700;
	letter-spacing: .05em;
}

.nav-cta {
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	color: #000 !important;
	font-weight: 700 !important;
	padding: 8px 18px !important;
	border-radius: 8px !important;
	font-size: 13px !important;
	letter-spacing: .03em;
	transition: transform 0.15s, box-shadow .15s !important;
	box-shadow: 0 0 20px rgba(201,168,76,0.25);
}

.nav-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 24px rgba(201,168,76,0.4) !important;
	background: rgba(0,0,0,0) !important;
}

.ticker-bar {
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	z-index: 999;
	height: 32px;
	background: var(--dark-2);
	border-bottom: 1px solid rgba(201,168,76,0.1);
	overflow: hidden;
	display: flex;
	align-items: center;
}

.ticker-track {
	display: flex;
	gap: 0;
	white-space: nowrap;
	animation: ticker 40s linear infinite;
}

.ticker-item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 28px;
	font-size: 11px;
	font-weight: 500;
	border-right: 1px solid rgba(255,255,255,0.02);
}

.ticker-symbol {
	color: var(--silver);
	font-weight: 700;
	letter-spacing: .05em;
}

.ticker-price {
	color: var(--text);
}

.ticker-up {
	color: var(--green);
}

.ticker-down {
	color: var(--red);
}

@keyframes ticker {
	0% {
		transform: translateX(0);
	}
	
	100% {
		transform: translateX(-50%);
	}
}

.hero {
	min-height: 100vh;
	padding-top: 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%), var(--black);
	text-align: center;
	padding-left: 24px;
	padding-right: 24px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(201,168,76,0.1);
	border: 1px solid rgba(201,168,76,0.2);
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 32px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--gold);
	text-transform: uppercase;
}

.hero-eyebrow span {
	width: 6px;
	height: 6px;
	background: var(--green);
	border-radius: 50%;
	animation: pulse 2s ease infinite;
}

@keyframes pulse {
	0%,100% {
		opacity: 1;
		transform: scale(1);
	}
	
	50% {
		opacity: .5;
		transform: scale(0.8);
	}
}

.hero h1 {
	font-size: clamp(48px, 8vw, 96px);
	font-weight: 900;
	line-height: .95;
	letter-spacing: -.03em;
	margin-bottom: 8px;
}

.hero h1 .line-silver {
	background: linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 40%, #888 100%);
	-webkit-background-clip: text;
	display: block;
}

.hero h1 .line-gold {
	background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
	-webkit-background-clip: text;
	display: block;
}

.hero-tagline {
	margin-top: 24px;
	margin-bottom: 48px;
	font-size: clamp(13px, 1.5vw, 16px);
	font-weight: 400;
	color: var(--text-muted);
	letter-spacing: .15em;
	text-transform: uppercase;
}

.hero-tagline strong {
	color: var(--gold);
	font-weight: 600;
}

.hero-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	color: #000;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 32px;
	border-radius: 12px;
	text-decoration: none;
	letter-spacing: .02em;
	box-shadow: 0 0 40px rgba(201,168,76,0.3);
	transition: transform 0.2s, box-shadow .2s;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 40px rgba(201,168,76,0.5);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--silver);
	font-weight: 600;
	font-size: 15px;
	padding: 14px 32px;
	border-radius: 12px;
	text-decoration: none;
	letter-spacing: .02em;
	border: 1px solid rgba(192,192,192,0.2);
	transition: border-color 0.2s, color .2s;
}

.btn-secondary:hover {
	border-color: var(--silver);
	color: #fff;
}

.hero-divider {
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	margin: 64px auto 0;
}

.stats-bar {
	display: flex;
	justify-content: center;
	gap: 0;
	border-top: 1px solid var(--glass-border);
	border-bottom: 1px solid var(--glass-border);
	background: var(--dark-2);
}

.stat-item {
	flex: 1;
	max-width: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 28px 16px;
	border-right: 1px solid var(--glass-border);
}

.stat-item:last-child {
	border-right: none;
}

.stat-number {
	font-size: 32px;
	font-weight: 800;
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
	-webkit-background-clip: text;
	line-height: 1;
}

.stat-label {
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-top: 6px;
}

section {
	padding: 100px 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.section-full {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.section-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-title {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.02em;
	background: linear-gradient(135deg, #fff, var(--silver));
	-webkit-background-clip: text;
	margin-bottom: 16px;
}

.section-sub {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.7;
	max-width: 560px;
}

.markets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
	margin-top: 56px;
}

.market-card {
	background: var(--dark-2);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius);
	padding: 32px;
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s, transform .3s;
}

.market-card::before {
	content: '';
	position: absolute;
	background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
	opacity: 0;
	transition: opacity .3s;
}

.market-card:hover {
	border-color: rgba(201,168,76,0.3);
	transform: translateY(-4px);
}

.market-card:hover::before {
	opacity: 1;
}

.market-card.live {
	border-color: rgba(0,200,83,0.2);
}

.market-card.live::after {
	content: '● LIVE';
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--green);
	background: rgba(0,200,83,0.1);
	padding: 3px 8px;
	border-radius: 4px;
}

.market-card.soon::after {
	content: 'COMING SOON';
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--gold);
	background: rgba(201,168,76,0.1);
	padding: 3px 8px;
	border-radius: 4px;
}

.market-card.info::after {
	content: 'EDUCATION';
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--silver);
	background: rgba(192,192,192,0.08);
	padding: 3px 8px;
	border-radius: 4px;
}

.market-icon {
	font-size: 36px;
	margin-bottom: 20px;
}

.market-name {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.01em;
	color: var(--silver-light);
	margin-bottom: 8px;
}

.market-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 20px;
}

.market-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.market-features li {
	font-size: 13px;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 8px;
}

.market-features li::before {
	content: '—';
	color: var(--gold);
	font-weight: 700;
}

.market-features li.active {
	color: var(--text);
}

.membership-wrap {
	background: linear-gradient(135deg, var(--dark-2) 0%, #0D0D0D 100%);
	border: 1px solid rgba(201,168,76,0.2);
	border-radius: 24px;
	padding: 64px;
	position: relative;
	overflow: hidden;
}

.membership-wrap::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
	pointer-events: none;
}

.membership-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.membership-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 40px;
}

.membership-feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: rgba(255,255,255,0.01);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	padding: 16px;
}

.feature-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	flex-shrink: 0;
	background: rgba(201,168,76,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.feature-text h4 {
	font-size: 13px;
	font-weight: 700;
	color: var(--silver-light);
	margin-bottom: 2px;
}

.feature-text p {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.5;
}

.pricing-card {
	background: var(--black);
	border: 1px solid rgba(201,168,76,0.3);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 0 60px rgba(201,168,76,0.1);
}

.pricing-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 8px;
}

.pricing-name {
	font-size: 22px;
	font-weight: 800;
	color: var(--silver-light);
	margin-bottom: 24px;
}

.pricing-amount {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	margin-bottom: 8px;
}

.pricing-amount .currency {
	font-size: 20px;
	font-weight: 700;
	color: var(--gold);
	padding-bottom: 6px;
}

.pricing-amount .amount {
	font-size: 64px;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
	-webkit-background-clip: text;
}

.pricing-amount .period {
	font-size: 14px;
	color: var(--text-muted);
	padding-bottom: 8px;
}

.pricing-note {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 32px;
}

.pricing-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 32px;
}

.pricing-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--text);
}

.pricing-list li::before {
	content: '✓';
	color: var(--green);
	font-weight: 800;
	flex-shrink: 0;
}

.pricing-divider {
	height: 1px;
	background: var(--glass-border);
	margin: 24px 0;
}

.tools-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 56px;
}

.tool-card {
	background: var(--dark-2);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius);
	padding: 32px;
	transition: border-color 0.3s, transform .3s;
}

.tool-card:hover {
	border-color: rgba(201,168,76,0.3);
	transform: translateY(-3px);
}

.tool-icon {
	font-size: 32px;
	margin-bottom: 20px;
}

.tool-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--silver-light);
	margin-bottom: 8px;
}

.tool-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
}

.tool-tag {
	display: inline-block;
	margin-top: 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 4px;
}

.tool-tag.member {
	background: rgba(201,168,76,0.1);
	color: var(--gold);
}

.tool-tag.free {
	background: rgba(0,200,83,0.1);
	color: var(--green);
}

.prop-banner {
	background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 64px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
	position: relative;
	overflow: hidden;
	margin-top: 56px;
}

.prop-banner::before {
	content: 'PROP';
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 160px;
	font-weight: 900;
	color: rgba(201,168,76,0.04);
	letter-spacing: -.05em;
	pointer-events: none;
}

.prop-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.prop-topic {
	background: rgba(255,255,255,0.01);
	border: 1px solid var(--glass-border);
	border-radius: 6px;
	padding: 6px 12px;
	font-size: 12px;
	color: var(--text-muted);
}

.community-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 56px;
}

.community-card {
	background: var(--dark-2);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius);
	padding: 32px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	transition: border-color .3s;
}

.community-card:hover {
	border-color: rgba(201,168,76,0.25);
}

.community-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	flex-shrink: 0;
	background: rgba(201,168,76,0.08);
	border: 1px solid rgba(201,168,76,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.community-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--silver-light);
	margin-bottom: 6px;
}

.community-card p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

.community-card .card-markets {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.market-tag {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .06em;
	padding: 3px 8px;
	border-radius: 4px;
	text-transform: uppercase;
}

.market-tag.futures {
	background: rgba(0,200,83,0.1);
	color: var(--green);
}

.market-tag.forex {
	background: rgba(201,168,76,0.1);
	color: var(--gold);
}

.market-tag.stocks {
	background: rgba(192,192,192,0.08);
	color: var(--silver);
}

.market-tag.crypto {
	background: rgba(100,100,255,0.1);
	color: #8888ff;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 56px;
}

.news-card {
	background: var(--dark-2);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius);
	padding: 28px;
	transition: border-color 0.3s, transform .3s;
}

.news-card:hover {
	border-color: rgba(201,168,76,0.2);
	transform: translateY(-2px);
}

.news-category {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}

.news-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--silver-light);
	line-height: 1.4;
	margin-bottom: 8px;
}

.news-preview {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

.news-meta {
	font-size: 11px;
	color: rgba(136,136,136,0.6);
	margin-top: 16px;
}

.faq-list {
	max-width: 720px;
	margin: 56px auto 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.faq-item {
	background: var(--dark-2);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	margin-bottom: 4px;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	font-size: 15px;
	font-weight: 600;
	color: var(--silver-light);
	text-align: left;
	transition: color .2s;
}

.faq-question:hover {
	color: var(--gold);
}

.faq-chevron {
	font-size: 18px;
	color: var(--gold);
	transition: transform .3s;
	flex-shrink: 0;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
	transition: max-height .35s ease, padding .35s ease;
	padding: 0 24px;
}

.faq-item.open .faq-answer {
	max-height: 200px;
	padding: 0 24px 20px;
}

.faq-item.open .faq-chevron {
	transform: rotate(45deg);
}

.insights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
	margin-top: 56px;
}

.insight-card {
	background: var(--dark-2);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.3s, transform .3s;
	display: flex;
	flex-direction: column;
}

.insight-card:hover {
	border-color: rgba(201,168,76,0.3);
	transform: translateY(-3px);
}

.insight-card-img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	background: var(--dark-3);
	display: block;
}

.insight-card-body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.insight-card-date {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 8px;
}

.insight-card-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--silver-light);
	line-height: 1.4;
	margin-bottom: 10px;
}

.insight-card-desc {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
	flex: 1;
}

.insight-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-size: 12px;
	font-weight: 700;
	color: var(--gold);
	text-decoration: none;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.insight-card-link:hover {
	color: var(--gold-light);
}

.insights-loading {
	text-align: center;
	padding: 60px 20px;
	color: var(--text-muted);
}

.insights-loading-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	margin: 0 3px;
	animation: insightDot 1.2s ease-in-out infinite;
}

.insights-loading-dot:nth-child(2) {
	animation-delay: .2s;
}

.insights-loading-dot:nth-child(3) {
	animation-delay: .4s;
}

@keyframes insightDot {
	0%,80%,100% {
		transform: scale(0.6);
		opacity: .4;
	}
	
	40% {
		transform: scale(1);
		opacity: 1;
	}
}

.cta-banner {
	background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
	border: 1px solid rgba(201,168,76,0.25);
	border-radius: 24px;
	padding: 80px 64px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,168,76,0.1), transparent);
}

.cta-banner h2 {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 900;
	letter-spacing: -.02em;
	background: linear-gradient(135deg, #fff, var(--silver));
	-webkit-background-clip: text;
	margin-bottom: 16px;
	position: relative;
}

.cta-banner p {
	font-size: 16px;
	color: var(--text-muted);
	margin-bottom: 40px;
	position: relative;
}

footer {
	background: var(--dark-2);
	border-top: 1px solid var(--glass-border);
	padding: 64px 40px 40px;
}

.footer-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-top: 12px;
	max-width: 260px;
}

.footer-brand .tagline {
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-top: 16px;
}

.footer-brand .tagline span {
	color: var(--gold);
}

.footer-col h4 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--silver);
	margin-bottom: 16px;
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-col ul li a {
	font-size: 13px;
	color: var(--text-muted);
	text-decoration: none;
	transition: color .2s;
}

.footer-col ul li a:hover {
	color: var(--gold);
}

.footer-col ul li .cs-tag {
	font-size: 9px;
	color: var(--gold);
	border: 1px solid rgba(201,168,76,0.3);
	border-radius: 3px;
	padding: 1px 5px;
	margin-left: 6px;
	font-weight: 700;
	letter-spacing: .05em;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid var(--glass-border);
	font-size: 12px;
	color: rgba(136,136,136,0.5);
}

.footer-socials {
	display: flex;
	gap: 16px;
}

.footer-socials a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 12px;
	transition: color .2s;
}

.footer-socials a:hover {
	color: var(--gold);
}

.section-line {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--glass-border) 20%, var(--glass-border) 80%, transparent 100%);
}

.discord-bar {
	background: linear-gradient(135deg, #2C2F6B, #1E2050);
	border: 1px solid rgba(88,101,242,0.3);
	border-radius: var(--radius);
	padding: 24px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	gap: 24px;
}

.discord-bar-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.discord-bar-left .discord-icon {
	font-size: 28px;
}

.discord-bar-left h3 {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

.discord-bar-left p {
	font-size: 13px;
	color: rgba(255,255,255,0.21);
}

.btn-discord {
	background: #5865F2;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	padding: 10px 24px;
	border-radius: 8px;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s;
}

.btn-discord:hover {
	background: #4752C4;
}

@media (max-width: 900px) {
	nav {
		padding: 0 20px;
	}
	
	.nav-links {
		display: none;
	}
	
	section {
		padding: 64px 20px;
	}
	
	.membership-grid {
		grid-template-columns: 1fr;
	}
	
	.membership-features {
		grid-template-columns: 1fr;
	}
	
	.tools-grid {
		grid-template-columns: 1fr;
	}
	
	.community-grid {
		grid-template-columns: 1fr;
	}
	
	.news-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.prop-banner {
		grid-template-columns: 1fr;
	}
	
	.stats-bar {
		flex-wrap: wrap;
	}
	
	.stat-item {
		min-width: 50%;
	}
	
	.markets-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.membership-wrap {
		padding: 40px 28px;
	}
	
	.float-panel-left, .float-panel-right, .float-panel-bottom {
		display: none;
	}
	
	.hero-features-row {
		flex-wrap: wrap;
		gap: 16px;
		padding: 16px 20px;
	}
	
	.hero-feat {
		padding: 0 16px;
	}
	
	.hero-feat-divider {
		display: none;
	}
	
	.hero-chrome-title {
		letter-spacing: .04em;
	}
}

@media (max-width: 540px) {
	.markets-grid {
		grid-template-columns: 1fr;
	}
	
	.hero-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.btn-primary, .btn-secondary {
		width: 100%;
		justify-content: center;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-bottom {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
	
	.cta-banner {
		padding: 48px 24px;
	}
}

.hero-chrome-title {
	font-size: clamp(52px, 9vw, 108px);
	font-weight: 900;
	line-height: .9;
	letter-spacing: .08em;
	margin-bottom: 0;
	text-transform: uppercase;
}

.chrome-text {
	display: block;
	background: linear-gradient(180deg, #FFFFFF 0%, #E8E8E8 20%, #B0B0B0 45%, #D0D0D0 55%, #787878 80%, #C0C0C0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	filter: drop-shadow(0 0 40px rgba(255,255,255,0.03));
}

.gold-shimmer {
	background: linear-gradient(135deg, #E8C97A 0%, #C9A84C 25%, #F5E0A0 50%, #C9A84C 75%, #9A7A2E 100%);
	-webkit-background-clip: text;
	background-clip: text;
	filter: drop-shadow(0 0 60px rgba(201,168,76,0.35));
	animation: shimmer 4s ease infinite;
	background-size: 200% 200%;
}

@keyframes shimmer {
	0% {
		background-position: 0 50%;
	}
	
	50% {
		background-position: 100% 50%;
	}
	
	100% {
		background-position: 0 50%;
	}
}

.hero-tagline-main {
	margin-top: 28px;
	margin-bottom: 6px;
	font-size: clamp(10px, 1.2vw, 12px);
	font-weight: 700;
	letter-spacing: .32em;
	color: rgba(240,240,240,0.35);
	text-transform: uppercase;
}

.tag-dot {
	color: rgba(201,168,76,0.5);
	margin: 0 2px;
}

.hero-tagline-featured {
	font-size: clamp(15px, 2vw, 22px) !important;
	letter-spacing: .04em !important;
	color: rgba(240,240,240,0.8) !important;
	font-weight: 400 !important;
	text-transform: none !important;
	margin-top: 8px !important;
	margin-bottom: 44px !important;
}

.hero-tagline-featured .tl-dot {
	color: var(--gold);
}

.hero-tagline-featured strong {
	color: var(--gold-light);
	font-weight: 600;
}

.hero-features-row {
	display: flex;
	align-items: center;
	gap: 0;
	margin-top: 56px;
	padding: 20px 40px;
	background: rgba(255,255,255,0.01);
	border: 1px solid rgba(201,168,76,0.12);
	border-radius: 16px;
}

.hero-feat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 0 28px;
	flex: 1;
}

.hero-feat-icon {
	color: var(--gold);
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(201,168,76,0.1);
	border-radius: 12px;
	border: 1px solid rgba(201,168,76,0.2);
}

.hero-feat-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	color: rgba(240,240,240,0.5);
	text-transform: uppercase;
	text-align: center;
}

.hero-feat-divider {
	width: 1px;
	height: 48px;
	background: linear-gradient(180deg, transparent, rgba(201,168,76,0.25), transparent);
}

.hero-created-by {
	margin-top: 32px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .2em;
	color: rgba(240,240,240,0.25);
	text-transform: uppercase;
}

.hero-float-panels {
	position: relative;
	width: 100%;
	height: 0;
	pointer-events: none;
}

.float-panel {
	position: absolute;
	background: rgba(10,10,10,0.88);
	border: 1px solid rgba(201,168,76,0.22);
	border-radius: 12px;
	padding: 14px 18px;
	min-width: 140px;
	animation: floatPan 6s ease-in-out infinite;
}

.float-panel-left {
	left: 2%;
	top: 60px;
	animation-delay: 0;
}

.float-panel-right {
	right: 2%;
	top: 80px;
	animation-delay: 2s;
}

.float-panel-bottom {
	right: 4%;
	top: 200px;
	animation-delay: 1s;
	animation-duration: 7s;
}

@keyframes floatPan {
	0%, 100% {
		transform: translateY(0px);
	}
	
	50% {
		transform: translateY(-8px);
	}
}

.float-panel-symbol {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .14em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 4px;
}

.float-panel-price {
	font-size: 17px;
	font-weight: 800;
	background: linear-gradient(135deg, #fff, #ccc);
	-webkit-background-clip: text;
	line-height: 1.2;
}

.float-panel-change {
	font-size: 11px;
	font-weight: 600;
	margin-top: 2px;
}

.float-panel-change.up {
	color: var(--green);
}

.float-panel-change.down {
	color: var(--red);
}

.float-panel-bars {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	margin-top: 8px;
	height: 28px;
}

.float-panel-bars span {
	display: block;
	width: 5px;
	background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
	border-radius: 2px;
	opacity: .8;
}

/* ─── CRITICAL OVERRIDES to beat WP theme ─── */
html, body {
	background-color: #000000 !important;
	background: #000000 !important;
	color: #F0F0F0 !important;
}

.wp-site-blocks, .is-root-container, .entry-content,
.wp-block-post-content, main, .site-content,
.wp-block-group, .wp-block-template-part {
	background: transparent !important;
	background-color: transparent !important;
	color: #F0F0F0 !important;
}

body .hero {
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%), #000000 !important;
	color: #F0F0F0 !important;
}

body .hero-eyebrow {
	background: rgba(201,168,76,0.1) !important;
	border: 1px solid rgba(201,168,76,0.2) !important;
	color: #C9A84C !important;
}

.chrome-text {
	background: linear-gradient(180deg, #FFFFFF 0%, #E8E8E8 20%, #B0B0B0 45%, #D0D0D0 55%, #787878 80%, #C0C0C0 100%) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
}

.gold-shimmer {
	background: linear-gradient(135deg, #E8C97A 0%, #C9A84C 25%, #F5E0A0 50%, #C9A84C 75%, #9A7A2E 100%) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	filter: drop-shadow(0 0 60px rgba(201,168,76,0.35)) !important;
}

body .stats-bar {
	background: #111111 !important;
}

body .stat-number {
	background: linear-gradient(135deg, #E8C97A, #C9A84C) !important;
	-webkit-background-clip: text !important;
}

body .stat-label {
	color: #888888 !important;
}

body section {
	background: transparent !important;
	color: #F0F0F0 !important;
}

body .section-title {
	background: linear-gradient(135deg, #fff, #C0C0C0) !important;
	-webkit-background-clip: text !important;
}

body .section-sub {
	color: #888888 !important;
}

body .market-card {
	background: #111111 !important;
	border-color: rgba(255,255,255,0.03) !important;
}

body .market-card.live {
	border-color: rgba(0,200,83,0.2) !important;
}

body .market-name {
	color: #E8E8E8 !important;
}

body .market-desc {
	color: #888888 !important;
}

body .market-features li {
	color: #888888 !important;
}

body .market-features li.active {
	color: #F0F0F0 !important;
}

body .membership-wrap {
	background: linear-gradient(135deg, #111111 0%, #0D0D0D 100%) !important;
}

body .membership-feature {
	background: rgba(255,255,255,0.01) !important;
}

body .feature-text h4 {
	color: #E8E8E8 !important;
}

body .feature-text p {
	color: #888888 !important;
}

body .pricing-card {
	background: #000000 !important;
}

body .pricing-name {
	color: #E8E8E8 !important;
}

body .pricing-amount .amount {
	background: linear-gradient(135deg, #E8C97A, #C9A84C) !important;
	-webkit-background-clip: text !important;
}

body .pricing-list li {
	color: #F0F0F0 !important;
}

body .pricing-note {
	color: #888888 !important;
}

body .tool-card {
	background: #111111 !important;
}

body .tool-name {
	color: #E8E8E8 !important;
}

body .tool-desc {
	color: #888888 !important;
}

body .community-card {
	background: #111111 !important;
}

body .community-card h3 {
	color: #E8E8E8 !important;
}

body .community-card p {
	color: #888888 !important;
}

body .news-card {
	background: #111111 !important;
}

body .news-title {
	color: #E8E8E8 !important;
}

body .news-preview {
	color: #888888 !important;
}

body .faq-item {
	background: #111111 !important;
}

body .faq-question {
	color: #E8E8E8 !important;
	background: transparent !important;
}

body .faq-answer {
	color: #888888 !important;
}

body .insight-card {
	background: #111111 !important;
}

body .insight-card-title {
	color: #E8E8E8 !important;
}

body .insight-card-desc {
	color: #888888 !important;
}

body footer {
	background: #111111 !important;
}

body .footer-brand p {
	color: #888888 !important;
}

body .footer-col ul li a {
	color: #888888 !important;
}

body .hero-tagline-main {
	color: rgba(240,240,240,0.35) !important;
}

body .hero-tagline-featured {
	color: rgba(240,240,240,0.8) !important;
}

body .hero-tagline-featured strong {
	color: #E8C97A !important;
}

body .hero-created-by {
	color: rgba(240,240,240,0.25) !important;
}

body .hero-feat-label {
	color: rgba(240,240,240,0.5) !important;
}

body .hero-features-row {
	background: rgba(255,255,255,0.01) !important;
	border-color: rgba(201,168,76,0.12) !important;
}

body .cta-banner {
	background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%) !important;
}

body .cta-banner h2 {
	background: linear-gradient(135deg, #fff, #C0C0C0) !important;
	-webkit-background-clip: text !important;
}

body .cta-banner p {
	color: #888888 !important;
}

body .prop-banner {
	background: linear-gradient(135deg, #111111, #1A1A1A) !important;
}

body .prop-topic {
	color: #888888 !important;
}

body a.btn-primary {
	background: linear-gradient(135deg, #C9A84C, #9A7A2E) !important;
	color: #000 !important;
}

body a.btn-secondary {
	color: #C0C0C0 !important;
	border-color: rgba(192,192,192,0.2) !important;
	background: transparent !important;
}

body a.btn-discord {
	background: #5865F2 !important;
	color: #fff !important;
}

/* ─── GREEN DOT FIX ─── */
body .hero-eyebrow span {
	display: inline-block !important;
	width: 6px !important;
	height: 6px !important;
	background: #00C853 !important;
	border-radius: 50% !important;
	flex-shrink: 0 !important;
	animation: pulse 2s ease infinite !important;
}

/* ─── TICKER COLORS FIX ─── */
body .ticker-bar {
	background: #111111 !important;
	z-index: 999 !important;
}

body .ticker-symbol {
	color: #C0C0C0 !important;
	font-weight: 700 !important;
}

body .ticker-price {
	color: #F0F0F0 !important;
}

body .ticker-up {
	color: #00C853 !important;
}

body .ticker-down {
	color: #FF3B30 !important;
}

body .ticker-item {
	font-size: 11px !important;
	font-weight: 500 !important;
}

/* ─── NAV FIX - ensure nav doesn't bleed into ticker ─── */
body nav {
	background: rgba(0,0,0,0.85) !important;
	z-index: 1000 !important;
	height: 64px !important;
}

body .ticker-bar {
	top: 64px !important;
}

/* ─── FLOAT PANEL COLORS FIX ─── */
body .float-panel {
	background: rgba(10,10,10,0.88) !important;
	border: 1px solid rgba(201,168,76,0.22) !important;
}

body .float-panel-symbol {
	color: #C9A84C !important;
}

body .float-panel-price {
	background: linear-gradient(135deg, #fff, #ccc) !important;
	-webkit-background-clip: text !important;
}

body .float-panel-change.up {
	color: #00C853 !important;
}

body .float-panel-change.down {
	color: #FF3B30 !important;
}

/* ─── HERO EYEBROW FIX ─── */
body .hero-eyebrow {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	background: rgba(201,168,76,0.1) !important;
	border: 1px solid rgba(201,168,76,0.2) !important;
	padding: 6px 16px !important;
	border-radius: 100px !important;
	color: #C9A84C !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: .12em !important;
	text-transform: uppercase !important;
}

/* ─── FAQ TOGGLE FIX (pure CSS fallback) ─── */
body .faq-item details summary {
	cursor: pointer;
}

/* ─── SECTION GOLD EYEBROW ─── */
body .section-eyebrow {
	color: #C9A84C !important;
}

/* ─── MARKET FEATURES DASH COLOR ─── */
body .market-features li::before {
	color: #C9A84C !important;
}

/* ─── MARKET CARD HOVER ─── */
body .market-card.live::after {
	content: '● LIVE' !important;
	color: #00C853 !important;
	background: rgba(0,200,83,0.1) !important;
	position: absolute !important;
	top: 16px !important;
	right: 16px !important;
	font-size: 9px !important;
	font-weight: 700 !important;
	padding: 3px 8px !important;
	border-radius: 4px !important;
}

body .market-card.soon::after {
	content: 'COMING SOON' !important;
	color: #C9A84C !important;
	background: rgba(201,168,76,0.1) !important;
	position: absolute !important;
	top: 16px !important;
	right: 16px !important;
	font-size: 9px !important;
	font-weight: 700 !important;
	padding: 3px 8px !important;
	border-radius: 4px !important;
}

body .market-card.info::after {
	content: 'EDUCATION' !important;
	color: #C0C0C0 !important;
	background: rgba(192,192,192,0.08) !important;
	position: absolute !important;
	top: 16px !important;
	right: 16px !important;
	font-size: 9px !important;
	font-weight: 700 !important;
	padding: 3px 8px !important;
	border-radius: 4px !important;
}

/* ─── NAV CTA GOLD BUTTON FIX ─── */
body a.nav-cta {
	background: linear-gradient(135deg, #C9A84C, #9A7A2E) !important;
	color: #000 !important;
	font-weight: 700 !important;
	padding: 8px 18px !important;
	border-radius: 8px !important;
}

/* ─── PRICING LIST CHECK MARKS ─── */
body .pricing-list li::before {
	color: #00C853 !important;
}

/* ─── FOOTER BRAND TAGLINE ─── */
body .footer-brand .tagline span {
	color: #C9A84C !important;
}

body .footer-col h4 {
	color: #C0C0C0 !important;
}

body .footer-bottom {
	color: rgba(136,136,136,0.5) !important;
}

body .footer-socials a {
	color: #888888 !important;
}

/* ── Pricing nav fix ── */
header.cd-nav > a:not(.cd-brand) {
	text-decoration: none !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	letter-spacing: .02em !important;
	color: rgba(240,240,240,0.75) !important;
	padding: 6px 12px !important;
	border-radius: 6px !important;
	transition: color 0.2s, background .2s !important;
}

header.cd-nav > a:not(.cd-brand):hover {
	color: #fff !important;
	background: rgba(255,255,255,0.06) !important;
	text-decoration: none !important;
}

/* ═══ MOBILE NAV FIX ═══ */
/* Show hamburger on mobile */
@media (max-width: 900px) {
	.cd-hamburger {
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background: none;
		border: 1px solid rgba(201,168,76,0.3);
		border-radius: 8px;
		color: #c9a84c;
		font-size: 18px;
		cursor: pointer;
		z-index: 1100;
		position: relative;
	}
	
	/* Hide desktop nav links + top-level nav items */
	.cd-links,
	  .nav-links,
	  header.cd-nav > a:not(.cd-brand):not(.cd-hamburger),
	  header.cd-nav .cd-cta,
	  header.cd-nav .cd-pricing-link,
	  header.cd-nav .cd-nav-link,
	  header.cd-nav > .cd-dropdown {
		display: none !important;
	}
	
	/* Mobile slide-in panel */
	.cd-mobile-menu {
		position: fixed;
		top: 64px;
		left: 0;
		right: 0;
		bottom: 0;
		background: #0a0a0a;
		border-top: 1px solid rgba(201,168,76,0.2);
		z-index: 999;
		overflow-y: auto;
		padding: 24px 24px 40px;
		display: flex;
		flex-direction: column;
		gap: 4px;
		transform: translateX(100%);
		transition: transform .3s ease;
	}
	
	.cd-mobile-menu.open {
		transform: translateX(0);
	}
	
	.cd-mobile-menu a,
	  .cd-mobile-menu .cd-mob-item {
		display: block;
		color: rgba(240,240,240,0.8) !important;
		text-decoration: none !important;
		font-size: 15px;
		font-weight: 500;
		padding: 13px 16px;
		border-radius: 10px;
		border: none;
		background: none;
		text-align: left;
		width: 100%;
		cursor: pointer;
		transition: background 0.2s, color .2s;
		letter-spacing: .02em;
	}
	
	.cd-mobile-menu a:hover,
	  .cd-mobile-menu .cd-mob-item:hover {
		background: rgba(201,168,76,0.08);
		color: #fff !important;
	}
	
	.cd-mobile-menu .cd-mob-group {
		border-top: 1px solid #1a1a1a;
		margin-top: 8px;
		padding-top: 8px;
	}
	
	.cd-mobile-menu .cd-mob-label {
		font-size: 10px;
		letter-spacing: 2px;
		text-transform: uppercase;
		color: #c9a84c;
		padding: 8px 16px 4px;
		font-weight: 600;
	}
	
	.cd-mobile-menu .cd-mob-cta {
		display: block;
		background: linear-gradient(135deg, #c9a84c, #a8893d) !important;
		color: #000 !important;
		font-weight: 700 !important;
		text-align: center;
		border-radius: 10px;
		padding: 14px;
		margin-top: 16px;
		font-size: 15px;
	}
	
	/* Fix: close dropdowns on mobile (they were stuck open via hover CSS) */
	.cd-dropdown .cd-submenu,
	  .nav-dropdown .dropdown-menu {
		display: none !important;
		position: static !important;
		box-shadow: none !important;
	}
}

@media (max-width: 540px) {
	.cd-hamburger {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
}

/* === Chart District — Mobile Nav & Footer === */
.cd-hamburger{display:none;cursor:pointer;background:none;border:none;color:#fff;font-size:26px;line-height:1;padding:4px 8px;z-index:1001;position:relative;}
.cd-footer-social a{display:flex;align-items:center;gap:8px;padding:4px 0;transition:opacity .2s;}
.cd-footer-social a:hover{opacity:.7;}
.cd-footer-social svg{flex-shrink:0;}

@media(max-width:768px){
  .cd-hamburger{display:block!important;}
  .cd-nav .cd-dropdown,.cd-nav .cd-nav-link,.cd-nav .cd-nav-btn{display:none!important;}
  .cd-nav .cd-menu{display:none!important;}
  .cd-nav.cd-open{flex-wrap:wrap;}
  .cd-nav.cd-open .cd-dropdown{display:block!important;width:100%;padding:2px 0;}
  .cd-nav.cd-open .cd-dropdown>a{padding:10px 20px;display:block;font-size:15px;}
  .cd-nav.cd-open .cd-nav-link{display:block!important;padding:10px 20px;width:100%;font-size:15px;}
  .cd-nav.cd-open .cd-nav-btn{display:inline-block!important;margin:12px 20px;}
  .cd-nav.cd-open .cd-submenu{position:static!important;display:block!important;padding-left:20px;background:transparent!important;box-shadow:none!important;opacity:1!important;visibility:visible!important;transform:none!important;}
  .cd-nav.cd-open .cd-submenu a{padding:6px 16px;font-size:13px;opacity:.75;}
  .cd-nav{display:flex!important;align-items:center!important;justify-content:space-between!important;padding:12px 16px!important;position:sticky!important;top:0!important;z-index:1000!important;}
  .cd-brand{flex:1!important;}
  .cd-brand span{font-size:13px!important;}
  .cd-logo-img{height:28px!important;width:auto!important;}
  .cd-footer{flex-direction:column!important;gap:24px!important;padding:32px 20px!important;}
  .cd-footer>div{width:100%!important;}
  .cd-footer-social a{display:inline-flex!important;align-items:center;gap:6px;margin-right:12px;margin-bottom:8px;}
  body{overflow-x:hidden;}
}
@media(min-width:769px){
  .cd-hamburger{display:none!important;}
}

/* ═══════════════════════════════════════════
   PROFESSIONAL FOOTER — cd-footer
═══════════════════════════════════════════ */

.cd-footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 64px 0 0;
  width: 100%;
  position: relative;
  z-index: 10;
  clear: both;
  margin-top: 0;
}

.cd-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 56px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}

.cd-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cd-footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cd-footer-logo-link span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  background: linear-gradient(135deg, #e8e8e8, #b0b0b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cd-footer-brand p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  max-width: 280px;
  margin: 0;
}

.cd-footer-discord {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #c9a84c;
  text-decoration: none;
  letter-spacing: .03em;
  transition: opacity .2s;
  margin-top: 4px;
}

.cd-footer-discord:hover { opacity: .75; }

.cd-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.cd-footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.cd-footer-col a {
  display: block;
  font-size: 13px;
  color: #777;
  text-decoration: none;
  padding: 4px 0;
  transition: color .2s;
  line-height: 1.5;
}

.cd-footer-col a:hover { color: #e8e8e8; }

.cd-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cd-footer-bottom span {
  font-size: 12px;
  color: #444;
  line-height: 1.5;
}

.cd-footer-disclaimer {
  max-width: 480px;
  text-align: right;
}

/* Override old generic footer styles */
body .cd-section > footer.cd-footer,
body footer.cd-footer {
  background: #0d0d0d !important;
  padding: 64px 0 0 !important;
}

/* ═══════════════════════════════════════════
   MOBILE TICKER TOGGLE
═══════════════════════════════════════════ */

.cd-ticker-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  color: #c9a84c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 12px;
  cursor: pointer;
  margin-left: auto;
  transition: border-color .2s, color .2s;
}

.cd-ticker-toggle:hover {
  border-color: rgba(201,168,76,0.6);
  color: #e8c97a;
}

@media (max-width: 900px) {
  .cd-ticker-toggle {
    display: flex !important;
  }

  .cd-ticker {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
  }

  .cd-ticker.cd-ticker-open {
    display: flex !important;
  }
}

/* ═══════════════════════════════════════════
   FOOTER RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 960px) {
  .cd-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 32px 48px;
  }
  .cd-footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .cd-footer-brand p { max-width: 100%; }
  .cd-footer-disclaimer { text-align: left; }
}

@media (max-width: 540px) {
  .cd-footer { padding: 48px 0 0; }
  .cd-footer-inner { padding: 0 20px 40px; gap: 32px; }
  .cd-footer-cols { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cd-footer-bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .cd-footer-disclaimer { text-align: left; max-width: 100%; }
}

/* FOOTER DISPLAY FIX */
.cd-footer {
  display: block !important;
}
.cd-footer-inner {
  display: grid !important;
  grid-template-columns: 2fr 3fr !important;
}
.cd-footer-bottom {
  display: flex !important;
  grid-template-columns: unset !important;
}


/* ═══════════════════════════════════════════
   MOBILE TICKER — ALWAYS VISIBLE, STICKY
═══════════════════════════════════════════ */
/* Remove old hide behavior — ticker stays fixed below nav on ALL screen sizes */
@media (max-width: 900px) {
  .cd-ticker {
    display: flex !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
  }
  .cd-ticker-toggle {
    display: none !important;
  }
  /* Push page content below nav + ticker on mobile */
  .cd-site, .cd-hero, .wp-block-group > main {
    padding-top: 0 !important;
  }
}

/* ═══════════════════════════════════════════
   NAV HAMBURGER — FIX CLICK + MOBILE MENU
═══════════════════════════════════════════ */
/* Ensure mobile menu starts hidden and transitions correctly */
.cd-mobile-menu {
  display: none;
  position: fixed;
  top: 98px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(201,168,76,0.2);
  z-index: 998;
  overflow-y: auto;
  padding: 24px 24px 60px;
  flex-direction: column;
  gap: 4px;
}
.cd-mobile-menu.cd-open {
  display: flex !important;
}
@media (max-width: 900px) {
  .cd-hamburger {
    display: flex !important;
    cursor: pointer;
    z-index: 1100;
  }
}

/* ═══════════════════════════════════════════
   SINGLE POST / ARTICLE PAGE LAYOUT
═══════════════════════════════════════════ */
/* Push single post content below fixed nav + ticker */
.single .wp-block-post-content,
.single-post .entry-content,
.single main.wp-block-group,
body.single > .wp-site-blocks > main {
  padding-top: 20px;
}

/* Article container */
.single .wp-block-post,
.single article.post {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* Post title */
.single h1.wp-block-post-title,
.single .entry-title,
.single article h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: #e8e8e8;
  margin: 120px 0 0;
  padding-top: 20px;
}

/* Featured image — full width, above title */
.single .wp-block-post-featured-image,
.single .wp-post-image,
.single .post-thumbnail {
  width: 100%;
  max-width: 780px;
  margin: 140px auto 0;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.single .wp-block-post-featured-image img,
.single .wp-post-image,
.single .post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Post meta — author + date between image and content */
.single .wp-block-post-author,
.single .wp-block-post-date,
.single .post-meta,
.single .entry-meta {
  font-size: 12px;
  color: #555;
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.single .wp-block-post-author__name,
.single .wp-block-post-author a {
  color: #c9a84c;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}

/* Divider line between meta and content */
.single .wp-block-post-content,
.single .entry-content {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 15px;
  line-height: 1.8;
  color: #c0c0c0;
}

.single .wp-block-post-content p,
.single .entry-content p {
  margin-bottom: 20px;
  color: #b8b8b8;
}

.single .wp-block-post-content h2,
.single .wp-block-post-content h3,
.single .entry-content h2,
.single .entry-content h3 {
  color: #e8e8e8;
  margin: 32px 0 12px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   ALL PAGES: push content below fixed nav+ticker
═══════════════════════════════════════════ */
/* Nav is 64px, ticker is ~34px = 98px total offset */
.wp-site-blocks {
  padding-top: 98px !important;
}
/* But home page already handles its own offset via cd-site */
.home .wp-site-blocks {
  padding-top: 0 !important;
}
