* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    min-height: 100vh;
    background: linear-gradient(135deg, #07142e, #0b1f4d);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
  
  .card {
    width: 85%;
    min-height: 75vh;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 35px;
    padding: 35px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    width: 90px;
    height: 55px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
  }
  
  .links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    transition: 0.2s;
  }
  
  .links a:hover {
    color: #ffcc00;
  }
  
  .hero {
    margin-top: 90px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 80px;
    letter-spacing: 8px;
    color: #ffcc00;
  }
  
  .hero p {
    margin-top: 15px;
    font-size: 20px;
    color: #ddd;
  }
  
  .buttons {
    margin-top: 90px;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .btn {
    padding: 18px 55px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
  }
  
  .discord {
    background: #5865f2;
    color: white;
  }
  
  .about {
    border: 2px solid white;
    color: white;
  }
  
  .btn:hover {
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  
  @media (max-width: 700px) {
    .links a {
      margin-left: 10px;
      font-size: 13px;
    }
  
    .hero h1 {
      font-size: 45px;
    }
  
    .buttons {
      flex-direction: column;
      align-items: center;
    }
  }