<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
:root {
    --primary: #077a10;
    --primary-light: #99cc9d;
    --primary-dark: #04590b;
    --secondary: #6f4ceb;
    --secondary-light: #7D5CFF;
    --secondary-dark: #4A1FE5;
    --dark: #0A0E17;
    --darker: #060A12;
    --light: #1A2233;
    --lighter: #2A3347;
    --text: #FFFFFF;
    --text-secondary: #B0B7C3;
    --success: #00E4A1;
    --warning: #FFD166;
    --danger: #FF5A5A;
    --border: #2A3347;
    --card: rgba(26, 34, 51, 0.8);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--light) 100%);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    --glow: 0 0 20px rgba(255, 107, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--dark);
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 50%, var(--darker) 0%, var(--dark) 100%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover:before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow), var(--glow);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: rgba(104, 0, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-buy {
    background: var(--gradient-primary);
    color: var(--text);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow), var(--glow);
    background: var(--gradient-secondary);
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid var(--primary);
    box-shadow: var(--glow);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

#nav ul {
    display: flex;
    align-items: center;
}

#nav ul li {
    margin-left: 30px;
}

#nav ul li a {
    font-weight: 500;
    position: relative;
}

#nav ul li a:not(.btn-buy):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

#nav ul li a:not(.btn-buy):hover:after {
    width: 100%;
}

.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
#hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-text .tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text .description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

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

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: var(--glow);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

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

