.navbar .btn-dark {
  margin-left: auto;
  border: 1px solid #ccbfbf;
  background: black;
  color: aliceblue;

}
.navbar .container-fluid{
    max-width: 1200px;
    margin: 0 auto;
}
.navbar .btn-danger{
    margin-left: 12px;
    color: aliceblue;
}
.navbar-brand{
    color: red;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif}

.hero-big{
    height: 100vh;
    background-image: url(backgroundimg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;

 }
.overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.navbar{
    position: relative;
    z-index: 2;
    background: transparent;
}
.content{
   position: relative;
   z-index: 2;
   color: #ccbfbf;
    text-align: center;
    margin-top: 140px;
    padding: 0 20px;
}   
.content h1{
    font-size: 3rem;
    font-weight: 700;
}
.content h3{
    margin-top: 20px;
    font-weight: 400;
}
.content input {
  padding: 14px;
  width: 280px;
  max-width: 90%;
  margin-top: 20px;
  border: none;
  border-radius: 4px;
}

.content button {
  margin-left: 8px;
  padding: 14px 24px;
  background: #e50914;
  border: none;
  color: azure;
  cursor: pointer;
  
}
.section-divider {
  height: 6px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #b91d73,
    #f62a54,
    #0f1b4c,
    #b91d73
  );
  border-radius: 3px;
  box-shadow: 0 0 30px rgba(246, 42, 84, 0.8);
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0b0b0b;
}

/* TRENDING */
.trending {
  overflow-x: auto;
  scrollbar-width: none;
}

.trending::-webkit-scrollbar {
  display: none;
}

.trend-card {
  position: relative;
  min-width: 180px;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
}

.trend-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BIG NUMBERS */
.rank {
  position: absolute;
  bottom: 0;
  left: -25px;
  font-size: 140px;
  font-weight: 800;
  color: black;
  -webkit-text-stroke: 3px white;
  line-height: 1;
}

/* REASON CARDS */
.reason-card {
  background: radial-gradient(circle at top left, #1b2b6b, #0b0b0b);
  border-radius: 20px;
  min-height: 160px;
  position: relative;
}

.reason-card p {
  color: #b5b5b5;
}

.reason-card .icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 36px;
  color: #e50914;
}

.hero-big >*:not(.overlay){
    position: relative;
    z-index: 2;
}
footer {
  background: #000;
}

footer a,
footer p {
  color: #b3b3b3 !important;
  font-size: 14px;
}

footer a:hover {
  text-decoration: underline;
}

