* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  z-index: 10;
}
.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  margin: 0 15px;
  color: #ddd;
}
.login-btn {
  background: #c51e1e;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  color: white;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1511379938547-c1f69419868d") center/cover;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255,120,0,.35), transparent 60%),
    rgba(0,0,0,.6);
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 3.2rem;
}
.hero p {
  margin: 15px 0 25px;
  opacity: .9;
}
.cta-main {
  background: #c51e1e;
  border: none;
  padding: 14px 34px;
  border-radius: 30px;
  color: white;
  font-size: 16px;
}

/* FEATURES STRIP */
.features-strip {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  background: rgba(20,20,20,.9);
  padding: 40px;
  text-align: center;
}
.feature span {
  font-size: 26px;
}

/* FEATURED */
.featured {
  padding: 80px 5%;
  text-align: center;
}
.band-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  margin-top: 40px;
}
.band-card {
  background: #151515;
  border-radius: 15px;
  overflow: hidden;
}
.band-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.band-info {
  padding: 15px;
}
.band-info button {
  margin-top: 10px;
  background: #c51e1e;
  border: none;
  padding: 8px 16px;
  color: white;
  border-radius: 20px;
}

/* WHY + SIGNUP */
.why-signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 5%;
  background: linear-gradient(to bottom, #0a0a0a, #111);
}
.why ul {
  list-style: none;
  margin-top: 20px;
}
.signup {
  background: #151515;
  padding: 30px;
  border-radius: 15px;
}
.signup input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}
.full {
  width: 100%;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  opacity: .7;
}
.footer-links a {
  margin: 0 10px;
}


.search-box {
    margin-top: 0px;
    gap: 10px;
    max-width: 480px;
    width: 33%;
    
    justify-content: center;
}


.search-box form {
   
    display: flex;
    gap: 10px;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    height: 35px;
}

.search-box button {
    padding: 5px 25px;
    background: #ff4d4d;
    border: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
}

.search-box button:hover {
    background: #e84343;
}




