:root {
    --primary-gold: #C9A961;
    --dark-gold: #B8932F;
    --light-gold: #E8D5A3;
    --cream: #FFF8F0;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --success: #00d26a;
    --warning: #ff9500;
    --danger: #ff3b30;
    --gradient-gold: linear-gradient(135deg, #C9A961 0%, #E8D5A3 50%, #B8932F 100%);
    --glow-gold: 0 0 20px rgba(201, 169, 97, 0.5);
}

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

.fomo-hero {
	min-height: 100vh;
	background: var(--darker-bg);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	background-image: url("/images/backgrounds/temple_anmc.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 5s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 0.6; transform: translateY(-100px) scale(1); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.fomo-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 48, 0.2);
    border: 1px solid rgba(255, 59, 48, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff3b30;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.live-badge.pulse {
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff3b30;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.mega-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1;
    margin-bottom: 20px;
}

.gradient-text {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 60px rgba(201, 169, 97, 0.5);
}

.title-sub {
    display: block;
    font-size: 0.25em;
    color: var(--text-light);
    letter-spacing: 0.3em;
    margin-top: 10px;
}

.price-ladder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.price-step {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.price-step.current {
    background: rgba(201, 169, 97, 0.2);
    border: 2px solid var(--primary-gold);
    transform: scale(1.1);
    box-shadow: var(--glow-gold);
}

.price-step.listing {
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.2) 0%, rgba(0, 150, 76, 0.2) 100%);
    border: 2px solid var(--success);
}

.step-label {
	font-size: 1.3rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
	font-weight: bold;
}
.step-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.step-tag {
	font-size: 1.1rem;
	color: #fff;
	margin-top: 5px;
}

.step-multiplier {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 5px;
}

.step-multiplier.fire {
    font-size: 1.1rem;
    animation: glow-pulse 1.5s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 210, 106, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 210, 106, 0.8); }
}

.ladder-arrow {
    color: var(--primary-gold);
    opacity: 0.5;
}

.ladder-arrow svg {
    width: 24px;
    height: 24px;
}

.urgency-message {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgb(252, 233, 189);
	border: 1px solid rgb(252, 233, 189);
	padding: 12px 25px;
	border-radius: 10px;
	color: #000;
	margin-bottom: 30px;
	font-size: 20px;
}
.warning-icon {
    font-size: 1.2rem;
}

.countdown-section {
    margin-bottom: 40px;
}

.countdown-label {
	font-size: 1.1rem;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 15px;
	font-weight: bold;
}
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 70px;
}

.time-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Courier New', monospace;
}

.time-label {
	font-size: 1.1rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.time-separator {
    font-size: 2rem;
    color: var(--primary-gold);
    line-height: 70px;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 20px 50px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.4);
}

.cta-button.pulse-glow {
    animation: cta-glow 2s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { box-shadow: 0 5px 30px rgba(201, 169, 97, 0.3); }
    50% { box-shadow: 0 5px 50px rgba(201, 169, 97, 0.6); }
}

.cta-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.cta-sub {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.live-stats-strip {
	background: rgb(251, 232, 187);
	border-top: 1px solid rgba(201, 169, 97, 0.2);
	border-bottom: 1px solid rgba(201, 169, 97, 0.2);
	padding: 20px 0;
}

.stats-ticker {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item.highlight {
    background: rgba(255, 149, 0, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: #000; 
}

.stat-label {
    font-size: 1rem;
    color: #000;
}
.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.profit-calculator {
    background: var(--dark-bg);
    padding: 80px 0;
}

.section-title {
	font-size: 2.5rem;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}
.section-title.glow-text {
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.3);
}

.section-subtitle {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 50px;
}

.calc-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.calc-input-section {
    margin-bottom: 30px;
}

.calc-input-section label {
	display: block;
	color: #fff;
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 1.1rem;
}

.input-with-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.quick-amount {
	flex: 1;
	min-width: 80px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(201, 169, 97, 0.3);
	border-radius: 10px;
	color: var(--text-light);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

.quick-amount:hover, .quick-amount.active {
    background: rgba(201, 169, 97, 0.2);
    border-color: var(--primary-gold);
}

.calc-input-section input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1.2rem;
    outline: none;
}

.calc-input-section input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.2);
}

