* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #edf2f7 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #2d3748;
  }
  
  .container {
    background: #fff;
    padding: 100px 80px; /* doubled */
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
    width: 90%;
    max-width: 900px; /* doubled from ~450 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .logo {
    width: 400px; /* bigger logo */
    margin-bottom: 60px;
  }
  
  h1 {
    font-size: 3rem; /* larger headline */
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 800;
  }
  
  p {
    font-size: 1.5rem; /* larger text */
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 700px;
  }
  
  .status {
    display: inline-block;
    background: #f7fafc;
    border-left: 8px solid #6b46c1;
    border-radius: 12px;
    padding: 20px 40px;
    margin-top: 40px;
    color: #2d3748;
    font-weight: 700;
    font-size: 1.25rem;
  }
  
  footer {
    margin-top: 60px;
    font-size: 1rem;
    color: #a0aec0;
  }
  