/* Global Resets */
:root {
    --primary-neon: #ff0055;
    --secondary-neon: #ffcc00;
    --bg-dark: #0a0005;
    --bg-card: rgba(20, 0, 10, 0.8);
    --text-glow: 0 0 10px var(--primary-neon), 0 0 20px var(--primary-neon);
    --box-glow: 0 0 15px var(--primary-neon), inset 0 0 10px var(--primary-neon);
}

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

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Orbitron', sans-serif; /* Fallback will be handled in import */
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Typography */
h1, h2, h3 {
    text-transform: uppercase;
    text-shadow: var(--text-glow);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-neon);
    margin-top: 2rem;
    border-bottom: 2px solid var(--primary-neon);
    display: inline-block;
    padding-bottom: 0.5rem;
    box-shadow: 0 5px 10px -5px var(--primary-neon);
}

p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 0 2px rgba(255,255,255,0.5);
}

a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Helper Classes */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.text-neon {
    color: var(--primary-neon);
}

.text-glow {
    text-shadow: var(--text-glow);
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    padding: 15px 20px;
    background: transparent;
    border: 2px solid var(--primary-neon);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 25px; /* Rounded corners like image */
    box-shadow: var(--box-glow);
    text-shadow: var(--text-glow);
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--primary-neon);
    box-shadow: 0 0 30px var(--primary-neon);
    transform: scale(1.02);
}

/* Sections */
section {
    margin-bottom: 3rem;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
}

.hero-content {
    order: 2; /* Text below image on mobile usually, but keeping text top based on image */
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: flex-start;
    }
    .hero-content {
        flex: 1;
        padding-right: 20px;
        order: 1;
    }
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
        order: 2;
    }
    .btn {
        margin: 10px 0; /* Align left */
    }
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px var(--primary-neon));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Tokenomics Grid */
.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 1rem;
}

@media (min-width: 600px) {
    .tokenomics-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    border: 2px solid var(--primary-neon);
    padding: 15px;
    border-radius: 15px;
    background: var(--bg-card);
    box-shadow: var(--box-glow);
    text-align: center;
}

.card h3 {
    font-size: 1.2rem;
    color: var(--primary-neon);
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 1rem;
    margin: 0;
    word-break: break-all; /* For long addresses */
}

/* Roadmap */
.roadmap-list {
    list-style: none;
    margin-top: 1rem;
}

.roadmap-list li {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    font-size: 1.1rem;
    padding-left: 20px;
    position: relative;
}

.roadmap-list li::before {
    content: '>';
    color: var(--primary-neon);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Footer / Socials */
.socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .socials {
        flex-direction: row;
        justify-content: space-around;
    }
}

.social-btn {
    flex: 1;
    border: 2px solid var(--primary-neon);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    background: var(--bg-card);
    box-shadow: inset 0 0 10px var(--primary-neon);
}

.social-btn:hover {
    background: rgba(255, 0, 85, 0.2);
}

.footer-note {
    margin-top: 3rem;
    font-size: 0.8rem;
    text-align: center;
    color: #888;
    border-top: 1px solid var(--primary-neon);
    padding-top: 1rem;
}
