/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-gold: #D4AF37;
	--gold-dark: #8B7355;
	--gold-light: #F4E4BC;
	--gold-bright: #FFD700;
	--gold-luxury: #B8860B;
	--metallic-gold: linear-gradient(135deg, #d4af37 0%, #f4e4bc 15%, #ffd700 30%, #d4af37 50%, #b8860b 70%, #8b7355 85%, #d4af37 100%);
	--metallic-gold-subtle: linear-gradient(135deg, #d4af37 0%, #f4e4bc 25%, #ffd700 50%, #b8860b 75%, #d4af37 100%);
	--metallic-gold-card: linear-gradient(145deg, rgba(212, 175, 55, 0.15) 0%, rgba(139, 115, 85, 0.08) 100%);
	--dark-bg: #000000;
	--darker-bg: #111111;
	--light-bg: #ffffff;
	--card-bg: rgba(212, 175, 55, 0.08);
	--text-primary: #ffffff;
	--text-secondary: #b0b0b0;
	--text-dark: #000000;
	--accent-glow: rgba(212, 175, 55, 0.4);
	--shadow-glow: 0 0 30px rgba(212, 175, 55, 0.4);
	--metallic-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(212, 175, 55, 0.2);
	--border-radius: 12px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: "Inter", sans-serif;
	background: var(--dark-bg);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	transition: background-color 0.3s ease, color 0.3s ease;
	position: relative;
}

/* Minecraft-style font for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Orbitron", monospace;
	font-weight: 800;
	letter-spacing: 0.05em;
}

body.light-theme {
	background: var(--light-bg);
	color: var(--text-dark);
}


/* Social Section */
.social-section {
	padding: 4rem 2rem;
	background: var(--dark-bg);
	text-align: center;
}

.social-section h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	background: var(--metallic-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.social-section>p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
}

.social-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.social-card {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem;
	background: var(--card-bg);
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-decoration: none;
	color: var(--text-primary);
	transition: var(--transition);
}

.social-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-gold);
	box-shadow: var(--shadow-glow);
}

.social-card .social-icon {
	width: 60px;
	height: 60px;
	background: var(--metallic-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.social-card .social-icon img {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}

.social-card .social-content {
	text-align: left;
}

.social-card .social-content h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.social-card .social-content p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

/* Hero Section */
.hero {
	min-height: 92vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	background: linear-gradient(to bottom, transparent 0%, var(--darker-bg) 100%);
	pointer-events: none;
	z-index: 1;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.hero-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.hero-particle {
	position: absolute;
	width: 5px;
	height: 5px;
	background: radial-gradient(circle, rgba(255, 215, 0, 1) 0%, rgba(255, 215, 0, 0.7) 40%, rgba(255, 215, 0, 0.3) 70%, transparent 100%);
	border-radius: 50%;
	opacity: 0.7;
	box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
	animation: floatParticle 15s infinite ease-in-out;
}

@keyframes floatParticle {
	0% {
		transform: translate(0, 0) scale(0.5);
		opacity: 0;
	}

	10% {
		opacity: 0.7;
	}

	90% {
		opacity: 0.7;
	}

	100% {
		transform: translate(var(--particle-x, 100px), var(--particle-y, -100px)) scale(1);
		opacity: 0;
	}
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.ingot-bg {
	display: none;
	position: absolute;
	width: 88px;
	height: 88px;
	opacity: 0.6;
	animation: floatIngot 8s ease-in-out infinite;
	background: transparent;
}

.ingot-1 {
	top: 6%;
	left: 8%;
	animation-delay: 0s;
	animation-duration: 6s;
}

.ingot-2 {
	top: 14%;
	right: 6%;
	animation-delay: 1s;
	animation-duration: 8s;
}

.ingot-3 {
	top: 30%;
	left: 4%;
	animation-delay: 2s;
	animation-duration: 7s;
}

.ingot-4 {
	top: 42%;
	right: 18%;
	animation-delay: 3s;
	animation-duration: 9s;
}

.ingot-5 {
	top: 54%;
	left: 20%;
	animation-delay: 4s;
	animation-duration: 6.5s;
}

.ingot-6 {
	top: 66%;
	right: 12%;
	animation-delay: 5s;
	animation-duration: 7.5s;
}

.ingot-7 {
	bottom: 14%;
	left: 10%;
	animation-delay: 1.5s;
	animation-duration: 6.8s;
}

.ingot-8 {
	bottom: 38%;
	right: 10%;
	animation-delay: 3.5s;
	animation-duration: 8.2s;
}

.ingot-9 {
	bottom: 4%;
	left: 22%;
	animation-delay: 2.5s;
	animation-duration: 7.2s;
}

.ingot-10 {
	bottom: 10%;
	right: 26%;
	animation-delay: 4.5s;
	animation-duration: 6.5s;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	padding: 1rem;
}

.logo-section {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.logo-image {
	max-width: 400px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
	transition: var(--transition);
}

.logo-image:hover {
	filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.6));
	transform: scale(1.02);
}

.tagline {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-top: 3rem;
	margin-bottom: 0.8rem;
	letter-spacing: 0.1em;
}

.description {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.7;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 0;
	max-width: 100%;
}

.btn {
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
	width: 100%;
	max-width: 400px;
	box-sizing: border-box;
}

.btn-primary {
	background: var(--metallic-gold);
	color: var(--text-dark);
	box-shadow: var(--metallic-shadow), var(--shadow-glow);
	border: 1px solid rgba(255, 215, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	background: var(--metallic-gold-subtle);
	color: var(--text-dark);
	transform: translateY(-2px);
	box-shadow: var(--metallic-shadow), 0 0 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
	background: var(--primary-gold);
	color: var(--text-dark);
	transform: translateY(-2px);
}

.ca-section {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--metallic-gold-card);
	padding: 1rem 1.5rem;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.15);
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	margin-bottom: 1.5rem;
	justify-content: space-between;
	backdrop-filter: blur(10px);
	box-shadow: var(--metallic-shadow);
	position: relative;
	overflow: hidden;
	flex-wrap: nowrap;
	box-sizing: border-box;
}

.ca-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.ca-text {
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
	color: var(--text-primary);
	letter-spacing: 0.05em;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	min-width: 0;
}

.copy-btn,
.explorer-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--metallic-gold-card);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: var(--metallic-shadow);
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.copy-btn::before,
.explorer-link::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
	border-radius: 50%;
}

