/* Base Styles */
:root {
    --primary: #5F2EEA;
    --secondary: #2EC5CE;
    --accent: #FFD166;
    --background: #0A0F29;
    --background-light: #1A1F3A;
    --text: #FFFFFF;
    --text-light: #B8B9CE;
    --card-bg: rgba(26, 31, 58, 0.7);
    --gradient-primary: linear-gradient(135deg, #5F2EEA 0%, #8E6AFB 100%);
    --gradient-secondary: linear-gradient(135deg, #2EC5CE 0%, #4DEDFF 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(95, 46, 234, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(95, 46, 234, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 150px;
    height: auto;
    animation: pulse 2s infinite;
}

.loading-bar {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 30px auto 0;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: rgba(10, 15, 41, 0.8);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(10, 15, 41, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    font-weight: 500;
    color: var(--text-light);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    margin-left: 0;
    position: relative;
    overflow: hidden;
}

.social-btn.telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.social-btn.telegram:hover {
    background: #0088cc;
    color: white;
    transform: translateY(-3px);
}

.social-btn.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
    padding: 0;
}

.social-btn.twitter:hover {
    background: #1da1f2;
    color: white;
    transform: translateY(-3px);
}

.social-btn .x-logo {
    width: 22px;
    height: 22px;
    display: block;
    filter: drop-shadow(0 0 2px #fff) brightness(1.2);
}

.social-btn.twitter:hover .x-logo {
    filter: drop-shadow(0 0 8px #fff) brightness(2);
    transform: scale(1.1);
    transition: 0.2s;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 150;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(95, 46, 234, 0.1), transparent 70%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroTitleFadeIn 1.2s cubic-bezier(.39,.575,.565,1) both;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary);
    animation: heroSubtitleBounce 1.3s 0.2s cubic-bezier(.39,.575,.565,1) both;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features {
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--background);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(95, 46, 234, 0.3);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Tokenomics Section */
.tokenomics {
    background-color: var(--background);
    position: relative;
}

.tokenomics-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.tokenomics-chart {
    flex: 1;
    min-width: 300px;
}

.chart-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.tokenomics-info {
    flex: 1;
    min-width: 300px;
}

.token-supply {
    margin-bottom: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.token-supply h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.token-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.token-distribution {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.distribution-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.distribution-item:last-child {
    margin-bottom: 0;
}

.distribution-color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    margin-right: 15px;
}

.distribution-color.liquidity {
    background: #5F2EEA;
}

.distribution-color.presale {
    background: #2EC5CE;
}

.distribution-color.development {
    background: #FFD166;
}

.distribution-label {
    flex: 1;
    font-weight: 500;
}

.distribution-value {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Rewards Section */
.rewards {
    background-color: var(--background-light);
    position: relative;
}

.rewards-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.reward-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reward-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.reward-card.sol {
    border-top: 5px solid #00FFA3;
}

.reward-card.btc {
    border-top: 5px solid #F7931A;
}

.reward-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.reward-icon img {
    width: 100%;
    height: auto;
}

.reward-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.reward-card p {
    color: var(--text-light);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta .primary-btn {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--background);
    padding: 80px 0 30px;
    position: relative;
    box-shadow: 0 0 60px 0 #5F2EEA33 inset;
    animation: footer-glow 4s infinite alternate;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 60px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .tokenomics-content {
        justify-content: center;
    }

    .footer-content {
        justify-content: center;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .nav-links, .social-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-active .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 70%;
        background: var(--background);
        padding: 100px 40px;
        z-index: 100;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .cta h2 {
        font-size: 2rem;
    }

    .hero-animated-title {
        font-size: 1.3rem;
    }
    .hero-animated-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    .container {
        padding: 0 8px;
    }
    .hero {
        padding-top: 170px;
    }
    .navbar {
        gap: 6px;
    }
    .logo img {
        height: 32px;
    }
    .logo span {
        font-size: 1.1rem;
    }
    .connect-wallet-btn {
        padding: 7px 10px;
        font-size: 0.95rem;
        margin-left: 6px;
        min-width: 90px;
    }
    .hero-text h1 {
        font-size: 1.2rem;
        word-break: break-word;
    }
    .hero-text h2 {
        font-size: 0.95rem;
        word-break: break-word;
    }
    .hero-animated-desc {
        font-size: 0.85rem;
        word-break: break-word;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .hero-buttons .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 9px 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 100%;
    }
    .feature-card {
        padding: 18px 10px;
        font-size: 0.98rem;
    }
    .rewards-content {
        flex-direction: column;
        gap: 18px;
    }
    .reward-card {
        width: 100%;
        max-width: none;
        padding: 18px 10px;
    }
    .rewards-counter-section {
        margin: 30px 0 20px 0;
        padding: 0 2px;
    }
    .rewards-counter-title {
        font-size: 1.3rem;
    }
    .rewards-counter-values {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .counter-box {
        min-width: unset;
        padding: 18px 10px;
        font-size: 1rem;
    }
    .rewards-simulator-form {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .rewards-simulator-form input[type="number"] {
        width: 100%;
        font-size: 1rem;
    }
    .rewards-simulator-form button {
        width: 100%;
        font-size: 1rem;
    }
    .chart-iframe-container {
        max-width: 100%;
        min-width: 0;
        border-radius: 12px;
    }
    .footer-content {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    .footer-logo img {
        width: 60px;
    }
    .footer-logo h3 {
        font-size: 1.1rem;
    }
}

/* Shine Effect for Diamond Logo */
.logo-shine-wrapper {
    position: relative;
    display: inline-block;
    animation: diamond-pulse 2.5s infinite;
}
.logo-shine {
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 32px #5F2EEA88) drop-shadow(0 0 16px #2EC5CE66);
    animation: diamond-glow 3s infinite alternate;
}
.shine-effect {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%) skewX(-20deg);
    animation: shine-move 2.5s infinite;
}
@keyframes shine-move {
    0% {
        transform: translateX(-100%) skewX(-20deg);
        opacity: 0.2;
    }
    60% {
        opacity: 0.7;
    }
    80% {
        opacity: 0.2;
    }
    100% {
        transform: translateX(120%) skewX(-20deg);
        opacity: 0;
    }
}
@keyframes diamond-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04) rotate(-1deg); }
    100% { transform: scale(1); }
}
@keyframes diamond-glow {
    0% { filter: drop-shadow(0 0 32px #5F2EEA88) drop-shadow(0 0 16px #2EC5CE66); }
    100% { filter: drop-shadow(0 0 64px #FFD16699) drop-shadow(0 0 32px #2EC5CE99); }
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 10px;
    background: var(--background-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 8px;
    box-shadow: 0 0 8px #5F2EEA55;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Rewards Counter */
.rewards-counter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 60px 0 40px 0;
    animation: fadeInUp 1.2s cubic-bezier(.39,.575,.565,1) both;
}
.rewards-counter-title {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.rewards-counter-values {
    display: flex;
    gap: 40px;
}
.counter-box {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 8px 32px 0 rgba(95,46,234,0.10);
    text-align: center;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    animation: pulseCounter 2.5s infinite;
}
.counter-label {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 600;
}
.counter-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    animation: counterGlow 2s infinite alternate;
}
@keyframes counterGlow {
    0% { text-shadow: 0 0 8px #5F2EEA55; }
    100% { text-shadow: 0 0 24px #FFD16699; }
}
@keyframes pulseCounter {
    0% { box-shadow: 0 8px 32px 0 rgba(95,46,234,0.10); }
    50% { box-shadow: 0 8px 48px 0 rgba(46,197,206,0.18); }
    100% { box-shadow: 0 8px 32px 0 rgba(95,46,234,0.10); }
}

/* Gráfico Container */
.chart-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 60px 0 40px 0;
    animation: fadeInUp 1.2s cubic-bezier(.39,.575,.565,1) both;
}
.chart-title {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.chart-iframe-container {
    width: 100%;
    max-width: 700px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(46,197,206,0.18);
    border: 2px solid var(--primary);
    position: relative;
    background: var(--background-light);
    animation: chartGlow 3s infinite alternate;
}
@keyframes chartGlow {
    0% { box-shadow: 0 8px 32px 0 rgba(46,197,206,0.18); }
    100% { box-shadow: 0 8px 48px 0 rgba(95,46,234,0.18); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Rewards Simulator Form */
.rewards-simulator-form {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1.2s cubic-bezier(.39,.575,.565,1) both;
}
.rewards-simulator-form label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}
.rewards-simulator-form input[type="number"] {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--primary);
    background: var(--background-light);
    color: var(--text);
    font-size: 1.1rem;
    width: 160px;
    outline: none;
    transition: border 0.2s;
}
.rewards-simulator-form input[type="number"]:focus {
    border: 1.5px solid var(--secondary);
}
.rewards-simulator-form button {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px #5F2EEA33;
    transition: background 0.2s, transform 0.2s;
    outline: none;
    position: relative;
    overflow: hidden;
}
.rewards-simulator-form button:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px) scale(1.04);
}

/* Sparkle Animation for Simulator */
.simulator-anim-area {
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.sim-sparkle {
    position: absolute;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #FFD166 0%, #fff 60%, transparent 100%);
    border-radius: 50%;
    opacity: 0.85;
    animation: sparkle-float 1.2s cubic-bezier(.39,.575,.565,1) forwards;
    pointer-events: none;
    filter: blur(0.5px) drop-shadow(0 0 8px #FFD16699);
}
@keyframes sparkle-float {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(0);
    }
    40% {
        opacity: 1;
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        opacity: 0;
        transform: scale(0.7) translateY(-40px) rotate(30deg);
    }
}

/* Bright particles around the main logo */
.logo-particles-area {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 3;
}
.logo-particle {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD166 0%, #fff 60%, transparent 100%);
    opacity: 0.7;
    animation: logo-particle-float 3.5s infinite linear;
    filter: blur(0.5px) drop-shadow(0 0 8px #FFD16699);
}
@keyframes logo-particle-float {
    0% { transform: scale(0.7) translateY(0); opacity: 0.7; }
    50% { transform: scale(1.1) translateY(-18px); opacity: 1; }
    100% { transform: scale(0.7) translateY(0); opacity: 0.7; }
}

/* Bounce and rotation animation on logo hover */
.logo-shine-wrapper:hover .logo-shine {
    animation: diamond-bounce 0.7s cubic-bezier(.39,.575,.565,1) both, diamond-glow 3s infinite alternate;
    transform: rotate(-8deg) scale(1.07);
}
@keyframes diamond-bounce {
    0% { transform: scale(1) rotate(0); }
    30% { transform: scale(1.12) rotate(-8deg); }
    60% { transform: scale(0.98) rotate(4deg); }
    100% { transform: scale(1.07) rotate(-8deg); }
}

/* Animated sparkles on social icons */
.social-btn {
    position: relative;
    overflow: visible;
}
.social-btn .social-sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD166 0%, #fff 60%, transparent 100%);
    opacity: 0.7;
    pointer-events: none;
    animation: social-sparkle-float 1.8s infinite linear;
    z-index: 2;
}
@keyframes social-sparkle-float {
    0% { transform: scale(0.7) translateY(0); opacity: 0.7; }
    50% { transform: scale(1.1) translateY(-8px); opacity: 1; }
    100% { transform: scale(0.7) translateY(0); opacity: 0.7; }
}

/* Pulsating glow in the footer */
footer {
    position: relative;
    box-shadow: 0 0 60px 0 #5F2EEA33 inset;
    animation: footer-glow 4s infinite alternate;
}
@keyframes footer-glow {
    0% { box-shadow: 0 0 60px 0 #5F2EEA33 inset; }
    100% { box-shadow: 0 0 120px 0 #FFD16644 inset; }
}

/* Hero Text Animations - Ajustado para novas classes */
.hero-animated-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(270deg, #5F2EEA, #2EC5CE, #FFD166, #5F2EEA);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGradientMove 6s ease-in-out infinite, heroTitleFadeIn 1.2s cubic-bezier(.39,.575,.565,1) both;
}
@keyframes heroGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes heroTitleFadeIn {
    0% { opacity: 0; transform: translateY(-40px) scale(0.95); }
    80% { opacity: 1; transform: translateY(8px) scale(1.04); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-animated-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary);
    overflow: visible;
    white-space: nowrap;
    min-height: 1.5em;
    display: flex;
    align-items: center;
    border: none;
    animation: heroSubtitleBounce 1.3s 0.2s cubic-bezier(.39,.575,.565,1) both;
}
.hero-animated-subtitle #typed-subtitle {
    display: inline-block;
    vertical-align: middle;
    font-size: inherit;
    font-family: inherit;
    letter-spacing: 0.5px;
}
.hero-animated-subtitle .typed-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--secondary);
    margin-left: 2px;
    animation: blink-cursor 0.8s steps(1) infinite;
    vertical-align: middle;
}
@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.hero-animated-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0;
    animation: heroDescFadeIn 1.2s 0.7s cubic-bezier(.39,.575,.565,1) both;
}
@keyframes heroDescFadeIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    80% { opacity: 0.7; transform: translateY(-8px) scale(1.04); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Auth Modal Styles */
.auth-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(10, 15, 41, 0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.auth-modal.hidden {
    display: none;
}
.auth-modal-content {
    background: var(--background-light);
    border-radius: 18px;
    box-shadow: 0 8px 40px 0 #5F2EEA33;
    padding: 36px 32px 28px 32px;
    min-width: 340px;
    max-width: 95vw;
    width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.7s cubic-bezier(.39,.575,.565,1) both;
}
.auth-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
}
.auth-modal-close:hover {
    color: var(--accent);
}
.auth-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    text-align: center;
}
.auth-modal-desc {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 18px;
    text-align: center;
}
.auth-modal-tabs {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 18px;
    gap: 18px;
}
.auth-tab {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 8px 18px;
    border-bottom: 2.5px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border 0.2s;
}
.auth-tab.active {
    color: var(--primary);
    border-bottom: 2.5px solid var(--primary);
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
    width: 100%;
    margin-bottom: 0;
    animation: fadeInUp 0.7s cubic-bezier(.39,.575,.565,1) both;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--primary);
    background: var(--background);
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
}
.auth-form input:focus {
    border: 1.5px solid var(--secondary);
}
.auth-form-info {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 2px;
}
.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    color: var(--text-light);
    margin-bottom: 2px;
}
.auth-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 4px 16px #5F2EEA33;
    transition: background 0.2s, transform 0.2s;
}
.auth-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px) scale(1.04);
}
.auth-forgot {
    color: var(--secondary);
    font-size: 0.95rem;
    text-align: right;
    margin-bottom: 2px;
    text-decoration: underline;
    cursor: pointer;
}
.auth-success {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 18px;
    text-align: center;
    animation: fadeInUp 0.7s cubic-bezier(.39,.575,.565,1) both;
}
.open-auth-modal {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 1000;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px #5F2EEA33;
    transition: background 0.2s, transform 0.2s;
}
.open-auth-modal:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
    .auth-modal-content {
        min-width: 90vw;
        width: 98vw;
        padding: 18px 6vw 18px 6vw;
    }
    .open-auth-modal {
        top: 10px;
        right: 10px;
        font-size: 0.95rem;
        padding: 7px 12px;
    }
}
.auth-form.hidden {
    display: none !important;
}

.user-logged {
    background: var(--gradient-secondary);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 7px 18px;
    margin-left: 18px;
    font-size: 1rem;
    box-shadow: 0 2px 8px #2EC5CE33;
    display: flex;
    align-items: center;
    animation: fadeInUp 0.7s cubic-bezier(.39,.575,.565,1) both;
}
.user-logged.hidden {
    display: none;
}

.connect-wallet-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px #5F2EEA33;
    transition: background 0.2s, transform 0.2s;
    margin-left: 18px;
    outline: none;
}
.connect-wallet-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px) scale(1.04);
}
.wallet-info {
    background: var(--gradient-secondary);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 7px 18px;
    margin-left: 18px;
    font-size: 1rem;
    box-shadow: 0 2px 8px #2EC5CE33;
    display: flex;
    align-items: center;
    animation: fadeInUp 0.7s cubic-bezier(.39,.575,.565,1) both;
}
.wallet-info.hidden {
    display: none;
}

/* Efeito de chuva de moedas (Bitcoin e Solana) */
.coin-rain {
    position: fixed;
    top: -60px;
    z-index: 999;
    pointer-events: none;
    width: 36px;
    height: 36px;
    opacity: 0.7;
    animation: coinRainFall 2.2s linear forwards;
    filter: drop-shadow(0 0 8px #0008);
    transition: opacity 0.3s;
}
@media (max-width: 576px) {
    .coin-rain {
        width: 24px;
        height: 24px;
    }
}
@keyframes coinRainFall {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    80% {
        opacity: 0.85;
    }
    100% {
        transform: translateY(110vh) scale(0.95) rotate(360deg);
        opacity: 0.1;
    }
} 