* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #0d0d0d;
  color: #eee;
  min-height: 100vh;
  overflow-x: hidden;
}

.overlay {
  background: radial-gradient(circle, rgba(255,0,0,0.1) 0%, transparent 80%);
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
  pointer-events: none;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13,13,13,0.95);
  padding: 1rem 2rem;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background: #ff3333;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.nav-links {
  display: none;
  flex-direction: column;
  background: #111;
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
}

.nav-links.active {
  display: flex;
}

.nav-links li {
  list-style: none;
  border-bottom: 1px solid #222;
}

.nav-links a {
  text-decoration: none;
  color: #eee;
  padding: 1rem;
  display: block;
  transition: 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: #ff3333;
  color: #0d0d0d;
}

header {
  padding: 6rem 2rem 2rem;
  text-align: center;
}

.logo {
  width: 150px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  margin-bottom: 1rem;
}

.small-logo {
  width: 120px !important;
}

h1 {
  font-size: 2.8rem;
  color: #ff3333;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.tagline {
  font-size: 1rem;
  margin: 0.5rem 0 2rem;
  color: #ccc;
}

.contact-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 2px solid #ff3333;
  color: #ff3333;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #ff3333;
  color: #0d0d0d;
}

.page, .submit-page {
  padding: 6rem 2rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.artist-page .coming-soon {
  text-align: center;
  color: #fff;
}

.artist-page .coming-soon h1 {
  font-size: 3rem;
  margin-top: 1rem;
  text-shadow: 0 0 10px #ff3333;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.demo-form input,
.demo-form textarea {
  padding: 1rem;
  border: 1px solid #333;
  background: #111;
  color: #eee;
  border-radius: 10px;
  width: 100%;
}

.demo-form button {
  padding: 0.75rem;
  border: none;
  background: #ff3333;
  color: #0d0d0d;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.demo-form button:hover {
  background: #e60000;
}

footer {
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
  background: #111;
  text-align: center;
}

.about-container {
  padding: 120px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.about-container h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ff3c3c;
}

.about-container p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-clean {
  background-color: #111;
  color: #999;
  text-align: center;
  padding: 30px 10px;
  font-size: 14px;
  border-top: 1px solid #222;
}

