:root {
    --bg-color: #111;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --accent-pink: #ff00de;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-family: 'Inter', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    overflow-x: hidden;
    background-image: radial-gradient(ellipse at 50% 20%, rgba(255, 0, 222, 0.1), transparent 70%);
}

header {
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-buy-button {
    background-color: var(--text-primary);
    color: #000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-buy-button:hover {
    background-color: #ccc;
}

/* --- APPLE-INSPIRED HERO --- */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 120px 5% 2rem;
}

.hero-content {
    /* Set to visible for GSAP animation */
    opacity: 0; 
}

.hero-image {
    width: 280px;
    max-width: 70%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 30px 25px rgba(0, 0, 0, 0.3));
}

.hero-headline {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-subheadline {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--accent-pink);
    margin-top: -0.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 222, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 1.5rem auto 2rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero-buy-button {
    background: var(--accent-pink);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(255, 0, 222, 0.2);
}

.hero-buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 0, 222, 0.3);
}

/* --- OTHER SECTIONS --- */
section.about, section.tokenomics {
    max-width: 900px;
    margin: 6rem auto;
    padding: 2rem 5%;
    text-align: center;
}

section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

section p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.token-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.token-card {
    background: #1c1c1e;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.token-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.token-card p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

footer {
    text-align: center;
    padding: 3rem 5%;
    margin-top: 6rem;
    border-top: 1px solid var(--border-color);
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-primary);
}

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

@media (max-width: 768px) {
    .nav-buy-button {
        display: none;
    }
}