@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fustat:wght@200..800&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Press+Start+2P&display=swap");

body {
  padding: 0;
  margin: 0;
  background-color: black;
  overflow-x: hidden;
}

/*Navigation Bar*/

/* Navbar container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter";
  padding: 10px 20px;
  background: linear-gradient(to right, black, rgb(8, 8, 8));
  border-bottom: 0.5px solid rgb(255, 136, 0);
  position: relative;
}

/* Logo */
.navbar img {
  height: 50px;
}

/* Centered links */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* Links and dropdowns */
.nav-links a,
.dropdown .dropbtn {
  color: #fff;
  text-decoration: none;
  font-family: INter;
  padding: 8px 12px;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: 1s ease;
}

.nav-links a:hover,
.dropdown:hover .dropbtn {
  color: rgb(255, 136, 0);
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000000;
  min-width: 150px;
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1900;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #383f4e;
}

/* Hamburger button (mobile) */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px; /* below navbar */
    left: 0;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(to right, black, rgb(8, 8, 8));
    z-index: 3;
    display: none;
    text-align: center;
    gap: 0;
  }

  .nav-links a,
  .dropdown .dropbtn {
    padding: 12px 0;
    width: 100%;
  }

  .nav-links .dropdown-content {
    position: static;
    box-shadow: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    display: flex;
  }
}

/*Hero*/