.copy-btn:hover,
.explorer-link:hover {
	background: var(--metallic-gold);
	transform: translateY(-1px);
	box-shadow: var(--metallic-shadow), var(--shadow-glow);
}

.copy-btn img,
.explorer-link img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
	transition: var(--transition);
}

.copy-btn:hover img,
.explorer-link:hover img {
	filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg);
}

.status-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--metallic-gold);
	color: var(--text-dark);
	font-weight: 600;
	border-radius: var(--border-radius);
	font-size: 0.9rem;
}

/* Token Details Section */
.token-details {
	padding: 1rem 2rem 4rem;
	background: var(--darker-bg);
	position: relative;
	margin-top: -1px;
}

.ca-card-wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: nowrap;
	width: 100%;
	margin-top: 0.5rem;
}

.ca-card .ca-text {
	font-family: "Courier New", monospace;
	font-size: 1rem;
	color: var(--text-primary);
	letter-spacing: 0.05em;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	min-width: 0;
	font-weight: 500;
}

.ca-card .copy-btn {
	flex-shrink: 0;
}

.token-details h2 {
	font-size: 2.5rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 3rem;
	background: var(--metallic-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.token-details-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.token-details-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.detail-card {
	background: var(--metallic-gold-card);
	padding: 2rem;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.detail-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.detail-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-gold);
	box-shadow: var(--metallic-shadow), var(--shadow-glow);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.detail-card:hover .detail-icon i {
	text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
	filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
	transform: scale(1.05);
}

.detail-icon {
	width: 60px;
	height: 60px;
	background: var(--metallic-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: var(--metallic-shadow);
	border: 2px solid rgba(255, 215, 0, 0.3);
	position: relative;
}

.detail-icon::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
	border-radius: 50%;
}

.detail-icon i {
	font-size: 24px;
	color: #ffffff;
	z-index: 1;
	position: relative;
	text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
	filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.2));
}

.detail-content {
	text-align: left;
	flex: 1;
}

.detail-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	letter-spacing: 0.1em;
}

