@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #4a4a4a;
    --text-color: #e0e0e0;
    --highlight-color: #666666;
    --font-main: 'Roboto Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-placeholder {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--highlight-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: none;
}

.hero-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--highlight-color);
}

.subtitle#doomer-typing {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    min-height: 2.5rem;
    letter-spacing: 1px;
    font-weight: bold;
    text-shadow: 2px 2px 8px #000, 0 0 2px #000;
    display: inline-block;
    position: relative;
}

.subtitle#doomer-typing::after {
    content: '|';
    animation: blink 1s steps(1) infinite;
    color: #fff;
    position: absolute;
    right: -16px;
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    min-width: 170px;
    max-width: 200px;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
}

.btn.primary {
    background-color: var(--highlight-color);
    color: var(--text-color);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid var(--highlight-color);
    color: var(--text-color);
}

.btn:hover {
    transform: translateY(-2px);
}

/* Fullscreen Messages */
.fullscreen-messages {
    min-height: 100vh;
    position: relative;
}

.message-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.message {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.message.active {
    opacity: 1;
    transform: translateY(0);
}

.message h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    padding: 120px 0 100px 0;
    background-color: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-snowflakes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about > *:not(.about-snowflakes):not(.about-bg-noise):not(.about-snow-canvas) {
    position: relative;
    z-index: 1;
}

.about-snow-canvas {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.18;
}

.about-bg-noise {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
}

.about-img-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    min-height: 340px;
}

