/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #00f7ff;
    --secondary: #9945ff;
    --dark: #0a0a0a;
    --light: #ffffff;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Seções */
.about, .tokenomics, .roadmap {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 20, 20, 0.95) 0%, rgba(10, 10, 20, 0.95) 100%);
    position: relative;
    overflow: visible;
    border: none;
    margin: 0;
}

.about-content, .tokenomics-container, .roadmap-container {
    position: relative;
    z-index: 1;
}

/* About Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.about-card {
    background: rgba(0, 247, 255, 0.03);
    border: 1px solid rgba(0, 247, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 247, 255, 0.05);
    border: 1px solid rgba(0, 247, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 247, 255, 0.1);
}

/* Tokenomics */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 20, 20, 0.95) 0%, rgba(10, 10, 20, 0.95) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tokenomics-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
}

.token-card {
    background: rgba(0, 247, 255, 0.03);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s ease-in-out;
}

.token-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 247, 255, 0.05);
    border-color: rgba(0, 247, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
}

.token-card i {
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.token-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.token-value {
    font-size: 2em;
    font-weight: 700;
    color: var(--light);
    margin: 15px 0;
}

.token-detail {
    color: var(--primary);
    font-size: 0.9em;
    opacity: 0.8;
}

.token-features {
    background: rgba(0, 247, 255, 0.02);
    border: 1px solid rgba(0, 247, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.feature-title {
    color: var(--primary);
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    font-size: 1.1em;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2em;
}

/* Roadmap */
.roadmap {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.95) 0%, rgba(0, 20, 20, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.roadmap-line {
    display: none;
}

.phase-card {
    background: rgba(0, 247, 255, 0.03);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease-in-out;
    animation: fadeIn 0.5s ease-in-out;
}

.phase-card:last-child {
    margin-bottom: 0;
}

.phase-card:hover {
    background: rgba(0, 247, 255, 0.05);
    border-color: rgba(0, 247, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.phase-header i {
    font-size: 1.8em;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.phase-header h3 {
    color: var(--primary);
    font-size: 1.5em;
    margin: 0;
}

.phase-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.phase-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
}

.phase-item i {
    color: var(--primary);
    font-size: 1.2em;
}

.phase-item.done i {
    color: #00ff00;
}

/* Títulos das seções */
.about h2, .tokenomics h2, .roadmap h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary);
}

/* Overlay de transição */
.section-overlay {
    display: none;
}

.about {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 20, 20, 0.95) 0%, rgba(10, 10, 20, 0.95) 100%);
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(0, 247, 255, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, rgba(153, 69, 255, 0.1) 0%, transparent 40%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    z-index: -2;
    transform: translateZ(0);
    will-change: transform;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 247, 255, 0.2) 50%, transparent 50%),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 247, 255, 0.2) 50%, transparent 50%),
        radial-gradient(2px 2px at 60px 110px, rgba(0, 247, 255, 0.2) 50%, transparent 50%),
        radial-gradient(2px 2px at 80px 150px, rgba(0, 247, 255, 0.2) 50%, transparent 50%);
    background-size: 100px 100px;
    z-index: -1;
    opacity: 0.5;
    transform: translateZ(0);
    will-change: transform;
}

.about-logo {
    width: 150px;
    margin: 0 auto 30px;
    display: block;
}

.about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--dark);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-links img {
    height: 24px;
    width: auto;
    transition: filter 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links img:hover {
    filter: brightness(0.8);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .tokenomics-container {
        flex-direction: column;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .floating-logo {
        width: 200px;
    }

    .nav-links {
        display: none;
    }

    .banner h1 {
        font-size: 2.5em;
    }

    .rotating-coin img {
        width: 120px;
    }

    .cyber-box {
        margin: 20px;
    }

    .highlight-text {
        font-size: 1.4em;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
    }

    .timeline-content::before {
        left: -40px !important;
    }

    .about-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .token-features {
        margin-top: 20px;
    }

    .feature {
        font-size: 0.9em;
    }

    .feature-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .phase-items {
        grid-template-columns: 1fr;
    }

    .roadmap-line {
        left: 20px;
    }

    .phase-card {
        margin-left: 40px;
    }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header/Menu */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

header.hide {
    transform: translateY(-100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 50px;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(0, 247, 255, 0.3));
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--light);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Banner Section */
.banner {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
    margin: 0;
    background: var(--dark);
    z-index: 2;
}

.banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.5);
}

.banner-content {
    text-align: center;
    z-index: 2;
    position: relative;
    margin-bottom: 40px;
}

.rotating-coin {
    margin-bottom: 30px;
    position: relative;
}

.rotating-coin img {
    width: 180px;
    animation: rotate 20s linear infinite;
    filter: drop-shadow(0 0 15px rgba(0, 247, 255, 0.3));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.banner h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: var(--light);
    text-shadow: 0 0 20px var(--primary);
}

.cyber-box {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--primary);
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.highlight-text {
    color: var(--primary);
    font-size: 1.8em;
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--primary);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
}

.container {
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 20, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .banner {
        padding: 120px 20px 80px;
    }

    .banner-content {
        width: 100%;
        padding: 0 20px;
    }

    .cyber-box {
        margin: 30px 20px;
        width: auto;
    }

    .cta-button {
        margin: 30px auto 60px;
        display: inline-block;
        width: auto;
        max-width: 80%;
    }

    .about, .tokenomics, .roadmap {
        padding: 80px 20px;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .phase-items {
        grid-template-columns: 1fr;
    }
}

.contract-box {
    background: rgba(0, 247, 255, 0.03);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.contract-box h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 600px;
}

.contract-address span {
    font-family: monospace;
    font-size: 1.1em;
    color: var(--light);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.2em;
    padding: 5px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

/* Calculator Section */
.calculator {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.95) 0%, rgba(0, 20, 20, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.calculator h2 {
    text-align: center;
    font-size: 3.5em;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #00f7ff, #9945ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
    font-weight: 700;
    letter-spacing: 2px;
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
    from {
        filter: drop-shadow(0 0 2px rgba(0, 247, 255, 0.5));
    }
    to {
        filter: drop-shadow(0 0 10px rgba(0, 247, 255, 0.8));
    }
}

.calculator-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.calc-body {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 
        0 0 0 2px rgba(0, 247, 255, 0.3),
        0 0 20px rgba(0, 247, 255, 0.2),
        0 0 40px rgba(0, 247, 255, 0.1);
}

.calc-screen {
    background: #000;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.input-screen {
    text-align: right;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 247, 255, 0.2);
    margin-bottom: 10px;
}

#inputDisplay {
    font-family: 'Digital-7', 'VT323', monospace;
    font-size: 2em;
    color: #00f7ff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.rewards-screen {
    font-family: 'Digital-7', 'VT323', monospace;
    color: #fff;
}

.reward-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.reward-row:last-child {
    border-bottom: none;
}

.reward-row span:first-child {
    color: rgba(0, 247, 255, 0.7);
}

.calc-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
}

.btn {
    background: #2a2a2a;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.2em;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 
        0 4px 0 #1a1a1a,
        0 4px 10px rgba(0, 0, 0, 0.4);
    user-select: none;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: none;
}

.btn:hover {
    background: #3a3a3a;
}

.btn.clear {
    background: #ff3366;
    color: #fff;
}

.btn.operator {
    background: #00f7ff;
    color: #000;
}

.btn.number {
    background: #2a2a2a;
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 10px;
    }

    .calc-body {
        padding: 15px;
    }

    .btn {
        padding: 12px;
        font-size: 1.1em;
    }
}

@keyframes updateValue {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
} 