* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #FF4B7F, #2C2B38); /* Gradiente rosa e preto */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
  }
  
  .container {
    max-width: 500px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  p {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .support-button {
    background-color: #FF4B7F; /* Cor rosa */
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .support-button:hover {
    background-color: #2C2B38; /* Cor preta no hover */
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  }
  
  .support-button:focus {
    outline: none;
    border: 2px solid #FF4B7F;
  }
  