/* --- Global Styles & Variables --- */
:root {
    --primary-color: #00ff00; /* Neon Green */
    --background-color: #121212;
    --surface-color: #1e1e1e;
    --text-color: #e0e0e0;
    --border-color: #333;
    --font-primary: 'VT323', monospace;
    --font-secondary: 'Roboto Mono', monospace;
}

/* --- Base Setup & STATIC BACKGROUND --- */
body {
    background-color: var(--background-color);
    background-image: 
        linear-gradient(rgba(0, 255, 0, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.07) 1px, transparent 1px);
    background-size: 35px 35px;
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    padding: 2rem 1rem;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    margin-top: 0;
}

section {
    background-color: var(--surface-color);
    padding: 30px 40px;
    margin-bottom: 50px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
}

/* --- Header & Polished Navigation --- */
header {
    text-align: center;
    padding: 20px 0 40px 0;
    margin-bottom: 50px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo-image {
    width: 80px;
    height: 80px;
}

.logo-text {
    font-size: 5rem;
    margin: 0;
}

.tagline {
    font-size: 2rem;
    margin: 10px 0;
    font-family: var(--font-primary);
}

.subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 30px auto;
    color: #aaa;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    background-color: var(--surface-color);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn {
    padding: 12px 28px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 4px;
    box-shadow: inset 0 0 5px rgba(0, 255, 0, 0.2);
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    text-shadow: none;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 255, 0, 0.4);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-color);
    text-shadow: none;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

/* --- Dynamic Content (Chart & Socials) --- */
.chart-container {
    background-color: #000;
    border-radius: 8px;
    height: 450px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.socials-container {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: #000;
}

/* --- Manifesto --- */
.manifesto-content {
    background: #000;
    padding: 30px;
    border-left: 3px solid var(--primary-color);
    font-size: 1.2rem;
    font-style: italic;
    color: #ccc;
    border-radius: 4px;
}

/* --- Tokenomics --- */
.token-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.token-card {
    background-color: var(--background-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.token-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.token-card p {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-secondary);
}

.contract-address {
    text-align: center;
    margin: 40px 0;
}

.address-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    word-break: break-all;
}

#contractAddress {
    font-size: 1rem;
    margin-right: 15px;
    font-family: var(--font-secondary);
}

.btn-copy {
    padding: 8px 15px;
    font-size: 1rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: var(--surface-color);
    cursor: pointer;
    border-radius: 4px;
    font-family: var(--font-primary);
}
.btn-copy:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.official-wallets {
    margin: 40px auto 0 auto;
    max-width: 600px;
    text-align: center;
    padding: 20px;
    background-color: var(--background-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.wallet-info {
    font-family: var(--font-secondary);
}
#teamWallet {
    word-break: break-all;
}

.wallet-note {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 10px;
    font-style: italic;
}


/* --- Flight Plan (Final Clean Layout) --- */
.flight-plan-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
}

.phase-card:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background: linear-gradient(var(--border-color), var(--primary-color), var(--border-color));
    opacity: 0.5;
}

.phase-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.phase-number {
    background-color: var(--primary-color);
    color: var(--background-color);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.phase-header h4 {
    font-size: 1.8rem;
    margin: 0;
}

.phase-tasks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    background-color: var(--surface-color);
    border: 1px solid #282828;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #ccc;
    transition: background-color 0.3s ease;
}

.task-item:hover {
    background-color: #2a2a2a;
}

.task-item span {
    font-size: 1.5rem;
}


/* --- Getting Started Section --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.step-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.step-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    border: 2px solid var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.step-card h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.step-card p {
    color: #aaa;
    margin: 0;
}


/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px 0 20px 0;
    color: #666;
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    section { padding: 20px; }
    
    .token-grid {
        grid-template-columns: 1fr;
    }
}