body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(160deg, #1c1f2b, #2d3349);
    margin: 0;
    padding: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  }
  
  .icon {
    width: 60px;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2rem;
    color: #00e0ff;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #ccc;
  }
  
  button {
    background: #00e0ff;
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 224, 255, 0.3);
    margin-top: 1rem;
  }
  
  button:hover {
    background: #00c6e0;
  }
  
  .status-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .card {
    background-color: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  .card h3 {
    margin: 0;
    color: #00e0ff;
    font-size: 1rem;
  }
  .card p {
    font-size: 1.2rem;
    margin: 0.3rem 0 0;
  }
  
  .progress-bar {
    width: 100%;
    height: 18px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 9px;
    overflow: hidden;
    margin-top: 1rem;
  }
  
  .progress {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #00e0ff, #0077ff);
    box-shadow: 0 0 10px #00e0ff;
    transition: width 0.3s;
  }
  
  #result {
    margin-top: 2rem;
  }
  
  #result h2 {
    color: #ff5c5c;
    margin-bottom: 1rem;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  .blink {
    animation: blink 1s infinite;
  }