:root {
    --primary-color: #FFB800; /* Gold */
    --secondary-color: #1E3D59; /* Deep Blue */
    --accent-color: #C41E3A; /* Egyptian Red */
    --background-color: #F5F5F5;
    --text-color: #333333;
    --sand-color: #E6C9A8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Para compensar o menu fixo */
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Rolagem suave no iOS */
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('banner3000.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('banner3000.png') center/cover no-repeat;
    filter: brightness(0.7) saturate(1.2);
    z-index: -1;
    animation: subtleZoom 20s infinite alternate;
}

@keyframes subtleZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(30, 61, 89, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 10px 30px;
    background: rgba(30, 61, 89, 0.98);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    text-decoration: none;
}

.logo::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,184,0,0.2) 0%, transparent 70%);
    animation: pulse 2s infinite;
}

.logo-img {
    height: 45px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255,184,0,0.5));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

nav ul li a:hover::before {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    padding-top: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,184,0,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.5),
                 0 0 40px rgba(255, 184, 0, 0.3);
    animation: glow 2s ease-in-out infinite;
    transform-style: preserve-3d;
    position: relative;
}

.hero-content h1::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    text-shadow: none;
    animation: glitch 5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

@keyframes glitch {
    0%, 100% { transform: none; opacity: 1; }
    7% { transform: skew(-0.5deg, -0.9deg); }
    10% { transform: none; }
    27% { transform: none; }
    30% { transform: skew(0.8deg, -0.1deg); }
    35% { transform: none; }
    52% { transform: none; }
    55% { transform: skew(-1deg, 0.2deg); }
    50% { transform: none; }
    72% { transform: none; }
    75% { transform: skew(0.4deg, 1deg); }
    80% { transform: none; }
    100% { transform: none; }
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1s;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50%" x="50%" dominant-baseline="middle" text-anchor="middle" font-size="50">𓀀</text></svg>') repeat;
    opacity: 0.05;
    pointer-events: none;
}

/* Estilo da seção About */
.about {
    background: linear-gradient(135deg, #1e3d59 0%, #2a4f6e 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" width="80" height="80"><path fill="%23ffffff10" d="M40 0l40 40-40 40L0 40z"/></svg>');
    background-size: 80px 80px;
    opacity: 0.1;
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% { background-position: 0 0; }
    100% { background-position: 160px 160px; }
}

.about h2 {
    color: var(--primary-color);
    font-family: 'Cinzel', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
    position: relative;
}

.about h2::after {
    content: '☥';
    display: block;
    font-size: 2rem;
    margin-top: 10px;
    color: var(--primary-color);
    animation: ankh-glow 2s ease-in-out infinite;
}

@keyframes ankh-glow {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-5px); opacity: 1; }
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
    color: #fff;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 184, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.about-text:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.meme-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 184, 0, 0.3);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 184, 0, 0.2);
}

.stat .number.counting {
    animation: numberGlitch 0.1s infinite, numberColor 0.1s infinite;
}

@keyframes numberGlitch {
    0% { transform: translate(0); }
    25% { transform: translate(-2px, 2px); }
    50% { transform: translate(2px, -2px); }
    75% { transform: translate(-1px, -1px); }
    100% { transform: translate(0); }
}

@keyframes numberColor {
    0% { color: var(--primary-color); }
    50% { color: #00ff00; text-shadow: 0 0 10px rgba(0, 255, 0, 0.5); }
    100% { color: var(--primary-color); }
}

.stat .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
    transition: color 0.3s ease;
}

.stat .label {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 184, 0, 0.3);
    position: relative;
}

.about-image .glitch-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 20px;
    animation: glitchEffect 8s infinite;
}

.about-image .glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    pointer-events: none;
}

@keyframes glitchEffect {
    0%, 100% { 
        opacity: 0; 
        transform: translate(0) scale(1);
        filter: none;
    }
    7% { 
        opacity: 0.8; 
        transform: translate(-5px, 3px) scale(1.02);
        filter: hue-rotate(90deg) saturate(150%);
    }
    8% { 
        opacity: 0;
        transform: translate(5px, -3px) scale(0.98);
    }
    9% { 
        opacity: 0.8;
        transform: translate(0) scale(1);
        filter: hue-rotate(-90deg) saturate(150%);
    }
    10% { 
        opacity: 0; 
    }
    45% { 
        opacity: 0; 
    }
    50% { 
        opacity: 0.8;
        transform: translate(3px, 2px) scale(1.01);
        filter: contrast(150%) brightness(120%);
    }
    51% { 
        opacity: 0; 
    }
    52% { 
        opacity: 0.8;
        transform: translate(-3px, -2px) scale(0.99);
    }
    53% { 
        opacity: 0; 
    }
    90% { 
        opacity: 0; 
    }
    92% { 
        opacity: 0.8;
        transform: translate(5px, -5px) scale(1.02);
        filter: invert(10%) hue-rotate(45deg);
    }
    93% { 
        opacity: 0; 
    }
}

