/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f3d26 0%, #1a5d3a 50%, #0f3d26 100%);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 61, 38, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(360deg);
}

.logo-text {
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* versão mobile */
@media (max-width: 768px) {
  .logo-text {
    font-size: 0.9rem;   /* menor fonte */
    text-align: center; /* centralizar se necessário */
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 0.8rem;   /* ainda menor em telas muito pequenas */
  }
}


.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.network-btn {
      background: linear-gradient(135deg, #F0B90B, #f8d33a);
    color: black; /* contraste melhor */
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.network-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.network-indicator {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.title-main {
    display: block;
    color: white;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 500px;
}

.cta-button {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Hero Visual (desktop padrão) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-icon {
  width: 180px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-icon img {
  max-width: 100%;
  height: auto;
  display: block;
}

.token-symbol {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.symbol-ring {
  position: relative;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.symbol-core {
  position: relative;
  z-index: 2;
}

.floating-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #FFD700;
  border-radius: 50%;
  animation: particle-float 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.8s; }
.particle:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1.6s; }
.particle:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 2.4s; }
.particle:nth-child(5) { top: 50%; left: 10%; animation-delay: 3.2s; }

@keyframes particle-float {
  0%, 100% { 
    opacity: 0;
    transform: translateY(0px) scale(0.5);
  }
  50% { 
    opacity: 1;
    transform: translateY(-30px) scale(1);
  }
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .logo-icon {
    width: 120px; /* logo menor */
  }

  .floating-particles {
    width: 140px;  /* reduz área de partículas */
    height: 140px;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); } /* movimento menor */
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 90px; /* ainda menor em telas muito pequenas */
  }

  .floating-particles {
    width: 100px;
    height: 100px;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }
}


/* Info Section */
.info-section {
    padding: 6rem 0;
    position: relative;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(15, 61, 38, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.address-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.address-text {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.2rem ;
    border-radius: 8px;
    flex: 1;
}

.copy-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.network-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
}

.burn-address {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.burn-amount {
    font-size: 1rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.5rem;
}

.burn-percentage {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.security-status {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.5rem;
}

.security-detail {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.security-badge {
    font-size: 0.8rem;
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.tokenomics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.tax-card {
    background: rgba(15, 61, 38, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tax-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.sell-tax {
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.sell-tax::before {
    background: linear-gradient(90deg, #EF4444, #DC2626);
}

.sell-tax:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.2);
}

.buy-tax {
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.buy-tax::before {
    background: linear-gradient(90deg, #22C55E, #16A34A);
}

.buy-tax:hover {
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
}

.tax-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.tax-rate {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.sell-tax .tax-rate {
    color: #EF4444;
}

.buy-tax .tax-rate {
    color: #22C55E;
}

.tax-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tax-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tax-item:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .info-grid,
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .tax-card,
    .info-card {
        padding: 1.5rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.loading {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}


/* Advanced Animations and Effects */

/* Reduce motion for accessibility */
.reduce-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Keyboard navigation styles */
.keyboard-navigation *:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Advanced hover effects for cards */
.info-card {
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-card:hover::after {
    opacity: 1;
}

/* Magnetic button effect */
.cta-button {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-button:hover::after {
    opacity: 0.7;
}

/* Text reveal animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal .char {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.animate .char {
    transform: translateY(0);
}

/* Staggered animation delays */
.text-reveal .char:nth-child(1) { transition-delay: 0.1s; }
.text-reveal .char:nth-child(2) { transition-delay: 0.2s; }
.text-reveal .char:nth-child(3) { transition-delay: 0.3s; }
.text-reveal .char:nth-child(4) { transition-delay: 0.4s; }
.text-reveal .char:nth-child(5) { transition-delay: 0.5s; }

/* Morphing background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: morphBackground 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes morphBackground {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: scale(1.1) rotate(120deg);
        opacity: 0.7;
    }
    66% {
        transform: scale(0.9) rotate(240deg);
        opacity: 0.3;
    }
}

/* Advanced particle system */
.advanced-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.advanced-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #FFD700;
    border-radius: 50%;
    animation: advancedFloat 8s ease-in-out infinite;
}

@keyframes advancedFloat {
    0%, 100% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) translateX(-10px) scale(1);
    }
    100% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
}

/* Glitch effect for special elements */
.glitch {
    position: relative;
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
                 0.025em 0.04em 0 #fffc00;
    animation: glitch 725ms infinite;
}

.glitch span {
    position: absolute;
    top: 0;
    left: 0;
}

.glitch span:first-child {
    animation: glitch 500ms infinite;
    color: #00fffc;
    z-index: -1;
}

.glitch span:last-child {
    animation: glitch 375ms infinite;
    color: #fc00ff;
    z-index: -2;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
                     0.025em 0.04em 0 #fffc00;
    }
    15% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
                     0.025em 0.04em 0 #fffc00;
    }
    16% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
                     -0.05em -0.05em 0 #fffc00;
    }
    49% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
                     -0.05em -0.05em 0 #fffc00;
    }
    50% {
        text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
                     0 -0.04em 0 #fffc00;
    }
    99% {
        text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
                     0 -0.04em 0 #fffc00;
    }
    100% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
                     0.025em 0.04em 0 #fffc00;
    }
}

/* Neon glow effect */
.neon-glow {
    color: #fff;
    text-shadow:
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #FFD700,
        0 0 82px #FFD700,
        0 0 92px #FFD700,
        0 0 102px #FFD700,
        0 0 151px #FFD700;
    animation: neonFlicker 1.5s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow:
            0 0 7px #fff,
            0 0 10px #fff,
            0 0 21px #fff,
            0 0 42px #FFD700,
            0 0 82px #FFD700,
            0 0 92px #FFD700,
            0 0 102px #FFD700,
            0 0 151px #FFD700;
    }
    50% {
        text-shadow:
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px #FFD700,
            0 0 80px #FFD700,
            0 0 90px #FFD700,
            0 0 100px #FFD700,
            0 0 149px #FFD700;
    }
}

/* 3D card flip effect */
.flip-card {
    background-color: transparent;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Liquid button effect */
.liquid-button {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    transition: all 0.3s ease;
}

.liquid-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.liquid-button:hover::before {
    left: 100%;
}

.liquid-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.liquid-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Matrix rain effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.matrix-column {
    position: absolute;
    top: -100%;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #FFD700;
    animation: matrixFall 10s linear infinite;
}

@keyframes matrixFall {
    0% {
        top: -100%;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Breathing animation */
.breathing {
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Typewriter effect */
.typewriter {
    overflow: hidden;
    border-right: 0.15em solid #FFD700;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.15em;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #FFD700; }
}

/* Holographic effect */
.holographic {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35, #8B5CF6, #3B82F6, #10B981, #FFD700);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographicShift 3s ease-in-out infinite;
}

@keyframes holographicShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Magnetic field effect */
.magnetic-field {
    position: relative;
}

.magnetic-field::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: magneticPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes magneticPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}
/* 📱 Ajustes Mobile (até tablet) */
@media (max-width: 768px) {
  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;   /* empilha */
    gap: 1.5rem;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem); /* menor */
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
    margin: 0 auto;
  }

  /* Logo */
  .logo-icon {
    width: 120px;
  }

  .floating-particles {
    width: 120px;
    height: 120px;
  }

  /* Navbar simplificada */
  .nav-menu {
    display: none; /* esconde menu grande */
  }

  .network-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  /* Efeitos pesados desligados */
  .matrix-rain,
  .advanced-particles {
    display: none;
  }

  .glitch {
    font-size: 2rem;   /* menor */
    text-shadow: none; /* tira glow */
    animation: none;   /* desliga animação */
  }

  .neon-glow {
    text-shadow: 0 0 10px #FFD700;
    animation: none;
  }
}

/* 📱 Ajustes Mobile (tela muito pequena) */
@media (max-width: 480px) {
  /* Cards mais compactos */
  .info-card,
  .tax-card {
    padding: 1rem;
    border-radius: 12px;
  }

  .card-title {
    font-size: 1rem;
  }

  .tax-rate {
    font-size: 1.5rem;
  }

  /* Logo ainda menor */
  .logo-icon {
    width: 90px;
  }

  .floating-particles {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .info-grid,
  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none; /* esconde menu */
  }
  .logo-text {
    font-size: 0.9rem;
  }
}