.calc-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.result-card {
    text-align: center;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    min-width: 200px;
}

.result-card.highlight {
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.15) 0%, rgba(0, 150, 76, 0.1) 100%);
    border: 1px solid rgba(0, 210, 106, 0.3);
}

.result-label {
	font-size: 1.1rem;
	color: #fff;
	margin-bottom: 10px;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.result-card.highlight .result-value {
    color: var(--success);
}

.result-unit {
    font-size: 0.85rem;
    color:#fff;font-size: 1.1rem;
}

.result-profit {
    font-size: 1rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 10px;
}

.result-arrow {
    font-size: 2rem;
    color: var(--primary-gold);
}

.roi-display {
    text-align: center;
    padding: 20px;
    background: var(--gradient-gold);
    border-radius: 15px;
}

.roi-label {
    color: var(--dark-bg);
    font-weight: 600;
    margin-right: 10px;
}

.roi-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-bg);
}

.tier-comparison {
    background: var(--darker-bg);
    padding: 80px 0;
}

.tiers-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.tier-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tier-card.active {
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
    transform: scale(1.05);
}

.tier-card.active.visible {
    transform: scale(1.05);
}

.tier-card.sold-out {
    opacity: 0.6;
}

.tier-card.upcoming {
    opacity: 0.7;
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.tier-badge.best {
    background: var(--success);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 210, 106, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 210, 106, 0); }
}

.tier-badge.sold {
    background: var(--text-muted);
}

.tier-badge.upcoming {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.tier-name {
    font-size: 1.3rem;
    color: var(--text-light);
    margin: 20px 0 15px;
}

.tier-price-display {
    margin-bottom: 15px;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--primary-gold);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.tier-roi {
    margin-bottom: 20px;
}

.roi-multiplier {
    display: inline-block;
    background: rgba(0, 210, 106, 0.2);
    color: var(--success);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.5rem;
}

.roi-text {
	display: block;
	font-size: 1.2rem;
	color: #fff;
	margin-top: 5px;
}

.tier-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.tier-benefits li {
	color: #fff;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	padding-left: 25px;
	font-size: 1.1rem;
}
.tier-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
}

.tier-progress-section {
    margin-bottom: 20px;
}

.progress-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-stats {
	display: flex;
	justify-content: space-between;
	font-size: 1.1rem;
	color: #fff;
}

.tier-cta-btn {
    display: block;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tier-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.price-warning-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    max-width: 700px;
    margin: 0 auto;
}

.warning-content strong {
    color: var(--warning);
    display: block;
    margin-bottom: 5px;
}

.warning-content p {
	color: #fff;
	margin: 0;
	font-size: 1.1rem;
}
.referral-spotlight {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(201, 169, 97, 0.1) 100%);
    padding: 80px 0;
	
}
.referral-spotlight::before {
	content: "";
	background-image: url("https://ancientmuseum.org/images/artifacts/vajra-main.png");
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	z-index: 9;
	opacity: 0.1;
}

.referral-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.referral-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.2);
    color: var(--primary-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.referral-info .section-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 20px;
}

.highlight-gold {
    color: var(--primary-gold);
}

.referral-description {
	color: #fff;
	font-size: 1.2rem;
	margin-bottom: 30px;
	line-height: 1.7;
}

