.hero-riderid{
  position:relative;
  min-height:760px;
background:url("riderid.png?v=2") center/cover no-repeat;
  color:white;
  display:flex;
  align-items:center;
  padding:80px 7%;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.35), rgba(0,0,0,.15));
}

.hero-content{
  position:relative;
  max-width:620px;
  z-index:2;
}

.hero-content h1{
  font-size:64px;
  line-height:1.05;
  text-transform:uppercase;
  margin:0 0 24px;
  font-weight:900;
}

.hero-content h1 span{
  color:#e50914;
}

.hero-content p{
  font-size:22px;
  line-height:1.5;
  margin-bottom:34px;
}

.hero-buttons{
  display:flex;
  gap:18px;
}

.hero-buttons a{
  padding:18px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:800;
  text-transform:uppercase;
}

.btn-primary{
  background:#e50914;
  color:white;
}

.btn-secondary{
  border:1px solid white;
  color:white;
}

@media(max-width:768px){
  .hero-riderid{
    min-height:650px;
    padding:50px 24px;
    background-position:center;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-content p{
    font-size:18px;
  }

  .hero-buttons{
    flex-direction:column;
  }
}