.about-image:hover .glitch-img {
    animation: glitchEffectHover 2s infinite;
}

@keyframes glitchEffectHover {
    0%, 100% { 
        opacity: 0; 
        transform: translate(0);
    }
    10%, 90% { 
        opacity: 0.8; 
        transform: translate(-2px, 2px);
    }
    20%, 80% { 
        opacity: 0;
        transform: translate(2px, -2px);
    }
    30%, 70% { 
        opacity: 0.8;
        transform: translate(-1px, 1px);
    }
    40%, 60% { 
        opacity: 0;
        transform: translate(1px, -1px);
    }
    50% { 
        opacity: 0.8;
        transform: translate(0);
    }
}

.about-image::before {
    content: '🕮';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 40px;
    animation: float 3s ease-in-out infinite;
}

.about-text::before {
    content: '𓊵';
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    transform: rotate(-45deg);
}

.about-text::after {
    content: '𓊹';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .meme-stats {
        grid-template-columns: 1fr;
    }
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, #2a4f6e 0%, #1e3d59 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    color: #fff;
}

.tokenomics h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}

.tokenomics h2::after {
    content: '𓇭';
    display: block;
    font-size: 2rem;
    margin-top: 10px;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 184, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 184, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.tokenomics-card:hover::before {
    transform: translateX(100%);
}

.tokenomics-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 184, 0, 0.4);
}

.tokenomics-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,184,0,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.tokenomics-card:hover::after {
    opacity: 1;
}

.tokenomics-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}

.tokenomics-card h3::before {
    content: '𓀀';
    font-size: 24px;
    margin-right: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tokenomics-card:hover h3::before {
    opacity: 1;
    transform: translateY(0);
}

.tokenomics-card p {
    color: #fff;
    font-size: 1.2rem;
    margin: 15px 0;
}

.meme-text {
    color: var(--primary-color);
    font-size: 1rem;
    opacity: 0.9;
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(45deg, #1e3d59 0%, #2a4f6e 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    color: #fff;
}

.roadmap h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}

.roadmap h2::after {
    content: '𓊝';
    display: block;
    font-size: 2rem;
    margin-top: 10px;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 184, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50%" x="50%" dominant-baseline="middle" text-anchor="middle" font-size="80" fill="%23FFB800" opacity="0.1">𓂀</text></svg>') no-repeat center;
    opacity: 0.1;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    opacity: 0.2;
    transform: scale(1);
}

.timeline-item h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}

.timeline-item ul {
    list-style: none;
    margin-top: 20px;
}

.timeline-item li {
    color: #fff;
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.timeline-item li::before {
    content: '☥';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Community */
.community {
    background: linear-gradient(135deg, #2a4f6e 0%, #1e3d59 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    color: #fff;
}

.community h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}

.community h2::after {
    content: '𓀀';
    display: block;
    font-size: 2rem;
    margin-top: 10px;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    padding: 15px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
}

.social-link:hover::before {
    left: 0;
}

.community-stats {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.community-logo {
    width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.5));
    animation: floatAndGlow 4s ease-in-out infinite;
}

@keyframes floatAndGlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.5));
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.8));
    }
}

.community .meme-text {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(to right, #1E3D59, #2A4E6E);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 100px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(20px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.social-icon:hover::before {
    transform: translateY(0);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.footer-pyramids {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,20 80,80 20,80" fill="%23FFB800" opacity="0.1"/></svg>') repeat-x bottom;
    background-size: 100px 100px;
    z-index: 1;
    animation: moveFooterPyramids 20s linear infinite;
}

@keyframes moveFooterPyramids {
    from { background-position: 0 bottom; }
    to { background-position: 1000px bottom; }
}

.footer-hieroglyphs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50%" x="50%" dominant-baseline="middle" text-anchor="middle" font-size="50" fill="%23FFB800" opacity="0.1">𓀀</text></svg>') repeat;
    background-size: 50px 50px;
    z-index: 1;
    opacity: 0.05;
    animation: fadeHieroglyphs 4s ease-in-out infinite;
}

@keyframes fadeHieroglyphs {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.1; }
}

/* Animated Background for White Sections */
.about, .tokenomics, .roadmap, .community {
    position: relative;
    overflow: hidden;
}

