:root {
    --primary-color: #00ff00;
    --secondary-color: #000000;
    --accent-color: #00ff88;
    --text-color: #ffffff;
    --background-color: #0a0a0a;
    --section-padding: 120px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    height: 100%;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVfJ/YAAAACHRSTlMzMzMzMzMzM85JBgUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAwSURBVDjLY2AYBaNg2AIWQQEmJiYGBgYGBiYmJgYGBgYGRkZGBgYGBgYmJiYGBgYGAE8qBQHh6hQxAAAAAElFTkSuQmCC');
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

/* Matrix Background */
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9),
        rgba(0, 20, 0, 0.9)
    );
    z-index: 0;
    overflow: hidden;
}

.matrix-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent 0%,
            transparent 50%,
            rgba(0, 255, 0, 0.05) 50.5%,
            transparent 51%,
            transparent 100%
        );
    background-size: 100% 100%, 100px 100px;
    animation: matrix-scan 10s linear infinite;
    opacity: 0.5;
}

@keyframes matrix-scan {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 100%;
    }
}

/* Section Styles */
.section {
    min-height: 100vh;
    width: 100%;
    padding: var(--section-padding);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 255, 0, 0.1);
}

.logo-img {
    height: 60px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.3));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.5));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-right: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 5px;
    border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary-color);
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--primary-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
    outline: none;
}

/* Menu Hamburguer */
.menu-btn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.menu-btn__burger,
.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.menu-btn__burger {
    top: 50%;
    transform: translateY(-50%);
}

.menu-btn__burger::before {
    top: -8px;
}

.menu-btn__burger::after {
    top: 8px;
}

.menu-btn.open .menu-btn__burger {
    background: transparent;
    box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) translate(5px, 8px);
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) translate(5px, -8px);
}

/* Menu Mobile */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 999;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 1rem 2rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 5px;
    border: 1px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
    color: var(--primary-color);
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    outline: none;
}

/* Menu Ativo */
.nav-links a.active,
.mobile-nav a.active {
    color: var(--primary-color);
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    transform: translateY(-2px) scale(1.05);
}

/* Efeitos de Cyber */
.cyber-line {
    position: fixed;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    opacity: 0.2;
    z-index: 998;
    pointer-events: none;
}

.cyber-line:nth-child(1) { top: 10%; }
.cyber-line:nth-child(2) { top: 30%; }
.cyber-line:nth-child(3) { top: 50%; }
.cyber-line:nth-child(4) { top: 70%; }
.cyber-line:nth-child(5) { top: 90%; }

/* Hero Section */
#home {
    padding-top: 150px;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glitch-text {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 var(--primary-color),
                -0.05em -0.025em 0 var(--accent-color);
    animation: glitch 1s infinite;
    margin-bottom: 2rem;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 var(--primary-color),
                    -0.05em -0.025em 0 var(--accent-color);
    }
    14% {
        text-shadow: 0.05em 0 0 var(--primary-color),
                    -0.05em -0.025em 0 var(--accent-color);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 var(--primary-color),
                    0.025em 0.025em 0 var(--accent-color);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 var(--primary-color),
                    0.025em 0.025em 0 var(--accent-color);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 var(--primary-color),
                    0.05em 0 0 var(--accent-color);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 var(--primary-color),
                    0.05em 0 0 var(--accent-color);
    }
    100% {
        text-shadow: -0.025em 0 0 var(--primary-color),
                    -0.025em -0.025em 0 var(--accent-color);
    }
}