@keyframes reveal {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Launch Video*/

.home-page {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen section */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-page h1 {
  animation: reveal 1s ease forwards;
  opacity: 0;
}

.home-page button {
  animation: reveal 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.home-page p {
  animation: reveal 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}
/* Video wrapper */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow-y: hidden;
  object-fit: cover; /* keeps video covering background */
}

@media (max-width: 700px) {
  .video-wrapper video {
    margin-top: -20%;
  }
}
/* Overlay text/button */
.overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgb(255, 123, 0);
  font-family: "Montserrat", sans-serif;
  padding: 20px;
  font-weight: 700;
}

.overlay strong {
  font-weight: 600;
  color: white;
}

.overlay h1 {
  font-size: clamp(8rem, 5vw, 4rem); /* responsive */
  margin-bottom: 50px;
}

@media (max-width: 700px) {
  .overlay h1 {
    font-size: 45px;
  }
}

.overlay button {
  background-color: rgb(255, 123, 0);
  border: 1px solid rgb(187, 100, 0);
  border-radius: 5px;
  font-size: 1.5rem;
  color: rgb(255, 255, 255);
  font-weight: 800;
  padding: 15px 40px;
  font-weight: 500;
  font-family: "Inter";
  cursor: pointer;
  transition: 1s ease;
}

.overlay button:hover {
  box-shadow: 0px 0px 3px black;
  scale: 1.1;
}

.overlay p {
  font-size: 40px;
  color: white;
  margin-top: -3%;
}

@media (max-width: 700px) {
  .overlay h1 {
    margin-top: -100%;
  }
  .overlay p{
    font-size: 20px;
  }
  .overlay button {
    font-size: 10px;
  }
}

/*Fortnite Roster*/

.staff-roster {
  padding: 80px 10%;
  background: black;
  text-align: center;
}

.staff-roster h1 {
  font-size: 48px;
  margin-bottom: 50px;
  color: rgb(255, 102, 0);
  letter-spacing: 2px;
  font-family: "Inter";
}

/* Grid Layout */
.staff-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Individual Card */
.founder {
  background: #181818;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Glow Effect */
.founder:hover {
  transform: translateY(-8px);
}

/* Player Image */
.founder img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ff5e00;
}

/* Name */
.founder h1 {
  font-size: 22px;
  margin: 10px 0 5px;
  color: white;
}

/* Role */
.founder h2 {
  font-size: 14px;
  font-weight: 400;
  color: #ff5e00;
  margin-bottom: 15px;
  font-family: "Inter";
}

/* Social Icon */
.founder a {
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

.founder a:hover {
  color: rgb(255, 115, 0);
}

/*Descrip-1*/

.descrip-1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: auto;
  gap: 120px;
  flex-wrap: wrap;
}
.descrip-txt h1 {
  color: rgb(255, 94, 0);
  font-family: "Inter";
  margin-top: 10%;
}

.descrip-txt p {
  color: white;
  width: 40vw;
  line-height: 2rem;
  font-family: 'Inter';
}

.descrip-1 img {
  width: 23vw;
}

.descrip-1 i {
  color: #ffffff;
  font-size: 25px;
  width: auto;
  border: none;
  border-radius: 5px;
  background-color: #ff5e00;
  padding: 10px 10px;
  transition: 1s ease;
}

.descrip-1 i:hover {
  scale: 1.1;
  box-shadow: 0px 0px 6px #ff5e00;
}

@media (max-width: 700px) {
  .descrip-1 img {
    width: 80vw;
    margin-top: -120%;
  }
  .descrip-1 h1 {
    text-align: center;
  }
  .descrip-1 p {
    text-align: center;
    width: 80vw;
  }
}

/*About*/

.about h1 {
  color: white;
  font-family: 'Inter';
  text-align: center;
  font-size: 70px;
  margin-top: 8%;
  animation: reveal 1s ease forwards;
  opacity: 0;
}

.about p {
  color: #ff5e00;
  text-align: center;
  font-family: "Inter";
  line-height: 2rem;
  font-style: italic;
  animation: reveal 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

@media (max-width: 700px) {
  .about p {
    text-align: center;
    width: 80vw;
    margin: auto;
  }
}

/*Team*/

.about-descrip {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  justify-content: center;
  margin: auto;
  padding-top: 8%;
}

.about-descrip img {
  width: 20vw;
  height: auto;
  animation: reveal 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.about-descrip h1 {
  color: #ff5e00;
  font-family: "Inter";
  margin-top: 7%;
  animation: reveal 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.about-descrip h2 {
  color: white;
  font-family: "Inter";
  animation: reveal 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.about-descrip p {
  color: white;
  font-family: "Inter";
  line-height: 2rem;
  padding-bottom: 2%;
  animation: reveal 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.about-descrip i {
  color: #ffffff;
  font-size: 25px;
  width: auto;
  border: none;
  border-radius: 5px;
  background-color: #ff5e00;
  padding: 10px 15px;
  transition: 1s ease;
  animation: reveal 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.about-descrip i:hover {
  scale: 1.1;
  box-shadow: 0px 0px 6px #ff5e00;
}

@media (max-width: 700px) {
  .about-descrip img {
    width: 80vw;
  }
  .about-descrip h1 {
    text-align: center;
  }
  .about-descrip h2 {
    text-align: center;
    font-size: 20px;
  }
  .about-descrip p {
    text-align: center;
  }
  .about-descrip i {
    margin-left: 40%;
  }
}

.creator-roster h1 {
  text-align: center;
  color: white;
  font-family: 'Inter';
  font-size: 6rem;
}

/*Coming Soon*/

.coming-txt h1 {
  color: white;
  font-family: "Inter";
  text-align: center;
  font-size: 100px;
  margin-top: 10%;
  animation: reveal 1s ease forwards;
  opacity: 0;
}

.coming-txt strong {
  font-weight: 700;
  font-style: italic;
  color: #ff5e00;
}

@media (max-width: 700px) {
  .coming-txt h1 {
    font-size: 40px;
  }
}

/*Footer*/

.footer {
  background-color: #000000;
  color: #d1d5db;
  font-family: "Montserrat", sans-serif;
  padding: 40px 20px 20px;
  width: 99.3%;
  margin-left: -1%;
}


footer a {
  text-decoration: none;
}


.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}


.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}


.footer-column a:hover {
  color: #ff5e00;
}


.footer-column h2,
.footer-column h3 {
  color: #ff5e00;
  margin-bottom: 10px;
}


.footer-column p,
.footer-column li {
  font-size: 14px;
  color: #e2e8f0;
  margin-bottom: 8px;
  list-style: none;
}


.footer-column ul {
  padding: 0;
  margin: 0;
}


.footer-column li i {
  margin-right: 8px;
}


.social-icons {
  font-size: 20px;
  display: flex;
  gap: 15px;
  color: #ffffff;
}


.social-icons i {
  font-size: 20px;
  display: flex;
  gap: 15px;
  color: #ffffff;
  transition: 1s ease;
}


.social-icons i:hover {
  color: #ff6600;
}


.footer hr {
  border: none;
  border-top: 1px solid #1e293b;
  margin: 20px 0;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
  flex-wrap: wrap;
}