.referral-example {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.example-header {
	color: #fff;
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.example-calc {
    display: flex;
    flex-direction: column;
    gap: 10px;color: #fff;
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.calc-row.highlight {
    color: var(--text-light);
    font-weight: 600;
}

.calc-row.gold {
    color: var(--primary-gold);
    font-weight: 700;
    border-bottom: none;
}

.referral-steps {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.step-arrow {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.referral-cta {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.referral-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.referral-visual {
    display: flex;
    justify-content: center;
}

.earning-showcase {
    background: rgba(20, 20, 25, 0.95);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.showcase-header {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaderboard-preview {
    margin-bottom: 20px;
}

.leader-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rank {
    font-size: 1.8rem;
}

.name {
    flex: 1;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.earnings {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

.your-potential {
    text-align: center;
    padding: 18px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 12px;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

.artifact-benefits {
    background: var(--darker-bg);
    padding: 80px 0;
}

.artifacts-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.artifact-card {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.artifact-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.artifact-card:nth-child(2) {
    transform: translateX(30px);
}

.artifact-card:nth-child(2).visible {
    transform: translateX(0);
}

.artifact-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.artifact-image {
    position: relative;
    width: 150px;
    flex-shrink: 0;
}

.artifact-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.artifact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artifact-card:hover .artifact-glow {
    opacity: 1;
}

.artifact-info {
    flex: 1;
}

.artifact-value-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.artifact-info h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.artifact-age {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.artifact-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.artifact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.artifact-link:hover {
    text-decoration: underline;
}

.holder-benefits h3 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.museum-roadmap {
    background: var(--dark-bg);
    padding: 80px 0;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(201, 169, 97, 0.3);
}

.roadmap-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.roadmap-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-marker {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.roadmap-item.completed .roadmap-marker {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.roadmap-item.active .roadmap-marker {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.roadmap-marker.pulse {
    animation: marker-pulse 2s ease-in-out infinite;
}

@keyframes marker-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(201, 169, 97, 0); }
}

.roadmap-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
}

.roadmap-date {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.roadmap-content h4 {
    color: var(--text-light);
    margin: 10px 0;
    font-size: 1.2rem;
}

.roadmap-content ul {
    list-style: none;
    color: var(--text-muted);
}

.roadmap-content li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.roadmap-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.faq-section {
    background: var(--darker-bg);
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.final-cta {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(201, 169, 97, 0.15) 100%);
    padding: 100px 0;
    text-align: center; position:relative;
}
.final-cta::before {
	content: "";
	background-image: url("https://ancientmuseum.org/images/artifacts/vajra-main.png");
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	z-index: 9;
	opacity: 0.1;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 149, 0, 0.2);
    border: 1px solid rgba(255, 149, 0, 0.3);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--warning);
    margin-bottom: 30px;
    animation: shake 5s ease-in-out infinite;
}

@keyframes shake {
    0%, 90%, 100% { transform: translateX(0); }
    92%, 96% { transform: translateX(-5px); }
    94%, 98% { transform: translateX(5px); }
}

.timer-icon {
    font-size: 1.2rem;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.final-cta > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.final-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.final-stat {
    text-align: center;
}

.final-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.final-stat.highlight .stat-number {
    color: var(--success);
}

.stat-desc {
    font-size: 1.1rem;
    color: #fff;
}

.final-stat-arrow {
    font-size: 2rem;
    color: var(--primary-gold);
}

.mega-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 25px 60px;
    border-radius: 20px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    animation: mega-pulse 2s ease-in-out infinite;
}

@keyframes mega-pulse {
    0%, 100% { box-shadow: 0 5px 30px rgba(201, 169, 97, 0.3); transform: scale(1); }
    50% { box-shadow: 0 10px 50px rgba(201, 169, 97, 0.5); transform: scale(1.02); }
}

.mega-cta-button:hover {
    transform: scale(1.05);
}

.cta-emoji {
    font-size: 2rem;
    margin-bottom: 5px;
}

.cta-main {
    font-size: 1.5rem;
    font-weight: 700;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    color: #fff;
    font-size: 1.1rem;
}

.sticky-cta-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    padding: 15px 0;
    z-index: 1000;
    transition: bottom 0.3s ease;
    backdrop-filter: blur(10px);
}

.sticky-cta-bar.visible {
    bottom: 0;
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.sticky-info {
    text-align: center;
}

.sticky-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.sticky-label {
    font-size: 1.1rem;
    color: #fff;
}

.sticky-countdown {
    text-align: center;
}

#sticky-timer {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
}

.sticky-btn {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

@media (max-width: 1024px) {
    .referral-content {
        grid-template-columns: 1fr;
    }
    
    .artifacts-showcase {
        grid-template-columns: 1fr;
    }
    
    .artifact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mega-title {
        font-size: 3rem;
    }
    
    .price-ladder {
        flex-direction: column;
    }
    
    .ladder-arrow {
        transform: rotate(90deg);
    }
    
    .price-step.current {
        transform: scale(1);
    }
    
    .tier-card.active {
        transform: scale(1);
    }
    
    .final-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .final-stat-arrow {
        transform: rotate(90deg);
    }
    
    .sticky-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stats-ticker {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-divider {
        display: none;
    }
}
