:root {
    --bg-dark: #0a0a0a;
    --neon-green: #39ff14;
    --vector-gold: #ffb700;
    --text-light: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --font-pixel: 'Press Start 2P', cursive;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* MARQUEE */
.marquee-container {
    background: var(--neon-green);
    color: var(--bg-dark);
    font-family: var(--font-pixel);
    font-size: 14px;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 0 15px var(--neon-green);
    z-index: 100;
}

.marquee-container.reverse {
    background: var(--vector-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--vector-gold);
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

.marquee-container.reverse .marquee span {
    animation: marquee 15s linear infinite reverse;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* NAVBAR */
header {
    padding: 20px 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-pixel);
    font-size: 24px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.links {
    margin-left: auto;
    margin-right: 40px;
}

.links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.links a:hover {
    color: var(--vector-gold);
}

.buy-btn {
    background: var(--neon-green);
    color: black;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 15px var(--neon-green);
}

.buy-btn:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 0 25px white;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 10%;
    min-height: 80vh;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--vector-gold);
    text-shadow: 0 0 15px var(--vector-gold);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ccc;
}

.contract-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid var(--neon-green);
    max-width: fit-content;
}

.contract-box p {
    margin: 0;
    font-family: monospace;
    font-size: 1.2rem;
    margin-right: 20px;
    color: var(--neon-green);
}

.contract-box button {
    background: var(--neon-green);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.2s;
}

.contract-box button:hover {
    background: white;
}

/* PURE CSS VECTOR ROBOT */
.vector-robot {
    position: relative;
    width: 300px;
    height: 300px;
    animation: float 3s ease-in-out infinite;
}

.vector-screen {
    width: 250px;
    height: 180px;
    background: #000;
    border: 8px solid #333;
    border-radius: 30px;
    position: absolute;
    top: 20px;
    left: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: inset 0 0 20px rgba(57, 255, 20, 0.2), 0 0 30px rgba(255, 183, 0, 0.3);
    z-index: 2;
}

.vector-eye {
    width: 60px;
    height: 90px;
    background: var(--neon-green);
    border-radius: 15px;
    box-shadow: 0 0 20px var(--neon-green);
    animation: blink 4s infinite;
}

.vector-body {
    width: 280px;
    height: 100px;
    background: #1a1a1a;
    position: absolute;
    bottom: 20px;
    left: 10px;
    border-radius: 40px;
    border-bottom: 20px solid #ffb700;
    z-index: 1;
}

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

@keyframes blink {
    0%, 96%, 98% { height: 90px; margin-top: 0; }
    97% { height: 5px; margin-top: 40px; }
}

/* ABOUT SECTION */
.about {
    padding: 100px 10%;
    text-align: center;
}

.about h2 {
    font-family: var(--font-pixel);
    font-size: 2.5rem;
    color: var(--vector-gold);
    margin-bottom: 50px;
}

.about-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    flex: 1;
    min-width: 250px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

/* TOKENOMICS */
.tokenomics {
    padding: 100px 10%;
    text-align: center;
}

.tokenomics h2 {
    font-family: var(--font-pixel);
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 50px;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    font-size: 2rem;
    font-weight: 900;
}

.stat-item h4 {
    color: #666;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px 20px;
    background: #050505;
    border-top: 1px solid #222;
}

.socials {
    margin: 30px 0;
}

.socials a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.socials a:hover {
    color: var(--neon-green);
}
