:root {
    --primary: #00d2ff;
    --secondary: #3a7bd5;
    --accent: #ff9f43;
    --bg-dark: #0a0e17;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f5f5f7;
    --text-dim: #a1a1a6;
    --neon-blue: 0 0 20px rgba(0, 210, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animation */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
    opacity: 0.4;
    z-index: -1;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    z-index: -1;
    filter: blur(80px);
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* Components */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 210, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.token-float {
    width: 250px;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(var(--neon-blue));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Button */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.5);
}

/* ROI Calculator */
.roi-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--primary);
    margin-top: 3rem;
}

.slider-group {
    margin: 2rem 0;
}

input[type=range] {
    width: 100%;
    accent-color: var(--primary);
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box h4 { color: var(--text-dim); font-size: 0.9rem; text-transform: uppercase; }
.stat-box .value { font-size: 2.5rem; font-weight: 800; color: var(--primary); }

/* Roadmap */
.roadmap-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.phase-num {
    background: var(--primary);
    color: var(--bg-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
    .container { padding: 0 1.5rem; }
    section { padding: 60px 0; }
    .token-float { width: 180px; }
    .countdown-container { gap: 0.5rem; }
    .cd-unit { min-width: 65px; padding: 8px 5px; }
    .cd-num { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 0.95rem; }
    .cd-unit { min-width: 50px; padding: 6px 4px; }
    .cd-num { font-size: 1.3rem; }
    .roi-container { padding: 1.5rem 1rem; }
    .stat-box .value { font-size: 1.5rem; }
    .nav-top { justify-content: center !important; }
}
/* Botones Nova Army */
.nova-army-actions {
  text-align: center;
  margin: 40px 0;
  padding: 30px 20px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nova-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nova-button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.nova-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

.btn-telegram {
  background: linear-gradient(135deg, #0088cc, #005f8f);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.btn-telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
  color: white;
}

@media (min-width: 768px) {
  .nova-button-group {
    flex-direction: row;
  }
}
/* --- MEJORAS NOVA ARMY --- */

/* 1. Hero Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80; /* verde por defecto */
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

/* 2. Tokenomics */
.tokenomics-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}
.tk-content {
    flex: 1;
    min-width: 300px;
}
.tk-subtitle-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-dim);
}
.tk-chart-container {
    position: relative;
    height: 300px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.15));
}

@media (max-width: 768px) {
    .tk-content {
        min-width: 100%;
        text-align: center;
    }
    .tk-chart-container {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    .tk-item {
        font-size: 0.85rem;
    }
}
.tk-legend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.tk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 15px;
    border-radius: 8px;
    width: 100%;
}
.tk-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

/* 3. Founder Link */
.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.founder-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* 4. FAQs */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* 5. FOMO Progress Bar */
.fomo-bar-container {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    height: 40px;
    position: relative;
    overflow: hidden;
}
.fomo-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 50px;
    animation: fillBar 2s ease-out forwards;
}
.fomo-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    z-index: 2;
}

@keyframes fillBar {
    from { width: 0%; }
    to { width: 15%; }
}

/* --- Countdown Transferred from Index --- */
.countdown-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 80px;
}
.cd-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}
.cd-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 4px;
}

/* --- Button Beam Effect Transferred from Index --- */
.btn-beam {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent !important;
    border: none !important;
}
.btn-beam::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 400%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 20%,
        var(--primary) 22%,
        #fff 23%,
        var(--accent) 24%,
        transparent 26%,
        transparent 100%
    );
    animation: rotate 3s linear infinite;
    z-index: -2;
}
.btn-beam::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.9) 0%, rgba(10, 10, 10, 1) 100%);
    border-radius: inherit;
    z-index: -1;
    transition: all 0.3s ease;
}
.btn-beam:hover::after {
    background: linear-gradient(180deg, rgba(40, 40, 40, 0.9) 0%, rgba(20, 20, 20, 1) 100%);
}
.btn-beam .reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
    border-radius: inherit;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Navigation */
.nav-top {
    display: flex;
    justify-content: flex-end;
    padding-top: 2rem;
    position: relative;
    z-index: 100;
}
.lang-select {
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: white;
}
@media (max-width: 768px) {
    .nav-top {
        padding-top: 1rem;
    }
}

