* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #162144, #1e3c72);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }
  
  h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .card {
    background-color: #1d2333;
    border-radius: 12px;
    padding: 1rem;
    width: 140px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: white;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  }
  
  .card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border-radius: 6px;
  }
  
  .card span {
    font-weight: bold;
    font-size: 1rem;
  }
  