/* --- Global Styles & Variables --- */
:root {
    --primary-color: #00f7ff; /* Retro Cyan */
    --secondary-color: #f7ff00; /* Retro Yellow */
    --background-color: #0d0915;
    --card-bg-color: rgba(30, 25, 46, 0.7);
    --text-color: #ecf0f1;
    --text-secondary-color: #a0a4c2;
    --border-color: rgba(0, 247, 255, 0.2);
    --font-primary: 'Roboto Mono', monospace;
    --font-headings: 'Press Start 2P', cursive;
}

* {
    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(0, 247, 255, 0.08), transparent 30%),
                      radial-gradient(circle at 99% 99%, rgba(247, 255, 0, 0.05), transparent 40%);
}

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

.section-title {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    box-shadow: 0 0 10px var(--primary-color);
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-3px);
}

.btn-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}


/* --- Animation --- */
.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, filter 0.6s ease-out;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* --- Header & Navbar --- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: transparent;
    padding: 20px 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);
}

.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.5rem;
    color: var(--text-color);
    text-decoration: none;
}

.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;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--primary-color));
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-shadow: 0 0 15px var(--secondary-color);
    min-height: 80px; /* For typing effect */
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contract-address {
    margin-bottom: 30px;
    color: var(--text-secondary-color);
    background-color: var(--card-bg-color);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    word-break: break-all;
}

.contract-address button {
    background: var(--primary-color);
    border: none;
    color: #0d0915;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-headings);
    font-size: 0.7rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- Sections --- */
.mission-section, .tokenomics-section, .how-to-buy-section, .community-section {
    padding: 100px 0;
}

.mission-section {
    background-color: rgba(255, 255, 255, 0.02);
}
.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary-color);
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

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

.token-card h3 {
    font-family: var(--font-headings);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.token-card .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.how-to-buy-section {
    background-color: rgba(255, 255, 255, 0.02);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.step-card {
    text-align: center;
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--background-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-headings);
    font-size: 1.2rem;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px var(--primary-color);
}
.step-card h3 {
    margin-bottom: 10px;
}
.step-card p {
    color: var(--text-secondary-color);
}

.community-section { 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;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: transform 0.3s ease;
    font-family: var(--font-primary);
    border-radius: 10px;
}
.social-btn.twitter { background-color: #1DA1F2; }
.social-btn.telegram { background-color: #0088cc; }

/* --- Footer --- */
.footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-title { font-size: 1.8rem; min-height: 60px; }
    .section-title { font-size: 1.5rem; }
    .contract-address { flex-direction: column; }
}