.detail-value {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.detail-value sup {
	font-size: 0.55em;
	vertical-align: super;
	font-weight: 600;
	opacity: 0.85;
	margin-left: 0.05em;
}

.detail-desc {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

/* Supply Burn Progress Bar */
.burn-progress-container {
	max-width: 1200px;
	margin: 3rem auto 0;
	padding: 2rem;
	background: var(--metallic-gold-card);
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
}

.burn-progress-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.burn-progress-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
}

.burn-progress-percentage {
	font-size: 1.8rem;
	font-weight: 800;
	background: var(--metallic-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.burn-progress-bar-wrapper {
	margin-bottom: 0.5rem;
}

.burn-progress-bar {
	width: 100%;
	height: 32px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	border: 2px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.burn-progress-fill {
	height: 100%;
	background: var(--metallic-gold);
	border-radius: 14px;
	width: 0%;
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.burn-progress-fill::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
	border-radius: 14px 14px 0 0;
}

.burn-progress-labels {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	color: var(--text-secondary);
	padding: 0 0.25rem;
}

/* Gold Bar Icon at Bottom */
.bottom-gold-bar {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	z-index: 9999;
}

.bottom-gold-bar img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6));
	animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
	.bottom-gold-bar {
		width: 36px;
		height: 36px;
		bottom: 15px;
		right: 15px;
	}

	.burn-progress-container {
		padding: 1.5rem;
		margin-top: 2rem;
	}

	.burn-progress-header h3 {
		font-size: 1.2rem;
	}

	.burn-progress-percentage {
		font-size: 1.4rem;
	}

	.burn-progress-bar {
		height: 28px;
	}
}

.burn-status {
	background: var(--card-bg);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.burn-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.burn-header h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.burn-percentage {
	font-size: 1.5rem;
	font-weight: 800;
	background: var(--metallic-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.burn-chart {
	margin-bottom: 1rem;
}

.chart-img {
	width: 100%;
	height: auto;
	border-radius: var(--border-radius);
}

.burn-labels {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.fee-distribution {
	background: var(--card-bg);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-distribution h4 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.fee-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.fee-icon {
	width: 32px;
	height: 32px;
	background: var(--metallic-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fee-icon img {
	width: 16px;
	height: 16px;
}

.fee-text {
	flex: 1;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.fee-percentage {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-primary);
}

/* Community Section */
.community {
	padding: 4rem 2rem;
	background: var(--dark-bg);
	text-align: center;
}

.community h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	background: var(--metallic-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.community>p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
}

.community-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-content: center;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.community-card {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--metallic-gold-card);
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.15);
	text-decoration: none;
	color: var(--text-primary);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	min-width: 280px;
	max-width: 100%;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.community-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.community-card:hover {
	transform: translateY(-3px);
	border-color: var(--primary-gold);
	box-shadow: var(--metallic-shadow), var(--shadow-glow);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.community-icon {
	width: 60px;
	height: 60px;
	background: var(--metallic-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--metallic-shadow);
	border: 2px solid rgba(255, 215, 0, 0.3);
	position: relative;
}

.community-icon::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
	border-radius: 50%;
}

.community-icon img {
	width: 40px;
	height: 40px;
}

.community-icon i {
	color: #ffffff;
	font-size: 24px;
}

.community-content {
	flex: 1;
	text-align: left;
}

.community-content h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.community-content p {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.community-arrow {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.community-arrow img {
	width: 16px;
	height: 16px;
}

.cta-section {
	background: var(--card-bg);
	padding: 2rem;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	max-width: 600px;
	margin: 0 auto;
}

.cta-section h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.cta-section p {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

/* Chart Section */
.chart-section {
	padding: 4rem 2rem;
	background: var(--darker-bg);
}

.chart-section h2 {
	font-size: 2.5rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 2rem;
	background: var(--metallic-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.chart-container {
	max-width: 1200px;
	margin: 0 auto;
	background: var(--card-bg);
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.chart-container iframe {
	display: block;
	width: 100%;
	height: 600px;
	border: none;
}

/* Footer */
.footer {
	padding: 3rem 2rem;
	background: var(--darker-bg);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.footer-logo-image {
	width: 120px;
	height: auto;
	max-width: 100%;
	filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.footer-logo p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin: 0;
}

.footer-info {
	text-align: right;
}

.footer-email {
	margin-bottom: 1rem;
}

.email-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: var(--transition);
}

.email-link:hover {
	color: var(--primary-gold);
	text-decoration: underline;
}

.ca-info {
	font-family: monospace;
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.footer-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.footer-meta img {
	width: 16px;
	height: 16px;
}

.copyright {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.disclaimer {
	text-align: center;
	padding: 1rem 2rem;
	background: var(--card-bg);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer p {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

/* Animations */
@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes floatIngot {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg) scale(1);
		opacity: 0.6;
	}

	25% {
		transform: translateY(-18px) rotate(6deg) scale(1.03);
		opacity: 0.7;
	}

	50% {
		transform: translateY(-10px) rotate(-4deg) scale(0.98);
		opacity: 0.65;
	}

	75% {
		transform: translateY(-20px) rotate(3deg) scale(1.02);
		opacity: 0.75;
	}
}

/* Toast Notification */
.toast {
	position: fixed;
	top: 20px;
	right: 20px;
	background: var(--metallic-gold-card);
	border: 1px solid var(--primary-gold);
	border-radius: var(--border-radius);
	padding: 1rem 1.5rem;
	box-shadow: var(--shadow-glow);
	transform: translateX(400px);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 10000;
	backdrop-filter: blur(10px);
}

.toast.show {
	transform: translateX(0);
	opacity: 1;
}

.toast-content {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.toast-icon {
	width: 20px;
	height: 20px;
	background: var(--primary-gold);
	color: var(--dark-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
}

.toast-message {
	color: var(--text-primary);
	font-weight: 500;
}

/* Responsive Design */

/* Hide some ingots on smaller screens for better performance and less clutter */
@media (max-width: 1024px) {

	.ingot-9,
	.ingot-10 {
		display: none;
	}
}

@media (max-width: 768px) {

	.ingot-7,
	.ingot-8 {
		display: none;
	}
}

@media (max-width: 480px) {

	.ingot-5,
	.ingot-6 {
		display: none;
	}
}

/* Tablet Styles */
@media (max-width: 1024px) {
	.hero {
		padding: 2rem 1.5rem;
	}

	.hero-content {
		padding: 1.5rem;
	}

	.logo-image {
		max-width: 350px;
	}

	.token-details-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.community-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.community-card {
		min-width: 250px;
	}
}

@media (max-width: 768px) {
	.social-links {
		top: 10px;
		left: 10px;
		gap: 8px;
	}

	.social-link {
		width: 32px;
		height: 32px;
	}

	.social-link img {
		width: 16px;
		height: 16px;
	}

	.hero {
		padding: 3rem 1rem 1.5rem;
		min-height: 60vh;
	}

	.hero-content {
		padding: 1rem;
	}

	.logo-section {
		margin-bottom: 1.5rem;
	}

	.logo-image {
		max-width: 280px;
	}

	.tagline {
		font-size: 1.3rem;
		margin-bottom: 0.8rem;
	}

	.description {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
		max-width: 100%;
	}

	.cta-buttons {
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.ca-section {
		padding: 0.8rem 1rem;
		gap: 0.8rem;
		width: 100%;
		max-width: 300px;
		box-sizing: border-box;
	}

	.ca-text {
		font-size: 0.8rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.ca-card-wrapper {
		max-width: 100%;
		overflow: hidden;
	}

	.ca-card .ca-text {
		font-size: 0.85rem;
	}

	.btn {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
		width: 100%;
		max-width: 300px;
	}

	.detail-card {
		padding: 1.5rem;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1rem;
	}

	.detail-content {
		text-align: center;
		align-items: center;
	}

	.detail-icon {
		width: 50px;
		height: 50px;
	}

	.detail-icon i {
		font-size: 20px;
	}

	.community-links {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.community-card {
		min-width: 100%;
		max-width: 100%;
		padding: 1rem;
	}

	.community-icon {
		width: 50px;
		height: 50px;
	}

	.chart-container {
		height: 400px;
		margin: 0 -1rem;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
		padding: 2rem 1rem;
	}

	.footer-logo {
		align-items: center;
	}

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

@media (max-width: 480px) {
	.tagline {
		font-size: 1rem;
	}

	.description {
		font-size: 1rem;
	}

	.token-details h2,
	.community h2,
	.chart-section h2 {
		font-size: 2rem;
	}

	.btn {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}

	.community-card {
		min-width: 250px;
		padding: 1rem;
	}

	.community-icon {
		width: 50px;
		height: 50px;
	}

	.community-icon img {
		width: 30px;
		height: 30px;
	}

	.hero {
		padding: 2.5rem 0.5rem 1rem;
		min-height: 55vh;
	}

	.hero-content {
		padding: 0.5rem;
	}

	.logo-section {
		margin-bottom: 1rem;
	}

	.tagline {
		font-size: 1.1rem;
		margin-bottom: 0.8rem;
	}

	.description {
		font-size: 1rem;
		margin-bottom: 1.5rem;
		line-height: 1.6;
	}

	.cta-buttons {
		gap: 0.8rem;
		margin-bottom: 1.5rem;
	}

	.ca-section {
		padding: 0.7rem 0.8rem;
		gap: 0.6rem;
		width: 100%;
		max-width: 280px;
		box-sizing: border-box;
	}

	.ca-text {
		font-size: 0.75rem;
		line-height: 1.3;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.ca-card-wrapper {
		max-width: 100%;
		overflow: hidden;
		gap: 0.75rem;
	}

	.ca-card .ca-text {
		font-size: 0.75rem;
	}

	.ca-card .copy-btn {
		width: 36px;
		height: 36px;
	}

	.ca-card .copy-btn img {
		width: 14px;
		height: 14px;
	}

	.btn {
		padding: 0.7rem 1.2rem;
		font-size: 0.8rem;
		max-width: 280px;
	}

	.detail-card {
		padding: 1rem;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0.8rem;
		overflow: hidden;
	}

	.detail-content {
		text-align: center;
		align-items: center;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}

	.detail-icon {
		width: 45px;
		height: 45px;
	}

	.detail-icon i {
		font-size: 18px;
	}

	.detail-value {
		font-size: 1.2rem;
	}

	.detail-label {
		font-size: 0.7rem;
	}

	.detail-desc {
		font-size: 0.7rem;
	}

	.community-card {
		min-width: 100%;
		padding: 0.8rem;
		gap: 0.8rem;
	}

	.community-content h3 {
		font-size: 0.9rem;
	}

	.community-content p {
		font-size: 0.8rem;
	}

	.chart-container {
		height: 300px;
		margin: 0 -0.5rem;
	}

	.footer-content {
		padding: 1.5rem 0.5rem;
	}

	.footer-logo {
		align-items: center;
	}

	.footer-logo h3 {
		font-size: 1.5rem;
	}

	.footer-logo p {
		font-size: 0.8rem;
	}

	.ca-info {
		font-size: 0.7rem;
		word-break: break-all;
	}

	.copyright {
		font-size: 0.7rem;
	}
}

/* Navigation Bar */
.navbar {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 700;
	font-size: 1.2rem;
	transition: var(--transition);
}

.navbar-logo img {
	height: 40px;
	width: auto;
	filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.navbar-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
	margin: 0;
	padding: 0;
}

.navbar-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: var(--transition);
	position: relative;
	padding: 0.5rem 0;
}

.navbar-link.active {
	color: var(--primary-gold);
}

.navbar-toggle {
	display: none;
	flex-direction: column;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	gap: 0.25rem;
}

.navbar-toggle span {
	width: 25px;
	height: 3px;
	background: var(--primary-gold);
	border-radius: 2px;
	transition: var(--transition);
	transform-origin: center;
}

@media (max-width: 768px) {
	.navbar-container {
		padding: 1rem;
	}

	.navbar-logo {
		font-size: 1rem;
	}

	.navbar-logo img {
		height: 32px;
	}

	.navbar-toggle {
		display: flex;
	}

	.navbar-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(0, 0, 0, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 1rem 0;
		gap: 0;
		border-bottom: 1px solid rgba(212, 175, 55, 0.3);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}

	.navbar-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.navbar-menu li {
		width: 100%;
	}

	.navbar-link {
		display: block;
		padding: 1rem 2rem;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.navbar-link::after {
		display: none;
	}

	.navbar-link.active {
		background: rgba(212, 175, 55, 0.1);
		color: var(--primary-gold);
	}

	.navbar-toggle.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.navbar-toggle.active span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}

	.navbar-toggle.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}

@media (max-width: 400px) {
	.navbar-link {
		font-size: 0.9rem;
		padding: 1rem 1.5rem;
		white-space: normal;
		line-height: 1.4;
	}

	.navbar-container {
		padding: 0.75rem;
	}

	.navbar-logo img {
		height: 28px;
	}
}