.orbit-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(98, 54, 255, 0.3);
    animation-direction: reverse;
    animation-duration: 15s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.planet {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.planet-1 {
    width: 30px;
    height: 30px;
    background: var(--primary);
    top: 20%;
    right: 10%;
    box-shadow: 0 0 15px var(--primary);
    animation: orbit1 20s linear infinite;
}

.planet-2 {
    width: 20px;
    height: 20px;
    background: var(--secondary);
    bottom: 20%;
    left: 15%;
    box-shadow: 0 0 15px var(--secondary);
    animation: orbit2 15s linear infinite;
}

@keyframes orbit1 {
    from {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    to {
        transform: rotate(-360deg) translateX(80px) rotate(360deg);
    }
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.star-2 {
    width: 3px;
    height: 3px;
    bottom: 40%;
    right: 25%;
    animation-delay: 1s;
}

.star-3 {
    width: 5px;
    height: 5px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.floating-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    background: rgba(26, 34, 51, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.stat-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-right: 15px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(104, 0, 255, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: var(--card);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(104, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text);
}

.about-card p {
    color: var(--text-secondary);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 80px;
}

.story-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 3px solid var(--primary);
    max-width: 90%;
}

.story-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.story-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Tokenomics Section */
.tokenomics-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.token-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.token-detail-item {
    display: flex;
    align-items: center;
    background: var(--card);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.token-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(104, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.detail-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text);
}

.detail-content p {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.token-features {
    background: var(--card);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.feature-item {
    margin-bottom: 25px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
    display: flex;
    align-items: center;
}

.feature-item h4 i {
    color: var(--success);
    margin-right: 10px;
}

.feature-item p {
    color: var(--text-secondary);
    padding-left: 28px;
}

/* How to Buy Section */
.buy-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    display: flex;
    align-items: flex-start;
    background: var(--card);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-right: 25px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.step-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.wallet-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.wallet-icon-wrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.wallet-icon-wrapper:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
}

.wallet-icon-wrapper i {
    margin-right: 8px;
    color: var(--primary);
}

.contract-box {
    background: var(--card);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.contract-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.contract-header h3 {
    font-size: 1.3rem;
    color: var(--text);
}

.network-badge {
    background: rgba(98, 54, 255, 0.1);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.contract-address {
    background: var(--darker);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    position: relative;
}

.contract-address code {
    font-family: monospace;
    color: var(--primary);
    font-size: 1rem;
    word-break: break-all; /* Quebra o texto em qualquer caractere */
    display: block; /* Faz o elemento ocupar toda a largura disponÃ­vel */
    width: calc(100% - 30px); /* Deixa espaÃ§o para o botÃ£o */
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

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

.contract-links {
    display: flex;
    justify-content: space-between;
}

.contract-link {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contract-link i {
    margin-right: 8px;
}

.contract-link:hover {
    color: var(--primary);
}

/* Community Section */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.community-card {
    position: relative;
    background: var(--card);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(98, 54, 255, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.community-card:hover .card-overlay {
    opacity: 1;
}

.community-card.twitter:hover {
    border-color: #1DA1F2;
}

.community-card.telegram:hover {
    border-color: #0088cc;
}

.community-card.discord:hover {
    border-color: #7289DA;
}

.community-card.medium:hover {
    border-color: #00AB6C;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.community-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--text);
}

.community-card.twitter:hover .card-icon {
    background-color: #1DA1F2;
}

.community-card.telegram:hover .card-icon {
    background-color: #0088cc;
}

.community-card.discord:hover .card-icon {
    background-color: #7289DA;
}

.community-card.medium:hover .card-icon {
    background-color: #00AB6C;
}

.community-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.community-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.card-cta {
    margin-top: auto;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.card-cta i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.community-card:hover .card-cta {
    transform: translateX(5px);
}

.community-card:hover .card-cta i {
    transform: translateX(5px);
}

.community-card.twitter:hover .card-cta {
    color: #1DA1F2;
}

.community-card.telegram:hover .card-cta {
    color: #0088cc;
}

.community-card.discord:hover .card-cta {
    color: #7289DA;
}

.community-card.medium:hover .card-cta {
    color: #00AB6C;
}

/* Footer */
#footer {
    background: var(--darker);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, var(--darker) 0%, transparent 70%);
    z-index: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--primary);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.disclaimer {
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 0.8rem !important;
    opacity: 0.7;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    background: var(--gradient-secondary);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text .description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 40px;
    }
    
    .floating-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        justify-content: center;
    }
    
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        order: -1;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .tokenomics-container {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    #nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: all 0.4s ease;
        z-index: 99;
    }
    
    #nav.active {
        right: 0;
    }
    
    #nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #nav ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    #nav ul li a {
        display: block;
        width: 100%;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Ajustes especÃ­ficos para o endereÃ§o do contrato em dispositivos mÃ³veis */
    .contract-address {
        flex-direction: column;
        padding: 15px 15px 50px 15px; /* EspaÃ§o extra na parte inferior para o botÃ£o */
    }
    
    .contract-address code {
        font-size: 0.85rem; /* Fonte menor em dispositivos mÃ³veis */
        width: 100%;
        margin-bottom: 10px;
    }
    
    .copy-btn {
        position: absolute;
        right: 15px;
        bottom: 15px;
        top: auto;
        transform: none;
    }
    
    .contract-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .contract-link {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    /* Ajustes adicionais para o endereÃ§o do contrato em telas muito pequenas */
    .contract-address code {
        font-size: 0.75rem; /* Fonte ainda menor em dispositivos muito pequenos */
    }
    
    .contract-box {
        padding: 20px;
    }
    
    .contract-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .network-badge {
        align-self: flex-start;
    }
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: 0;
    opacity: 0.5;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 1000;
    transition: width 0.2s ease;
}

/* Text Gradient Animation */
.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 5s linear infinite;
}

@keyframes textGradient {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Animated Text */
.animated-text {
    position: relative;
    display: inline-block;
}

.animated-text::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

.animated-text:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Pulse Effect */
.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

/* Rotating Animation */
.rotating-slow {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Floating Animation */
.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: shootingStar 5s linear infinite;
    opacity: 0;
}

.shooting-star::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
}

.shooting-star-2 {
    top: 40%;
    left: 70%;
    animation-delay: 2.5s;
}

@keyframes shootingStar {
    0% {
        transform: translate(0, 0) rotate(-45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        transform: translate(100px, 100px) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: translate(100px, 100px) rotate(-45deg);
        opacity: 0;
    }
}

/* Parallax Stars */
.parallax-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.parallax-layer-1, .parallax-layer-2, .parallax-layer-3 {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, white, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
}

.parallax-layer-1 {
    animation: parallaxStars 50s linear infinite;
}

.parallax-layer-2 {
    animation: parallaxStars 100s linear infinite;
    background-size: 300px 300px;
    opacity: 0.5;
}

.parallax-layer-3 {
    animation: parallaxStars 150s linear infinite;
    background-size: 400px 400px;
    opacity: 0.3;
}

@keyframes parallaxStars {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1000px 1000px;
    }
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Enhanced hover effects for cards */
.about-card:hover .card-icon {
    transform: rotateY(360deg);
    transition: transform 1s ease;
}

.token-detail-item:hover .detail-icon {
    transform: scale(1.2);
    transition: transform 0.5s ease;
}

.community-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Enhanced social icons */
.social-icon:hover {
    transform: translateY(-5px) rotate(10deg);
}

/* Enhanced button hover effects */
.btn-primary:hover, .btn-secondary:hover, .btn-buy:hover {
    transform: translateY(-5px) scale(1.05);
    transition: all 0.3s ease;
}

/* Enhanced wallet icon wrapper */
.wallet-icon-wrapper:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 107, 0, 0.3);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

/* Enhanced back to top button */
#back-to-top:hover {
    transform: translateY(-10px) scale(1.1);
    animation: rocketShake 1s infinite;
}

@keyframes rocketShake {
    0%, 100% {
        transform: translateY(-10px) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) rotate(-5deg);
    }
    75% {
        transform: translateY(-12px) rotate(5deg);
    }
}</pre></body></html>