@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}
body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #181c1f 0%, #232a34 100%);
  min-height: 100vh;
  color: #f3f3f3;
}

#splash {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s, transform 0.7s;
}

#splash-content {
  text-align: center;
}

#splash-title {
  font-size: 6vw;
  color: #232a34;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 4px;
  margin-bottom: 2rem;
}

#enter-btn {
  font-size: 1.5rem;
  padding: 0.75em 2em;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #38f9d7;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

#splash {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s, transform 0.7s;
}

#splash.hide {
  opacity: 0;
  transform: scale(1.1) translateY(-120px); /* Zoom out and move up */
  pointer-events: none;
}
#header {
  overflow: hidden;
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #232a34;
  padding: 32px 0 24px 0;
  text-align: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  width: 100%;
  letter-spacing: 2px;
  font-weight: bold;
  transition: box-shadow 0.3s;
}
#header-title {
  display: inline-block;
  min-width: 1em;
  line-height: 1.1;
}
#menu {
  background: #232a34;
  /* ...rest of your styles... */
  backdrop-filter: none;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  border-bottom: 1.5px solid #181c1f;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1.1rem;
  height: 48px;
  align-items: stretch;
  margin-bottom: 32px;
  
;
}

#menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 28px;
  border-radius: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

#menu a:hover, #menu a:focus {
  background: #181c1f;
  color: #43e97b;
  box-shadow: 0 2px 8px rgba(67,233,123,0.15);
}

#content {
  padding: 32px 28px;
  max-width: 800px;
  margin: 40px auto 0 auto;
  background: linear-gradient(135deg, #232a34 0%, #181c1f 100%);
  color: #f3f3f3;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border: 1.5px solid #232a34;
  transition: box-shadow 0.3s;
}

#content p {
  line-height: 1.6;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 24px;
}

#content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
#content h3 {
  font-size: 1.5rem;
  color: #f3f3f3;
  margin-bottom: 16px;
  text-align: center;
  padding-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid #232a34;
}

#content ul li {
  background: #181c1f;
  color: #43e97b;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  padding: 0;
  font-size: 1.1rem;
  display: flex;
  align-items: stretch;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

#content ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  color: #43e97b;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  background: transparent;
  transition: color 0.2s, background 0.15s;
}

#content ul li a:hover {
  color: #fff;
  background: #232a34;
}
@keyframes jitter {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0, 0); }
}
