/* Background */
body {
    margin: 0;
    padding: 0;
    background: url('bg1.svg') no-repeat center center fixed;
    background-size: contain; /* Changed from cover to contain */
    background-color: #000; /* Optional: fallback background */
    background-repeat: no-repeat;
    font-family: 'Segoe UI', sans-serif;
  }
  
  
  /* Container */
  .container {
    height:100dvh;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('./bg1.svg');
    object-fit: cover;
    
  }
  
  /* Card */
  .card {
    background-color: #111;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 60%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
  }
  
  /* Logo */
  .logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border: 2px solid white;
    border-radius: 50%;
    object-fit: contain;
  }
  
  /* Text Styles */
  .card h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .subscribers {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
  }
  
  .features {
    text-align: center;
    margin: 20px 0;
    margin: 0 auto 20px auto;
    padding: 0;
    list-style: none;
    line-height: 1.6;
    max-width: 300px;
    font-size: 15px;
  }
  
  /* Call to Action */
  .cta-text {
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  /* Button */
  .join-button {
    background-color: #007bff;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .join-button:hover {
    background-color: #0056b3;
  }
  