/* --- Global Styles & Variables --- */
:root {
    --primary-color: #9b59b6; /* A nice purple */
    --secondary-color: #f1c40f; /* A complementary gold/yellow */
    --background-color: #0d0915;
    --card-bg-color: rgba(30, 25, 46, 0.7);
    --text-color: #ecf0f1;
    --text-secondary-color: #bdc3c7;
    --border-color: rgba(155, 89, 182, 0.3);
    --font-primary: 'Poppins', sans-serif;
    --font-headings: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
    background-image: radial-gradient(circle at 1% 1%, rgba(155, 89, 182, 0.15), transparent 30%),
                      radial-gradient(circle at 99% 99%, rgba(241, 196, 15, 0.1), transparent 40%);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    text-shadow: 0 0 15px var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
    transform: translateY(-3px);
}

/* --- Animations --- */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}


/* --- Header & Navbar --- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: transparent;
    padding: 15px 0;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: rgba(13, 9, 21, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 900;
}

.nav-logo .ticker {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--text-secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}


/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 25px var(--primary-color);
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-title .highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 20px var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contract-address {
    margin-top: 40px;
    font-family: monospace;
    color: var(--text-secondary-color);
    background-color: var(--card-bg-color);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
}

.contract-address button {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* --- Story Section --- */
.story-section {
    padding: 100px 0;
}
.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary-color);
}

/* --- Tokenomics Section --- */
.tokenomics-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.token-card {
    background: var(--card-bg-color);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.2);
}

.token-card h3 {
    font-family: var(--font-headings);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.token-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.token-card .desc {
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* --- Roadmap Section --- */
.roadmap-section {
    padding: 100px 0;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--primary-color);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--secondary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    border: 4px solid var(--background-color);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background: var(--card-bg-color);
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    font-family: var(--font-headings);
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content ul li {
    padding: 5px 0;
    color: var(--text-secondary-color);
}


/* --- Community Section --- */
.community-section {
    padding: 100px 0;
    text-align: center;
}
.community-section p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: var(--text-secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: transform 0.3s ease;
}
.social-btn:hover {
    transform: scale(1.05);
}

.social-btn.twitter { background-color: #1DA1F2; }
.social-btn.telegram { background-color: #0088cc; }
.social-btn.discord { background-color: #7289DA; }

/* --- Footer --- */
.footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary-color);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-menu { display: none; } /* Simplification for this example */
    .hero-title { font-size: 3rem; }
    .roadmap-timeline::after { left: 10px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-dot { left: 0; }
}