*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background-color: #000;
}

option{
  background: white;
  color:black ;
}

#bg_img{
  background:
    radial-gradient(
      circle,
      rgba(0,0,0,.45),
      black
    ),
    url("bg.jpg");
  background-size:cover;
  background-position:center;
  min-height:100vh;
  padding:20px;
  width: 100%;
}

.top-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:auto;
  width: 100%;
}

.netflix_logo{
  width:clamp(100px, 15vw, 150px);
}

/* Right Section containing Language Dropdown and Sign In Button */
.right-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang_box{
  position: relative;
  display:flex;
  align-items:center;
}

/* Icon added inside the select box via background property */
#lang{
  width:130px;
  height:36px;
  background: rgba(0, 0, 0, 0.6) url('translate_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.png') no-repeat 10px center;
  background-size: 18px;
  color:white;
  border:1px solid rgba(255, 255, 255, 0.7);
  border-radius:4px;
  padding-left:35px; /* Added padding to prevent text overlapping the icon */
  font-size: 14px;
  cursor: pointer;
}

option{
  color:black;
}

/* Responsive Sign In Button Styling */
#sign_In{
  border: none;
  border-radius: 4px;
  width: 85px;
  height: 36px;
  background: #e50914;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#sign_In:hover {
  background: #c70000;
}

.text_bg{
  color:white;
  text-align:center;
  max-width:900px;
  margin:auto;
  padding-top:150px;
}

h1{
  font-size: clamp(32px, 5vw, 64px);
  font-family:"Pliant", sans-serif;
  font-weight: 900;
}

h2{
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
}

h5{
  margin-top:20px;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 400;
}

p{
  margin-top:30px;
  font-size: clamp(16px, 2vw, 20px);
}

form{
  margin-top:25px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  width: 100%;
}

#email_inp{
  width:450px;
  max-width:100%;
  height:60px;
  padding:20px;
  background: rgba(0,0,0,.5);
  border:1px solid rgba(255,255,255,.3);
  border-radius:4px;
  color:white;
  font-size:16px;
}

#get_start{
  width:210px;
  height:60px;
  background:#e50914;
  border:none;
  color:white;
  font-size:22px;
  font-weight: 500;
  border-radius:4px;
  cursor:pointer;
  transition: background 0.2s ease;
}

#get_start:hover{
  background:#c70000;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */

/* Tablets & Mobile Devices */
@media(max-width:768px){
  .text_bg{
    padding-top:100px;
  }

  form{
    flex-direction:column;
    align-items:center;
    gap: 15px;
  }

  #email_inp {
    width: 100%;
    max-width: 500px;
  }

  #get_start{
    width:180px;
    height: 50px;
    font-size: 18px;
  }
}

/* Small Phones */
@media(max-width:480px){
  #bg_img {
    padding: 15px;
  }

  .netflix_logo{
    width: 90px;
  }

  #lang{
    width:100px;
    padding-left: 30px;
    background-size: 14px;
    background-position: 8px center;
    font-size: 13px;
  }

  #sign_In {
    width: 70px;
    height: 32px;
    font-size: 13px;
  }

  .right-nav {
    gap: 8px;
  }

  h1, h2{
    line-height: 1.2;
  }
}