:root {
    --primary-color: #0f0c29;
    --secondary-color: #302b63;
    --accent-color: #4fc3f7;
    --text-color: #e0e0e0;
    --glow: 0 0 10px var(--accent-color);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 1;
  }
  
  header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-out;
  }
  
  h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: var(--glow);
    letter-spacing: 2px;
  }
  
  h2 {
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    opacity: 0.9;
  }
  
  .countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0;
  }
  
  .countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
  }
  
  .number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    text-shadow: var(--glow);
    border: 1px solid rgba(79, 195, 247, 0.2);
    box-shadow: inset 0 0 15px rgba(79, 195, 247, 0.1);
  }
  
  .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
  }
  
  
  
  .info-section {
    max-width: 800px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .info-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(79, 195, 247, 0.1);
    backdrop-filter: blur(5px);
    animation: fadeIn 2s ease-out;
  }
  
  .info-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
  }
  
  .threat-meter {
    width: 100%;
    animation: fadeIn 2.5s ease-out;
  }
  
  .meter-label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .meter {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
  }
  
  .progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4fc3f7, #f50057);
    transition: width 1s ease-out;
  }
  
  footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.8rem;
    opacity: 0.6;
  }
  
  .social-share {
    margin-top: 1rem;
  }
  
  button {
    background: rgba(79, 195, 247, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  button:hover {
    background: rgba(79, 195, 247, 0.3);
    box-shadow: 0 0 15px var(--accent-color);
  }
  
  #particles-js {
    display: none;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media (max-width: 768px) {
    .countdown {
      gap: 1rem;
    }
    
    .time-block {
      min-width: 80px;
    }
    
    .number {
      font-size: clamp(1.5rem, 6vw, 2.5rem);
      padding: 0.3rem 0.6rem;
    }
    
    .label {
      font-size: 0.7rem;
    }
  }