:root {
    --primary-color: #C1FF33;       /* Primary color */
    --dark-bg: #000000;            /* Dark background */
    --white-text: #FFFFFF;         /* White text */
    --light-green-bg: rgba(193, 255, 51, 0.1); /* Light green background */
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  body {
    background-color: var(--dark-bg);
    color: var(--white-text);
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header styles */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    position: relative;
    z-index: 10;
  }
  
  .logo {
    height: 40px;
  }
  
  .nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .nav-menu a {
    color: var(--white-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-menu a:hover {
    color: var(--primary-color);
  }
  
  /* Language dropdown */
  .idioma-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .idioma-dropdown span {
    margin-right: 5px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--dark-bg);
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .dropdown-content a {
    color: var(--white-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: var(--light-green-bg);
  }
  
  .idioma-dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 2px;
    width: 100%;
    background-color: var(--white-text);
    transition: all 0.3s;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 80px;
    position: relative;
    overflow: visible;
  }
  
  .hero-content {
    width: 50%;
    padding-right: 20px;
  }
  
  .hero-title {
    font-size: 65px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .hero-title-line {
    display: block;
    margin-bottom: 10px;
  }
  
  .hero-description {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 500;
  }
  
  .btn {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(193, 255, 51, 0.2);
  }
  
  .hero-image {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Crypto icons */
  .crypto-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .crypto-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 3;
    transition: transform 3s ease-in-out, filter 0.3s ease-in-out;
  }
  
  /* Icon positions */
  .icon-btc   { top: 10%; right: -5%; }
  .icon-eth   { top: 35%; right: -6%; }
  .icon-op    { top: 60%; right: -5%; }
  .icon-avax  { top: 10%; left: -5%; }
  .icon-sol   { bottom: 30%; right: -5%; }
  .icon-arb   { top: 45%; left: -6%; }
  .icon-bnb   { bottom: 20%; left: -5%; }
  .icon-trx   { bottom: 8%;  right: -5%; }
  .icon-atom  { top: 75%; right: -5%; }
  .icon-ton   { top: 25%; left: -5%; }
  
  .crypto-icon:hover {
    filter: drop-shadow(0 0 8px var(--primary-color));
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
  }
  
  /* Presale Section */
  .presale {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--primary-color);
  }
  
  /* Solutions Section */
  .solutions {
    padding: 60px 0;
    text-align: center;
  }
  
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  
  .solution-card {
    background-color: var(--light-green-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .solution-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .solution-description {
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .more-info {
    align-self: flex-start;
    padding: 8px 20px;
    font-size: 14px;
  }
  
  /* Tokenomics Section */
  .tokenomics {
    padding: 60px 0;
    text-align: center;
    background-color: var(--light-green-bg);
  }
  
  .tokenomics-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .tokenomics-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .tokenomics-percent {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 60px;
  }
  
  .tokenomics-description {
    font-size: 16px;
  }
  
  /* Roadmap Section */
  .roadmap {
    padding: 60px 0;
    text-align: center;
  }
  
  .roadmap-phases {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 40px auto;
  }
  
  .phase {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 15px;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .phase-indicator {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .phase-title {
    font-weight: 600;
    color: #000;
  }
  
  .phase-details {
    display: none;
    padding: 10px 0 0 27px;
    color: #333;
    font-size: 14px;
    text-align: left;
  }
  
  .phase.active .phase-details {
    display: block;
  }
  
  /* CTA Section */
  .cta {
    background-color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
  }
  
  .cta h2 {
    color: var(--dark-bg);
    font-size: 24px;
    font-weight: 700;
  }
  
  /* Team Section */
  .team {
    padding: 60px 0;
    text-align: center;
  }
  
  .team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .team-member {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #FFC062;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .member-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
  }
  
  .member-role {
    font-size: 14px;
    text-align: center;
  }
  
  /* Footer */
  footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    width: 24px;
    height: 24px;
  }
  
  .footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-nav a {
    color: var(--white-text);
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-logo {
    height: 40px;
    margin-bottom: 20px;
  }
  
  .footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    opacity: 0.7;
  }
  
  .footer-legal a {
    color: var(--white-text);
    text-decoration: none;
  }
  
  /* Content sections - for product pages */
  .content-section {
    padding: 60px 0;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  
  .info-content {
    text-align: left;
  }
  
  .info-image {
    text-align: center;
  }
  
  .info-image img {
    max-width: 100%;
    border-radius: 20px;
  }
  
  .feature-list {
    list-style-type: none;
    margin-top: 20px;
  }
  
  .feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
  }
  
  .feature-list li::before {
    content: "✅";
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .cta-section {
    background-color: var(--light-green-bg);
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
    border-radius: 20px;
  }
  
  .cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .cta-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .architecture-diagram {
    background-color: var(--light-green-bg);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
  }
  
  .architecture-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .feature-card {
    background-color: var(--light-green-bg);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
  }
  
  .feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .feature-description {
    font-size: 16px;
  }
  
  .process-flow {
    max-width: 800px;
    margin: 30px auto;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
  }
  
  .process-flow h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  /* Steps Section */
  .steps-container {
    max-width: 800px;
    margin: 40px auto;
  }
  
  .step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
  }
  
  .step-number {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .step-content {
    flex-grow: 1;
  }
  
  .step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .step-description {
    font-size: 16px;
  }
  
  .card-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    color: var(--white-text);
  }
  
  .comparison-table th {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .comparison-table tr:last-child td {
    border-bottom: none;
  }
  
  .comparison-table .highlight {
    background-color: var(--light-green-bg);
  }
  
  .use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  
  .use-case-card {
    background-color: var(--light-green-bg);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
  }
  
  .use-case-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .use-case-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .use-case-description {
    font-size: 14px;
  }
  
  /* Security section */
  .security-diagram {
    background-color: var(--light-green-bg);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
  }
  
  .security-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
  }
  
  /* Descargar wallet page */
  .coming-soon {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
  }
  
  .coming-soon h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s ease-in-out infinite;
  }
  
  @keyframes shine {
    0% { background-position: -100%; }
    50% { background-position: 200%; }
    100% { background-position: -100%; }
  }
  
  .coming-soon p {
    font-size: 24px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }
  
  .notification-form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  
  .notification-input {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-text);
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
  }
  
  .notification-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px var(--primary-color);
  }
  
  .notification-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 255, 51, 0.3);
  }
  
  .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: float 20s infinite;
    opacity: 0.4;
  }
  
  @keyframes float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-800px) translateX(100px); opacity: 0; }
  }
  
  .construction-animation {
    margin: 40px auto;
    position: relative;
    width: 200px;
    height: 200px;
  }
  
  .circle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .circle {
    width: 200px;
    height: 200px;
    border: 4px solid rgba(193, 255, 51, 0.3);
    border-radius: 50%;
    position: absolute;
  }
  
  .pulse {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(193, 255, 51, 0.1);
    animation: pulse 2s ease-out infinite;
    position: absolute;
  }
  
  @keyframes pulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
  }
  
  .gear-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  
  .gear {
    width: 70px;
    height: 70px;
    animation: rotate 10s linear infinite;
    filter: drop-shadow(0 0 8px rgba(193, 255, 51, 0.5));
  }
  
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .feature-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
  }
  
  .feature-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
  }
  
  .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light-green-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
  }
  
  .icon-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(193, 255, 51, 0.3) 50%, transparent 60%);
    top: 0;
    left: -100%;
    animation: shine-effect 3s infinite;
  }
  
  @keyframes shine-effect {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
  }
  
  .icon-name {
    font-size: 14px;
    font-weight: 600;
  }
  
  .code-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  
  .code-lines {
    position: absolute;
    font-family: monospace;
    font-size: 14px;
    color: var(--primary-color);
    opacity: 0.7;
    text-align: left;
    animation: fadeInOut 8s infinite;
  }
  
  @keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 0.7; }
    80% { opacity: 0.7; }
    100% { opacity: 0; }
  }
  
  /* Media Queries */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 50px;
    }
  
    .solutions-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .tokenomics-grid {
      grid-template-columns: 1fr;
    }
    
    .feature-grid {
      grid-template-columns: 1fr;
    }
    
    .info-grid {
      grid-template-columns: 1fr;
    }
    
    .info-image {
      order: 1;
    }
    
    .info-content {
      order: 2;
    }
    
    .use-case-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .crypto-icon {
      width: 30px;
      height: 30px;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      display: none;
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: var(--dark-bg);
      flex-direction: column;
      padding: 20px;
      z-index: 100;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .hero {
      flex-direction: column;
      padding: 20px 0 60px;
    }
  
    .hero-content {
      width: 100%;
      padding-right: 0;
      margin-bottom: 40px;
      text-align: center;
    }
  
    .hero-title {
      font-size: 40px;
    }
  
    .hero-image {
      width: 100%;
    }
  
    .solutions-grid {
      grid-template-columns: 1fr;
    }
  
    .team-grid {
      gap: 20px;
    }
  
    .team-member {
      width: 150px;
    }
    
    .hero-title {
      font-size: 36px;
    }
    
    .section-title {
      font-size: 28px;
    }
    
    .cta-title {
      font-size: 28px;
    }
    
    .feature-card {
      padding: 20px;
    }
    
    .comparison-table {
      font-size: 14px;
    }
    
    .comparison-table th, 
    .comparison-table td {
      padding: 10px;
    }
    
    .use-case-grid {
      grid-template-columns: 1fr;
    }
    
    .coming-soon h1 {
      font-size: 36px;
    }
    
    .coming-soon p {
      font-size: 18px;
    }
    
    .notification-btn {
      position: static;
      width: 100%;
      margin-top: 10px;
      padding: 12px;
    }
    
    .feature-icons {
      gap: 20px;
    }
    
    .icon-circle {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 36px;
    }
  
    .hero-description {
      font-size: 18px;
    }
  
    .section-title {
      font-size: 28px;
    }
  
    .footer-nav {
      flex-direction: column;
      gap: 15px;
    }
  
    .footer-legal {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }
  
  /* Animation for crypto icons */
  @keyframes float {
    0%   { transform: scale(1) translate(0, 0) rotate(0deg); }
    25%  { transform: scale(1.1) translate(15px, -10px) rotate(5deg); }
    50%  { transform: scale(0.95) translate(-10px, 15px) rotate(-5deg); }
    75%  { transform: scale(1.05) translate(10px, -15px) rotate(3deg); }
    100% { transform: scale(1) translate(0, 0) rotate(0deg); }
  }