.subtitle {
    font-size: 1.8rem;
    margin: 2rem 0;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Buttons */
.cta-buttons {
    margin-top: 3rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    margin: 0.5rem;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    text-decoration: none;
}

.btn-primary:active, .btn-secondary:active {
    transform: translateY(1px);
}

/* Rewards Section */
.rewards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.reward-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.reward-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.reward-value {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-weight: bold;
}

/* Tokenomics Section */
.tokenomics-container {
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
}

.tokenomics-info {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.total-supply, .min-hold {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
}

.total-supply:hover, .min-hold:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.tokenomics-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tokenomics-info .value {
    font-size: 2rem;
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.tokenomics-chart {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.chart-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
}

.chart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.chart-label {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-value {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

@media (max-width: 768px) {
    .tokenomics-info,
    .tokenomics-chart {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tokenomics-info .value {
        font-size: 1.8rem;
    }

    .chart-value {
        font-size: 2rem;
    }
}

/* Roadmap Styles */
.roadmap-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
}

.roadmap-quarter {
    flex: 1;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.roadmap-quarter:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.roadmap-quarter.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.quarter-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.quarter-label {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.year {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.quarter-content ul {
    list-style: none;
    padding: 0;
}

.quarter-content li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.quarter-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.quarter-content li.completed {
    color: var(--accent-color);
}

.quarter-content li.completed::before {
    content: '✓';
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 4rem 2rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-stats {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-stats span {
    background: rgba(0, 255, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-links, .footer-social {
    flex: 1;
}

.footer h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
}

.social-button:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
}

.social-button i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-right {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-stats {
        justify-content: center;
    }

    .footer-logo {
        display: block;
        margin: 0 auto 1.5rem;
    }

    .footer-description {
        text-align: center;
    }

    .footer h3 {
        text-align: center;
    }

    .footer-links nav {
        align-items: center;
    }

    .social-buttons {
        align-items: center;
    }

    .social-button {
        width: 100%;
        justify-content: center;
    }
}

/* Navbar additions */
.social-nav {
    display: flex;
    gap: 1.5rem;
    margin-left: 2rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .logo-img {
        height: 50px;
    }

    .nav-links {
        display: none;
    }
    
    .glitch-text {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid,
    .rewards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        margin: 0.5rem 0;
    }

    .roadmap-container {
        flex-direction: column;
    }

    .roadmap-quarter {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social-links {
        align-items: center;
    }

    .social-nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 10px;
    background: rgba(0, 0, 0, 0.9);
}

::-webkit-scrollbar-track {
    background: rgba(0, 255, 0, 0.05);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, 0.9);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Indicador de Rolagem */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.scroll-indicator::after {
    content: '↑';
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Popup de Rewards */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.rewards-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.98);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 3rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.rewards-popup.active {
    opacity: 1;
    visibility: visible;
}

.rewards-popup-content {
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    padding-right: 10px;
}

.rewards-popup-content::-webkit-scrollbar {
    width: 5px;
}

.rewards-popup-content::-webkit-scrollbar-track {
    background: rgba(0, 255, 0, 0.1);
}

.rewards-popup-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.close-popup:hover {
    background: var(--primary-color);
    color: #000;
    transform: rotate(180deg);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.rewards-popup h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Cards de Estatísticas */
.rewards-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rewards-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rewards-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
}

.rewards-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rewards-info h3 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Seção de Input */
.rewards-input-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.token-symbol {
    position: absolute;
    right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.calculate-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.calculate-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

/* Projeções */
.rewards-projection {
    margin-top: 2rem;
}

.rewards-projection h3 {
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.projection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.projection-item {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
}

.projection-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 255, 0, 0.2);
}

.projection-item span:first-child {
    display: block;
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projection-item span:last-child {
    display: block;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Link para DexScreener */
.dex-link {
    margin-top: 2rem;
    text-align: center;
}

.dex-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dex-link a:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .rewards-popup {
        padding: 2rem;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .rewards-stats {
        grid-template-columns: 1fr;
    }

    .projection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter {
        font-size: 1.8rem;
    }

    .close-popup {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .rewards-popup {
        padding: 1.5rem;
    }

    .projection-grid {
        grid-template-columns: 1fr;
    }

    .rewards-popup h2 {
        font-size: 1.8rem;
    }

    .counter {
        font-size: 1.5rem;
    }

    .input-wrapper input {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
#preloader > pre.ascii-gold-bar {
  margin-bottom: 32px;
}
#terminal-progress-bar {
  width: 80%;
  max-width: 340px;
  height: 10px;
  background: #002200;
  border: 1.5px solid #00ff00;
  border-radius: 6px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0 8px #00ff0044;
  position: relative;
}
.gold-bar-matrix.matrix-terminal {
  width: 220px;
  height: 48px;
  background: repeating-linear-gradient(90deg, #003300 0 2px, #00ff00 2px 4px);
  border-radius: 8px;
  border: 2.5px solid #00ff00;
  box-shadow: 0 0 24px #00ff00, 0 0 80px #00ff0044, 0 0 2px #fff inset;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.matrix-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.matrix-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #00ff00 0%, #003300 100%);
  opacity: 0.7;
  border-radius: 2px;
  animation: matrix-fall 1.2s linear infinite;
  box-shadow: 0 0 8px #00ff00, 0 0 2px #fff;
}
.matrix-line:nth-child(2) { animation-delay: 0.2s; }
.matrix-line:nth-child(3) { animation-delay: 0.4s; }
.matrix-line:nth-child(4) { animation-delay: 0.1s; }
.matrix-line:nth-child(5) { animation-delay: 0.3s; }
.matrix-line:nth-child(6) { animation-delay: 0.5s; }
.matrix-line:nth-child(7) { animation-delay: 0.6s; }
.matrix-line:nth-child(8) { animation-delay: 0.7s; }
.matrix-line:nth-child(9) { animation-delay: 0.8s; }
.matrix-line:nth-child(10) { animation-delay: 0.9s; }
@keyframes matrix-fall {
  0% { transform: translateY(-100%); opacity: 0.2; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0.2; }
}
#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

/* ASCII Gold Bar Preloader */
.ascii-gold-bar {
  color: #00ff00;
  font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 0 8px #00ff00, 0 0 2px #fff;
  margin: 0 auto;
  animation: blink-terminal 0.7s steps(1) infinite alternate;
  background: none;
  border: none;
  box-shadow: none;
  display: inline-block;
}
.ascii-gold-bar span {
  display: block;
  will-change: transform;
  animation: wave-move 1.6s infinite ease-in-out;
}
.ascii-gold-bar span:nth-child(1) { animation-delay: 0s; }
.ascii-gold-bar span:nth-child(2) { animation-delay: 0.12s; }
.ascii-gold-bar span:nth-child(3) { animation-delay: 0.24s; }
.ascii-gold-bar span:nth-child(4) { animation-delay: 0.36s; }
.ascii-gold-bar span:nth-child(5) { animation-delay: 0.48s; }
.ascii-gold-bar span:nth-child(6) { animation-delay: 0.60s; }
.ascii-gold-bar span:nth-child(7) { animation-delay: 0.72s; }
.ascii-gold-bar span:nth-child(8) { animation-delay: 0.84s; }
.ascii-gold-bar span:nth-child(9) { animation-delay: 0.96s; }
.ascii-gold-bar span:nth-child(10) { animation-delay: 1.08s; }
.ascii-gold-bar span:nth-child(11) { animation-delay: 1.20s; }
.ascii-gold-bar span:nth-child(12) { animation-delay: 1.32s; }
.ascii-gold-bar span:nth-child(13) { animation-delay: 1.44s; }
.ascii-gold-bar span:nth-child(14) { animation-delay: 1.56s; }
.ascii-gold-bar span:nth-child(15) { animation-delay: 1.68s; }

@keyframes wave-move {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-8px); }
  50%  { transform: translateY(0); }
  80%  { transform: translateY(8px); }
  100% { transform: translateY(0); }
}

#terminal-progress-bar {
  width: 80%;
  max-width: 340px;
  height: 10px;
  background: #002200;
  border: 1.5px solid #00ff00;
  border-radius: 6px;
  margin: 18px auto 0 auto;
  overflow: hidden;
  box-shadow: 0 0 8px #00ff0044;
  position: relative;
}
#terminal-progress-bar .bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00ff00 60%, #fff 100%);
  box-shadow: 0 0 12px #00ff00, 0 0 2px #fff;
  border-radius: 6px;
  transition: width 0.3s;
  animation: terminal-bar-move 2.5s linear forwards;
}
@keyframes terminal-bar-move {
  0% { width: 0%; }
  90% { width: 100%; }
  100% { width: 100%; }
}

@media (max-width: 600px) {
  .ascii-gold-bar {
    font-size: 1.1rem;
    padding-left: 0;
    padding-right: 0;
    word-break: break-all;
    max-width: 98vw;
  }
  #terminal-progress-bar {
    max-width: 95vw;
    height: 8px;
  }
  #preloader > pre.ascii-gold-bar {
    margin-bottom: 18px;
  }
} 