/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #1a1a2e, #16213e);
    font-family: 'Arial', sans-serif;
    overflow: hidden;
  }
  
  .splash {
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
    padding: 20px;
    max-width: 1000px;
  }
  
  .logo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
  }
  
  .tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
  }
  
  /* Grid Menu */
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .menu-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    backdrop-filter: blur(6px);
  }
  
  .menu-card h2 {
    margin-bottom: 10px;
  }
  
  .menu-card:hover {
    background: rgba(0, 198, 255, 0.3);
    transform: translateY(-5px);
  }
  
  /* Glow Effect */
  @keyframes glow {
    from { text-shadow: 0 0 10px #00c6ff; }
    to { text-shadow: 0 0 20px #00c6ff, 0 0 30px #00c6ff; }
  }
  
  /* Snow Effect */
  .snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("/UJUNG_IKLAN/gambar/snowmega.png");
    animation: snow 20s linear infinite;
    z-index: 1;
    opacity: 0.5;
  }
  
  @keyframes snow {
    0% { background-position: 0 0; }
    100% { background-position: 0 1000px; }
  }
  