:root {
    --primary-blue: #0a0f25;
    --accent-blue: #1e90ff;
    --yellow-gold: #FFD700;
    --yellow-hover: #ffaa00;
    --white: #ffffff;
    
    --font-pixel: 'Press Start 2P', cursive;
    --font-modern: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-blue);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(30, 144, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    color: var(--white);
    font-family: var(--font-modern);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Ticker Tape --- */
.ticker-wrapper {
    background: repeating-linear-gradient(
        45deg,
        #000,
        #000 15px,
        var(--yellow-gold) 15px,
        var(--yellow-gold) 30px
    );
    padding: 4px 0;
    width: 100%;
    z-index: 100;
    position: relative;
    border-bottom: 2px solid #000;
}

.ticker-tape {
    background-color: #000;
    color: var(--yellow-gold);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    border-top: 2px solid var(--yellow-gold);
    border-bottom: 2px solid var(--yellow-gold);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 25s linear infinite;
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 0px rgba(0,0,0,1);
}

.ticker-content span {
    margin: 0 1rem;
    letter-spacing: 1px;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 15, 37, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 99;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-pixel);
    font-size: 1.2rem;
    color: var(--white);
    text-shadow: 2px 2px 0px var(--accent-blue);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow-gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-family: var(--font-pixel);
    font-size: 0.7rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
}

.nav-links a:hover {
    color: var(--yellow-gold);
    transform: translateY(-2px);
}

.nav-links a.nav-buy {
    color: var(--yellow-gold);
}

.nav-links a.nav-buy:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--yellow-gold);
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--yellow-gold);
    color: #000;
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    padding: 12px 24px;
    border: 3px solid #000;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.1s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary:active {
    box-shadow: 0px 0px 0px #000;
    transform: translate(4px, 4px);
}

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

.btn-secondary {
    background-color: var(--accent-blue);
    color: var(--white);
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    padding: 12px 24px;
    border: 3px solid #000;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.1s ease;
    text-align: center;
}

.btn-secondary:active {
    box-shadow: 0px 0px 0px #000;
    transform: translate(4px, 4px);
}

.btn-secondary:hover {
    background-color: #187bcd;
}

.btn-primary.lg, .btn-secondary.lg {
    font-size: 1rem;
    padding: 16px 32px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7), 4px 4px 0px #000; }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0), 4px 4px 0px #000; }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0), 4px 4px 0px #000; }
}

/* --- Hero Section --- */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 5%;
    position: relative;
    z-index: 1;
    min-height: 80vh;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-pixel);
    font-size: 4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0px #000;
}

.text-yellow { color: var(--yellow-gold); }
.text-white { color: var(--white); }
.text-blue { color: var(--accent-blue); }

.hero-subtitle {
    font-family: var(--font-pixel);
    font-size: 1.2rem;
    color: var(--yellow-gold);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0px #000;
    text-transform: lowercase;
}

.hero-body {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.status-bar {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    color: var(--yellow-gold);
    background: rgba(0,0,0,0.4);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.status-item .icon {
    font-size: 1.2rem;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.art-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--yellow-gold);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
    animation: glow-pulse 4s infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 0.4; transform: scale(1.2); }
}

.main-art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
    border-radius: 50%;
}

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


/* --- Global Section Styles --- */
.section {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
}

.alt-bg {
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px dashed rgba(255, 215, 0, 0.3);
    border-bottom: 1px dashed rgba(255, 215, 0, 0.3);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-pixel);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3.5rem;
    text-shadow: 2px 2px 0px #000;
}

/* --- Sobre Section --- */
.sobre-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.sobre-text {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.8;
}

.sobre-text p {
    margin-bottom: 1.5rem;
}

.sobre-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-box {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--yellow-gold);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-pixel);
    font-size: 1.5rem;
    color: var(--yellow-gold);
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.sobre-img-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pixel-box {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2), rgba(255, 215, 0, 0.2));
    border: 4px solid var(--yellow-gold);
    box-shadow: 10px 10px 0px #000;
    padding: 1rem;
    border-radius: 16px;
    max-width: 400px;
}

.sobre-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* --- Tokenomics Section --- */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.token-card {
    background: rgba(10, 15, 37, 0.8);
    border: 2px solid var(--accent-blue);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.5);
}

.token-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow-gold);
    box-shadow: 4px 8px 0px rgba(0,0,0,0.6);
}

.token-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.token-card h3 {
    font-family: var(--font-pixel);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.token-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}


/* --- Roteiro / Timeline Section --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--yellow-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--accent-blue);
    border: 4px solid var(--yellow-gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-content {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--yellow-gold);
    border-radius: 12px;
    box-shadow: 4px 4px 0px #000;
}

.timeline-content h3 {
    font-family: var(--font-pixel);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.6;
}


/* --- Como Comprar Section --- */
.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding-top: 1rem;
}

.step-card {
    background: rgba(10, 15, 37, 0.8);
    border: 2px solid var(--yellow-gold);
    padding: 2.5rem 1.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 4px 4px 0px #000;
}

.step-num {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow-gold);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-pixel);
    font-size: 1.5rem;
    border: 3px solid #000;
    box-shadow: 0 4px 0 #000;
}

.step-card h3 {
    font-family: var(--font-pixel);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.5;
}

.step-card p {
    color: #d0d0d0;
    line-height: 1.6;
}

/* --- Robust Footer --- */
.site-footer {
    background-color: #050814;
    border-top: 4px solid var(--yellow-gold);
    padding: 4rem 5% 1rem;
    color: #a0aabf;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-pixel);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--yellow-gold);
}

.footer-brand p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--yellow-gold);
    color: #000;
    transform: translateY(-4px);
    border-color: var(--yellow-gold);
}

.footer-links h3, .footer-contract h3 {
    font-family: var(--font-pixel);
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #a0aabf;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

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

.ca-box {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-blue);
    padding: 1rem;
    border-radius: 8px;
    gap: 10px;
}

#ca-text {
    font-family: monospace;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--white);
}

#copy-ca {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s;
    color: var(--white);
}

#copy-ca:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
}

/* Responsive updates */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .art-container { width: 350px; height: 350px; }
}

@media (max-width: 900px) {
    .sobre-content {
        flex-direction: column;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) .timeline-dot, .timeline-item:nth-child(odd) .timeline-dot {
        left: 19px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 5%;
    }
    
    .nav-links { display: none; }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .status-bar {
        justify-content: center;
    }
    
    .art-container {
        margin-top: 3rem;
        width: 300px;
        height: 300px;
    }
}
