   body {
       margin: 0;
       font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
       background: rgb(64, 63, 63);
       color: #ffffff;
       min-height: 100vh;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .welcome-container {
       width: 90%;
       max-width: 420px;
       background: rgba(0, 0, 0, 0.35);
       border-radius: 16px;
       padding: 32px 24px;
       text-align: center;
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
   }

   img {
       width: 150px;
       height: 150px;
   }

   .logo {
       font-size: 2rem;
       font-weight: 800;
       letter-spacing: 1px;
       margin-bottom: 10px;
       color: #34aaf3;
   }

   .tagline {
       font-size: 0.95rem;
       color: #d1d5db;
       margin-bottom: 28px;
   }

   .welcome-container h1 {
       font-size: 1.6rem;
       margin-bottom: 12px;
   }

   .welcome-container p {
       font-size: 0.95rem;
       line-height: 1.5;
       color: #e5e7eb;
       margin-bottom: 24px;
   }

   .actions {
       display: flex;
       flex-direction: column;
       gap: 12px;
   }

   .actions a {
       text-decoration: none;
       padding: 14px;
       border-radius: 10px;
       font-weight: 600;
       font-size: 1rem;
       transition: transform 0.15s ease, background 0.15s ease;
   }

   .btn-primary {
       background: #34aaf3;
       color: #0f172a;
   }

   .btn-secondary {
       background: rgba(255, 255, 255, 0.15);
       color: #ffffff;
   }

   .actions a:hover {
       transform: translateY(-2px);
   }

   footer {
       margin-top: 24px;
       font-size: 0.75rem;
       color: #9ca3af;
   }