/* Base reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
body {
	background: #000;
	color: #00ff9c;
	font-family: Inter, "Courier New", monospace;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 24px; }

/* Header */
.site-header { border-bottom: 1px solid #00ff9c11; background: rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 72px; height: 72px; display: block; }
.brand-title { font-size: 1.25rem; font-weight: 700; color: #00ff9c; }
.brand-sub { font-size: 0.85rem; color: #7dffcf; opacity: 0.9; }

.main-nav a { color: #00ff9c; text-decoration: none; margin-left: 14px; font-weight: 600; }
.main-nav a.cta { background: #00ff9c; color: #000; padding: 8px 12px; border-radius: 6px; }

/* Sections */
main > section { margin: 28px 0; padding: 22px; border-radius: 10px; background: rgba(255,255,255,0.01); border: 1px solid #00ff9c11; }
h1, h2 { color: #00ff9c; }

/* Hero */
.hero { display: flex; align-items: center; gap: 24px; position: relative; min-height: 220px; }
.hero-content { max-width: 640px; }
.hero-title { font-size: 2.4rem; margin-bottom: 8px; }
.hero-lead { color: #c9ffee; opacity: 0.9; margin-bottom: 16px; }
.hero-ctas { display:flex; gap: 12px; }
.btn-primary { background: #00ff9c; color: #000; border: 0; padding: 10px 16px; border-radius: 8px; cursor: pointer; }
.btn-ghost { background: transparent; border: 1px solid #00ff9c22; color: #00ff9c; padding: 10px 16px; border-radius: 8px; cursor: pointer; }
.lottie-hero { position: absolute; right: 28px; top: 18px; width: 120px; height: 120px; pointer-events: none; opacity: 0.95; }

/* Tokenomics */
.tokenomics-grid { display: grid; grid-template-columns: 320px 1fr; gap: 18px; align-items: start; }
.tokenomics-chart { height: 320px; width: 100%; }
.tokenomics-chart canvas { width: 100% !important; height: 320px !important; }
.disclaimer { font-size: 0.85rem; opacity: 0.75; margin-top: 12px; }

/* Live feed & stats */
.stats { display:flex; gap:16px; margin-bottom: 14px; }
.stat { flex:1; background: rgba(0,255,156,0.02); border: 1px solid #00ff9c11; padding: 12px; border-radius: 8px; text-align:center; }
.stat-value { font-size: 1.4rem; font-weight:700; color: #00ff9c; }
.stat-label { font-size: 0.85rem; opacity: 0.85; }
.feed-container { margin-top: 8px; }

/* Tokens grid */
.tokens-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.token-card { padding: 14px; border-radius: 8px; border: 1px solid #00ff9c11; background: linear-gradient(180deg, rgba(0,255,156,0.02), rgba(0,255,156,0.01)); }
.token-name { font-weight:700; color:#00ff9c; margin-bottom:6px; }
.token-symbol { font-size:0.85rem; opacity:0.9; margin-bottom:8px; }
.token-actions { display:flex; gap:8px; }
.btn-ghost, .btn-primary { font-size: 0.95rem; }

/* Gallery */
.gallery-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:12px; }
.gallery-grid img { width:100%; border-radius:8px; display:block; }

/* Terminal */
.terminal-inner { background:#050505; padding:12px; border-radius:8px; border:1px solid #00ff9c11; }
#terminalOutput { height: 160px; overflow:auto; white-space: pre-wrap; color:#7dffcf; margin-bottom:8px; }
#terminalInput { width:100%; padding:8px; background:#000; border:1px solid #00ff9c22; color:#00ff9c; }

/* Modal */
.modal { display:none; position:fixed; inset:0; align-items:center; justify-content:center; background: rgba(0,0,0,0.65); z-index:1000; }
.modal.open { display:flex; }
.modal-content { background:#070707; border:1px solid #00ff9c11; padding:18px; border-radius:10px; width:90%; max-width:720px; position:relative; }
.modal-close { position:absolute; right:12px; top:8px; background:transparent; border:0; color:#00ff9c; font-size:1.4rem; cursor:pointer; }
.small { padding:8px 10px; border-radius:6px; }
.ctf-output { margin-top:12px; background:#000; padding:12px; border-radius:6px; color:#7dffcf; }

/* FAQ */
.faq-list .faq-a { display:none; padding:10px 0; color:#c8ffee; }
.faq-q { background:transparent; border:0; color:#00ff9c; font-weight:700; cursor:pointer; padding:10px 0; text-align:left; width:100%; }

/* Footer */
.site-footer { border-top:1px solid #00ff9c11; padding:18px 0; text-align:center; color:#7dffcf; opacity:0.8; }

/* Focus styles */
:focus { outline: 2px dashed #7dffcf; outline-offset: 3px; }

@media (max-width: 820px) {
	.header-inner { flex-direction: column; align-items:flex-start; }
	.tokenomics-grid { grid-template-columns: 1fr; }
	.hero { min-height: 180px; }
	.lottie-hero { display: none; }
}

/* Map and pulse marker styling */
#map { border-radius: 8px; height: 420px; }
.pulse-marker span {
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(0,255,156,0.95);
	box-shadow: 0 0 0 6px rgba(0,255,156,0.18);
	animation: pulse 1.6s ease-out forwards;
}
@keyframes pulse {
	0% { transform: scale(0.6); opacity: 1; box-shadow: 0 0 0 6px rgba(0,255,156,0.28); }
	70% { transform: scale(1.6); opacity: 0.6; box-shadow: 0 0 0 18px rgba(0,255,156,0.06); }
	100% { transform: scale(2); opacity: 0; box-shadow: 0 0 0 30px rgba(0,255,156,0); }
}



