body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: #000;
  font-family: 'Fira Code', monospace;
  color: #0f0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Matrix Canvas */
#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Landing Content */
.landing {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #0f0;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px #0f0;
  animation: fadeIn 1.2s ease;
}

.landing h1 {
  font-size: 48px;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #0f0;
}

.landing h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #ddd;
}

.landing p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #0f0;
}

.btn {
  padding: 12px 25px;
  background: #0f0;
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  animation: pulse 2s infinite;
}

.btn:hover { background: #00d000; }

/* Animations */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px #0f0; }
  50% { box-shadow: 0 0 20px #0f0; }
}
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: #000;
  font-family: 'Fira Code', monospace;
  color: #0f0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Matrix Canvas */
#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Landing Content */
.landing {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #0f0;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px #0f0;
  animation: fadeIn 1.2s ease;
}

.landing h1 {
  font-size: 48px;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #0f0;
}

.landing h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #ddd;
}

.landing p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #0f0;
}

/* Countdown */
.countdown {
  font-size: 20px;
  margin-bottom: 25px;
  color: yellow;
  text-shadow: 0 0 12px yellow;
}

/* Button */
.btn {
  padding: 12px 25px;
  background: #0f0;
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  animation: pulse 2s infinite;
}

.btn:hover { background: #00d000; }

/* Animations */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px #0f0; }
  50% { box-shadow: 0 0 20px #0f0; }
}

