/* General Styles */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* Clean and modern font */
    background-color: #1e1e2e; /* Slightly dark background */
    color: #d1d1e9; /* Light text for readability */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
    padding: 20px;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #a8a8c4; /* Subtle light gray for secondary text */
  }
  
  /* Twitch Button */
  .twitch-button {
    display: inline-block;
    background-color: #9146ff; /* Twitch purple */
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .twitch-button:hover {
    background-color: #772ce8; /* Darker Twitch purple on hover */
    transform: translateY(-3px); /* Slight lift on hover */
  }
  
  .twitch-button:active {
    background-color: #5d20b6; /* Even darker Twitch purple on click */
    transform: translateY(1px); /* Slight press effect */
  }
  