.about::before, .tokenomics::before, .roadmap::before, .community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(255,184,0,0.05) 25%, transparent 25%) -50px 0,
        linear-gradient(-45deg, rgba(255,184,0,0.05) 25%, transparent 25%) -50px 0,
        linear-gradient(45deg, transparent 75%, rgba(255,184,0,0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,184,0,0.05) 75%);
    background-size: 100px 100px;
    animation: movePattern 20s linear infinite;
    z-index: -1;
}

@keyframes movePattern {
    0% { background-position: 0 0, 0 0, 50px 50px, 50px 50px; }
    100% { background-position: 500px 500px, 500px 500px, 550px 550px, 550px 550px; }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    border: 3px solid var(--secondary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: #e6a700;
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('logobg.jpg');
        background-size: cover;
        background-position: center center;
    }
    
    .hero::before {
        background: url('logobg.jpg') center/cover no-repeat;
    }
    
    .hero-content {
        padding: 0 15px;
        margin-top: 120px; /* Mais espaço para navbar em modo mobile */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .subtitle {
        font-size: 1.2rem;
        text-align: center;
    }
    
    nav {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 35px;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(30, 61, 89, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: all 0.3s ease;
        padding: 80px 0;
        z-index: 1000;
    }

    nav.active ul {
        right: 0;
    }

    nav.active .menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    nav.active .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    nav.active .menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    nav ul li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

    nav.active ul li {
        opacity: 1;
        transform: translateX(0);
    }

    nav ul li a {
        font-size: 1.4rem;
        padding: 15px 25px;
        display: block;
        width: 100%;
        color: white;
    }

    nav ul li a:hover {
        color: var(--primary-color);
        background: rgba(255, 255, 255, 0.1);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    nav.active + .menu-overlay {
        display: block;
        opacity: 1;
    }

    /* Ajustes para o modo alien no menu mobile */
    .alien-mode nav ul {
        background: rgba(0, 51, 0, 0.98);
    }

    .alien-mode .menu-toggle span {
        background-color: #00ff00;
    }

    .alien-mode nav ul li a {
        color: #00ff00;
    }

    .alien-mode nav ul li a:hover {
        color: #fff;
        background: rgba(0, 255, 0, 0.2);
    }

    .tokenomics-grid, .timeline {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .about-content {
        padding: 0 15px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .social-link {
        width: 80%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a:hover {
        transform: translateY(-5px);
    }

    .footer-social {
        justify-content: center;
    }
}

/* Touch Device Improvements */
@media (hover: none) {
    .btn:hover {
        transform: none;
    }

    .social-link:hover {
        transform: none;
    }

    .tokenomics-card:hover,
    .timeline-item:hover {
        transform: none;
    }
}

/* Active States for Mobile */
.btn:active,
.social-link:active,
.tokenomics-card:active,
.timeline-item:active {
    transform: scale(0.98);
    transition: transform 0.1s;
}

/* Falling Pyramids Animation */
.falling-pyramid {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    animation: fallAndFade 3s ease-in forwards;
}

.falling-pyramid::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 40px solid rgba(255, 184, 0, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.2));
    transform-origin: 50% 100%;
    animation: pyramidRotate 2s infinite linear;
}

@keyframes fallAndFade {
    0% {
        transform: translateY(-100vh) translateX(-50%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(50%);
        opacity: 0;
    }
}

@keyframes pyramidRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Novos elementos temáticos */
.section-divider {
    position: relative;
    height: 60px;
    margin: 40px 0;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    top: 50%;
    transform: translateY(-50%);
}

.section-divider::after {
    content: '☥';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: var(--primary-color);
    background: var(--secondary-color);
    padding: 0 20px;
    animation: pulseAnkh 2s infinite ease-in-out;
}

@keyframes pulseAnkh {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Efeito de areia flutuante */
.sand-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sand-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 184, 0, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle var(--duration) infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}

/* Melhorias na Timeline */
.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50%" x="50%" dominant-baseline="middle" text-anchor="middle" font-size="80" fill="%23FFB800" opacity="0.1">𓂀</text></svg>') no-repeat center;
    opacity: 0.1;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    opacity: 0.2;
    transform: scale(1);
}

/* Efeito de brilho nos botões */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,184,0,0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.btn:hover::after {
    opacity: 1;
}

/* Glitch Effect */
.glitch-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ff00 !important;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    transition: all 0.3s ease;
    overflow: hidden;
}

.glitch-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    animation: glitch-scan 3s infinite linear;
}

@keyframes glitch-scan {
    0% { left: -100%; }
    100% { left: 200%; }
}

.glitch-text {
    position: relative;
    animation: glitch-text 0.5s infinite;
    display: inline-block;
}

@keyframes glitch-text {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-2px); color: #ff00ff; }
    40% { transform: translateX(2px); color: #00ffff; }
    60% { transform: skewX(5deg); }
    80% { transform: skewX(-5deg); }
}

/* Alien Theme */
.alien-mode {
    --primary-color: #00ff00;
    --secondary-color: #001a00;
    --accent-color: #ff00ff;
    background: #000 !important;
}

.alien-mode * {
    font-family: 'Orbitron', sans-serif !important;
}

.alien-mode .hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('banner4000.png') center/cover !important;
}

.alien-mode .hero::before {
    background: url('banner4000.png') center/cover no-repeat !important;
    filter: brightness(0.7) saturate(1.5) hue-rotate(120deg);
}

.alien-mode nav {
    background: rgba(0, 51, 0, 0.95) !important;
}

.alien-mode .about,
.alien-mode .tokenomics,
.alien-mode .roadmap,
.alien-mode .community {
    background: linear-gradient(135deg, #001a00 0%, #003300 100%) !important;
}

.alien-mode .tokenomics-card,
.alien-mode .timeline-item,
.alien-mode .about-text {
    background: rgba(0, 51, 0, 0.3) !important;
    border-color: rgba(0, 255, 0, 0.3) !important;
}

.alien-mode .btn.primary {
    background-color: #00ff00;
    color: #000;
}

.alien-mode .btn.secondary {
    border-color: #00ff00;
    color: #00ff00;
}

.alien-mode footer {
    background: linear-gradient(to right, #001a00, #003300) !important;
}

.alien-mode .social-link {
    border-color: #00ff00;
    color: #00ff00;
}

.alien-mode .social-link:hover {
    background-color: #00ff00;
    color: #000;
}

/* Popup Styles */
.alien-popup {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    color: #00ff00;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.alien-popup.active {
    opacity: 1;
    transform: scale(1);
}

.alien-popup::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #00ff00;
    border-radius: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

.alien-symbol {
    position: absolute;
    font-size: 24px;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    pointer-events: none;
    animation: float-symbol 3s infinite ease-in-out;
}

@keyframes float-symbol {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.alien-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ff00;
    opacity: 0.5;
    animation: scan-line 2s linear infinite;
}

@keyframes scan-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Hologram Effect */
.hologram {
    position: relative;
    overflow: hidden;
}

.hologram::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(0, 255, 255, 0.1) 45%,
        rgba(0, 255, 255, 0.2) 50%,
        rgba(0, 255, 255, 0.1) 55%,
        transparent 100%
    );
    animation: hologram-shift 3s linear infinite;
}

@keyframes hologram-shift {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* Matrix Rain Effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.3;
}

.matrix-drop {
    position: absolute;
    color: #00ff00;
    font-family: monospace;
    font-size: 14px;
    text-shadow: 0 0 5px #00ff00;
    animation: matrix-fall linear infinite;
}

@keyframes matrix-fall {
    0% { transform: translateY(-100%); opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Alien Cursor */
.alien-cursor {
    cursor: none;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #00ff00;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor::after {
    content: '👽';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
}

/* Alien Text Effect */
.alien-text {
    background: linear-gradient(90deg, #00ff00, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    color: transparent;
    animation: alien-text-shift 3s linear infinite;
}

@keyframes alien-text-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        margin-left: auto;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    nav {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 35px;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(30, 61, 89, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: all 0.3s ease;
        padding: 80px 0;
        z-index: 1000;
    }

    nav.active ul {
        right: 0;
    }

    nav.active .menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    nav.active .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    nav.active .menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Warning Popup */
.warning-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(200, 0, 0, 0.95);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    z-index: 10000;
    opacity: 0;
    border: 3px solid #ff0000;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.warning-popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation: warningPulse 0.5s infinite;
}

.warning-popup .alien-text {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0f0;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px #0f0;
}

.warning-popup.alien .normal-text {
    opacity: 0;
}

.warning-popup.alien .alien-text {
    opacity: 1;
}

@keyframes warningPulse {
    0%, 100% {
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow: 0 0 100px rgba(255, 0, 0, 0.8);
        text-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }
}

.red-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.3);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.red-flash.active {
    animation: redFlash 1.5s ease-out;
}

@keyframes redFlash {
    0% { opacity: 0; }
    10% { opacity: 0.8; }
    20% { opacity: 0.3; }
    30% { opacity: 0.8; }
    40% { opacity: 0.3; }
    50% { opacity: 0.8; }
    60% { opacity: 0; }
    100% { opacity: 0; }
}

/* Contract Address Styles */
.contract-address {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 184, 0, 0.3);
    max-width: 600px;
    width: 90%;
}

.contract-address .label {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.address-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
}

.address {
    color: #fff;
    font-family: monospace;
    font-size: 1rem;
    word-break: break-all;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .contract-address {
        padding: 10px 15px;
        margin-bottom: 20px;
    }

    .address {
        font-size: 0.9rem;
    }
} 