.about-img {
    width: 100%;
    border-radius: 32px;
    filter: grayscale(1) contrast(1.2) brightness(0.8) drop-shadow(0 8px 32px #000) blur(0.5px);
    box-shadow: 0 0 40px 0 #000a, 0 0 24px 4px #4448;
    opacity: 0.97;
    z-index: 1;
    display: block;
    transition: box-shadow 0.3s, filter 0.3s;
}

.about-img:hover {
    box-shadow: 0 0 60px 0 #000c, 0 0 32px 8px #666a;
    filter: grayscale(0.8) contrast(1.3) brightness(0.9) drop-shadow(0 8px 32px #000) blur(0.2px);
}

.about-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    z-index: 2;
    pointer-events: none;
    background: repeating-linear-gradient(135deg, rgba(30,30,30,0.5) 0 2px, transparent 2px 8px), rgba(0,0,0,0.45);
    animation: aboutOverlayAnim 3s infinite alternate;
}

@keyframes aboutOverlayAnim {
    0% { filter: blur(0.5px) brightness(0.9); }
    100% { filter: blur(2px) brightness(0.7); }
}

.about h2 {
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    font-size: 2.7rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 2px 2px 8px #000, 0 0 2px #000;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
}

.about p {
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    font-size: 1.18rem;
    max-width: 800px;
    margin: 0 auto 1rem auto;
    text-align: center;
    color: #cccccc;
    text-shadow: 1px 1px 6px #000, 0 0 2px #000;
    z-index: 2;
    position: relative;
}

.about-fade-phrase {
    display: none;
}

@media (max-width: 700px) {
    .about-img-container {
        max-width: 95vw;
    }
    .about-img {
        border-radius: 16px;
    }
    .about h2 {
        font-size: 2rem;
    }
    .about p {
        font-size: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(180deg, #181818 80%, #232323 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('ponto.png') center center/cover no-repeat;
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
}

.tokenomics > .container {
    position: relative;
    z-index: 1;
}

.tokenomics h2 {
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #e0e0e0;
    text-shadow: 2px 2px 8px #000, 0 0 2px #000;
    letter-spacing: 1px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tokenomics-item {
    background: linear-gradient(135deg, #232323 80%, #2d2d2d 100%);
    border-radius: 24px;
    box-shadow: 0 0 32px 0 #000a, 0 0 8px 2px #4448;
    border: 2px solid #333;
    position: relative;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    overflow: hidden;
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
    z-index: 1;
    animation: tokenomicsFadeIn 1s ease;
}

@keyframes tokenomicsFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.tokenomics-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    background: url('https://www.transparenttextures.com/patterns/noise.png');
    opacity: 0.13;
    z-index: 0;
}

.tokenomics-item:hover {
    box-shadow: 0 0 48px 0 #222c, 0 0 16px 4px #666a;
    border-color: #666;
    transform: scale(1.025) skewX(-1deg);
    animation: glitch 0.3s;
}

@keyframes glitch {
    0% { filter: none; }
    20% { filter: blur(1px) brightness(1.1); }
    40% { filter: none; }
    60% { filter: blur(0.5px) brightness(0.95); }
    100% { filter: none; }
}

.tokenomics-icon {
    font-size: 2.7rem;
    margin-bottom: 0.7rem;
    color: #b0ffb0;
    text-shadow: 0 0 8px #222, 0 0 16px #222a;
    filter: drop-shadow(0 0 8px #222a);
    animation: iconGlow 2s infinite alternate;
}

@keyframes iconGlow {
    0% { filter: drop-shadow(0 0 8px #222a); }
    100% { filter: drop-shadow(0 0 16px #4f4  ); }
}

.tokenomics-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px #000, 0 0 2px #000;
}

.tokenomics-desc {
    display: block;
    font-size: 0.98rem;
    color: #888;
    margin-top: 0.2rem;
    font-style: italic;
    opacity: 0.85;
    text-shadow: 1px 1px 4px #000, 0 0 2px #000;
}

.tokenomics-item h3 {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px #000, 0 0 2px #000;
}

@media (max-width: 1100px) {
    .tokenomics-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    .tokenomics-item {
        padding: 2rem 0.7rem 1.5rem 0.7rem;
    }
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: linear-gradient(135deg, #191b1e 60%, #232323 100%);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 60px 0 #000a inset;
    overflow: hidden;
}
.roadmap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/noise.png');
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}

.roadmap h2 {
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #e0e0e0;
    text-shadow: 2px 2px 8px #000, 0 0 2px #000;
    letter-spacing: 1px;
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #444 0%, #222 100%);
    box-shadow: 0 0 16px #222a;
    z-index: 0;
    border-radius: 2px;
}

.roadmap-phase {
    position: relative;
    width: 50%;
    padding: 32px 32px 32px 0;
    box-sizing: border-box;
    z-index: 1;
    animation: roadmapFadeIn 1s ease;
}

.roadmap-phase.right {
    left: 50%;
    padding: 32px 0 32px 32px;
}
.roadmap-phase.left {
    left: 0;
    text-align: right;
}

.roadmap-dot {
    position: absolute;
    top: 48px;
    right: -14px;
    width: 22px;
    height: 22px;
    background: #232323;
    border: 4px solid #444;
    border-radius: 50%;
    box-shadow: 0 0 12px #222a, 0 0 0 4px #181818;
    z-index: 2;
    animation: dotPulse 2s infinite alternate;
}
.roadmap-phase.right .roadmap-dot {
    left: -14px;
    right: auto;
}

@keyframes dotPulse {
    0% { box-shadow: 0 0 12px #222a, 0 0 0 4px #181818; }
    100% { box-shadow: 0 0 24px #4f4a, 0 0 0 8px #181818; }
}

.roadmap-content {
    background: linear-gradient(135deg, #232323 80%, #2d2d2d 100%);
    border-radius: 18px;
    box-shadow: 0 0 24px 0 #000a, 0 0 8px 2px #4448;
    border: 2px solid #333;
    padding: 1.5rem 1.2rem;
    position: relative;
    z-index: 2;
    min-width: 220px;
    max-width: 340px;
    margin: 0 auto;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    text-align: left;
    animation: roadmapCardIn 1s;
}
.roadmap-phase.left .roadmap-content {
    margin-left: auto;
}
.roadmap-phase.right .roadmap-content {
    margin-right: auto;
}
.roadmap-content:hover {
    box-shadow: 0 0 40px 0 #222c, 0 0 16px 4px #666a;
    border-color: #666;
    transform: scale(1.025) skewX(-1deg);
}

.roadmap-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #b0ffb0;
    text-shadow: 0 0 8px #222, 0 0 16px #222a;
    filter: drop-shadow(0 0 8px #222a);
    display: inline-block;
    animation: iconGlow 2s infinite alternate;
}

.roadmap-content h3 {
    font-size: 1.15rem;
    color: #b0b0b0;
    margin-bottom: 0.3rem;
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px #000, 0 0 2px #000;
}
.roadmap-content p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 0.2rem;
    text-shadow: 1px 1px 4px #000, 0 0 2px #000;
}
.roadmap-desc {
    display: block;
    font-size: 0.95rem;
    color: #888;
    margin-top: 0.2rem;
    font-style: italic;
    opacity: 0.85;
    text-shadow: 1px 1px 4px #000, 0 0 2px #000;
}

@keyframes roadmapFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.98); }
    to { opacity: 1; transform: none; }
}
@keyframes roadmapCardIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
    .roadmap-timeline::before {
        left: 8px;
        transform: none;
    }
    .roadmap-phase, .roadmap-phase.right, .roadmap-phase.left {
        width: 100%;
        left: 0;
        padding: 32px 0 32px 32px;
        text-align: left;
    }
    .roadmap-phase .roadmap-dot {
        left: -14px;
        right: auto;
    }
}
@media (max-width: 600px) {
    .roadmap-content {
        min-width: 0;
        max-width: 100vw;
        padding: 1.2rem 0.5rem;
    }
}

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(135deg, #18191b 60%, #232323 100%);
    position: relative;
    box-shadow: 0 0 60px 0 #000a inset;
    overflow: hidden;
}
.community::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/noise.png');
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}

.community h2 {
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #e0e0e0;
    text-shadow: 2px 2px 8px #000, 0 0 2px #000;
    letter-spacing: 1px;
    z-index: 1;
    position: relative;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    z-index: 1;
    position: relative;
}

.social-link img {
    filter: drop-shadow(0 0 8px #222a) grayscale(0.2) brightness(1.2);
    transition: filter 0.3s, transform 0.2s;
    border-radius: 50%;
    background: #232323;
    padding: 0.2rem;
}
.social-link img:hover {
    filter: drop-shadow(0 0 16px #4f4) grayscale(0) brightness(1.4);
    transform: scale(1.08) rotate(-3deg);
}

/* Footer profissional */
footer {
    background: #18191b;
    border-top: 2px solid #232323;
    box-shadow: 0 -2px 24px #000a;
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    color: #b0b0b0;
    position: relative;
    z-index: 2;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #e0e0e0;
    letter-spacing: 1px;
}
.footer-title {
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    font-size: 1.3rem;
    font-weight: bold;
    color: #e0e0e0;
}
.footer-info {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    font-size: 1rem;
    color: #b0b0b0;
}
.footer-link {
    color: #b0ffb0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-info {
        flex-direction: column;
        gap: 0.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .message h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .tokenomics-grid,
    .roadmap-timeline {
        grid-template-columns: 1fr;
    }
}

.about-snowflake {
    position: absolute;
    top: -2%;
    color: #e0e0e0;
    font-size: 1.1em;
    opacity: 0.18;
    user-select: none;
    animation: snowFall linear infinite;
    font-family: 'Space Mono', 'Roboto Mono', monospace;
    text-shadow: 0 0 6px #fff, 0 0 2px #fff;
}

/* Distribuição e animação dos flocos */
.about-snowflake:nth-child(1)  { left: 5%;  animation-duration: 11s; animation-delay: 0s;  font-size: 1.2em; }
.about-snowflake:nth-child(2)  { left: 15%; animation-duration: 13s; animation-delay: 2s;  font-size: 1.1em; }
.about-snowflake:nth-child(3)  { left: 25%; animation-duration: 10s; animation-delay: 1s;  font-size: 1.3em; }
.about-snowflake:nth-child(4)  { left: 35%; animation-duration: 14s; animation-delay: 3s;  font-size: 1.0em; }
.about-snowflake:nth-child(5)  { left: 45%; animation-duration: 12s; animation-delay: 2.5s; font-size: 1.2em; }
.about-snowflake:nth-child(6)  { left: 55%; animation-duration: 15s; animation-delay: 1.5s; font-size: 1.1em; }
.about-snowflake:nth-child(7)  { left: 65%; animation-duration: 13s; animation-delay: 0.5s; font-size: 1.2em; }
.about-snowflake:nth-child(8)  { left: 75%; animation-duration: 12s; animation-delay: 2.2s; font-size: 1.0em; }
.about-snowflake:nth-child(9)  { left: 85%; animation-duration: 16s; animation-delay: 1.8s; font-size: 1.3em; }
.about-snowflake:nth-child(10) { left: 95%; animation-duration: 14s; animation-delay: 0.8s; font-size: 1.1em; }
.about-snowflake:nth-child(11) { left: 10%; animation-duration: 15s; animation-delay: 1.2s; font-size: 1.0em; }
.about-snowflake:nth-child(12) { left: 20%; animation-duration: 13s; animation-delay: 2.7s; font-size: 1.2em; }
.about-snowflake:nth-child(13) { left: 30%; animation-duration: 12s; animation-delay: 0.6s; font-size: 1.1em; }
.about-snowflake:nth-child(14) { left: 40%; animation-duration: 14s; animation-delay: 1.9s; font-size: 1.3em; }
.about-snowflake:nth-child(15) { left: 50%; animation-duration: 11s; animation-delay: 2.3s; font-size: 1.0em; }
.about-snowflake:nth-child(16) { left: 60%; animation-duration: 16s; animation-delay: 0.3s; font-size: 1.2em; }
.about-snowflake:nth-child(17) { left: 70%; animation-duration: 13s; animation-delay: 1.7s; font-size: 1.1em; }
.about-snowflake:nth-child(18) { left: 80%; animation-duration: 12s; animation-delay: 2.1s; font-size: 1.3em; }
.about-snowflake:nth-child(19) { left: 90%; animation-duration: 15s; animation-delay: 0.9s; font-size: 1.0em; }
.about-snowflake:nth-child(20) { left: 50%; animation-duration: 17s; animation-delay: 1.4s; font-size: 1.2em; }

@keyframes snowFall {
    0% { top: -2%; opacity: 0.18; }
    80% { opacity: 0.18; }
    100% { top: 102%; opacity: 0; }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    margin-left: 1rem;
}
.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: #e0e0e0;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex !important;
        z-index: 2002;
    }
    .nav-links {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: 220px;
        background: rgba(24,25,27,0.98);
        box-shadow: -2px 0 24px #000a;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 24px 24px;
        gap: 2rem;
        z-index: 2001;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(.77,0,.18,1);
        opacity: 0.98;
        display: flex !important;
    }
    .nav-links.open {
        transform: translateX(0);
        display: flex !important;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        display: block;
        padding: 0.7rem 0;
        border-bottom: 1px solid #23232344;
    }
    body, html {
        overflow-x: hidden;
    }
} 