body.drumze-landing {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000000;
  color: #e6e6e6;
  text-align: center;
}

.hero {
  padding: 4em 1em;
  background: #000000;
}

/* Logo (Desktop default) */
.drumze-logo {
  width: 420px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
  animation: pulse 3s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

h1 {
  font-size: 2.5em;
  margin-bottom: 0.2em;
  color: #61dafb; /* Feel free to adjust */
}

.tagline {
  font-size: 1.2em;
  margin-top: 1em;
  margin-bottom: 2em;
  color: #bbb;
}

.cta-btn {
  display: inline-block;
  padding: 0.8em 2em;
  background: #61dafb;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #33aacc;
}

.footer {
  margin-top: 4em;
  font-size: 0.9em;
  color: #777;
}