body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
/*------------------header---------------------------------*/
header {
  background-color: rgba(0, 0, 0, 0.185);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 9px;
}

header img {
  width: 120px;
}
header ul {
  margin-top: 50px;
  display: flex;
  gap: 80px;
  list-style: none;
  font-size: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: 150px;
}
/* -----------------ul anmtion --------------------*/
nav a {
  text-decoration: none;
  color: white;
  transition: 0.6s;
  display: inline-block;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: rgba(255, 115, 0, 0.8);
  text-shadow: 0 0 10px rgba(255, 115, 0, 0.8);
  transition: 0.6s;
}

nav a:hover::after {
  transition: 0.6s;
  width: 100%;
  left: 0;
}

nav a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 115, 0, 0.8);
}
/*-------------------------------------------------------------------*/

.Welcomebox {
  background: rgba(120, 70, 0, 0.28);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 200, 100, 0.2);
  color: white;
  border-radius: 16px;
  padding: 40px 36px;
  margin: 10% auto;
  width: 500px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.Welcomebox h1 {
  padding: 10px;
  margin-top: 0;
  color: #ffe8b0;
  text-shadow: 0 0 12px rgba(255, 160, 0, 0.4);
  font-size: 28px;
}

.Welcomebox p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.Welcomebox a {
  text-decoration: none;
  color: white;
}

#Start {
  display: inline-block;
  background: rgba(210, 130, 0, 0.8);
  padding: 10px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 200, 100, 0.3);
  transition: 0.3s;
  margin: 10px;
  font-size: 16px;
}

#Start:hover {
  background: rgba(255, 160, 0, 0.95);
  transform: scale(1.05);
  box-shadow: 0 0 14px rgba(255, 160, 0, 0.4);
}
