@import url("https://fonts.googleapis.com/css2?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=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");
@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@200..800&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=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');

/*Navbar Animation*/
@keyframes slide-in {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}

body {
  margin: 0px;
  padding: 0px;
  background: #000000;
  font-family: "Poppins";
  overflow-x: hidden;
  animation: 3s ease forwards;
}

.navbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins";
  padding: 10px 20px;
  background-color: black;
  z-index: 1900;
  animation: slide-in 1s ease-in-out;
}

/* 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;
  padding: 8px 12px;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.9s ease;
  font-family: "Poppins";
}

.nav-links a:hover,
.dropdown:hover .dropbtn {
  color: #ff0000;
}

/* Dropdown container */
.dropdown {
  position: relative;
  z-index: 3;
}

/* 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: 3;
}

.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-color: #000000;
    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;
  }
}

/*Home Section*/

.home-section {
  position: relative;
  width: 100%;
  height: 60%;
  text-align: center;
  overflow: hidden;
  animation: fade-in 2s ease-in-out;
}

.home-section img {
  width: 100vw;
  height: 80vh;
  display: block;
}

/* Overlay text container */
.home-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.home-content h1 {
  font-size: 7rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin: 0 0 20px 0;
  color: #fff;
}

.home-content pre {
  font-family: "Poppins";
  line-height: 2.2rem;
}
.home-content button {
  padding: 12px 24px;
  margin-top: 1%;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  background-color: black;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.home-content button:hover {
  scale: 1.1;
}

/* === Responsive Styles === */
@media screen and (max-width: 768px) {
  .home-content h1 {
    font-size: 2rem;
  }

  .home-content button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  .home-content h1 {
    font-size: 1.5rem;
  }

  .home-content button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/*Second Section*/

/*Section 2*/

.second-sect {
  display: flex;
  width: 100vw;
  margin-top: 5%;
  animation: fade-in 1s ease-in-out;
}

.second-sect h1 {
  color: white;
  font-family: "Poppins";
  text-align: center;
  width: 35vw;
  margin-left: 47%;
  font-size: 50px;
}

.second-sect p {
  color: white;
  font-family: "Poppins";
  margin-left: 45%;
  width: 40vw;
  text-align: left;
  line-height: 3rem;
}

.second-sect img {
  width: 30vw;
  height: 58.5vh;
  margin-left: 5%;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .second-sect {
    display: flex;
    flex-direction: column;
  }
  .second-sect img {
    width: 100vw;
    height: auto;
    margin-left: 0;
    margin-top: 20%;
    padding: 5px 5px;
  }
  .second-sect h1 {
    font-size: 23px;
    margin-left: -1%;
    margin-top: 10%;
    width: 101vw;
    text-align: center;
  }
  .second-sect p {
    width: 95vw;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -1%;
    font-size: 10px;
    line-height: 2rem;
  }
}

/*Contact Form*/

/*Contact*/

.contact-form {
  max-width: 850px;
  margin: 0 auto;
  padding: 55px;
  background: #000000;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: "Poppins";
  animation: fade-in 2s ease-in-out;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: red;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
  font-family: "Poppins";
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  background: #181818;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  resize: vertical;
  font-family: "Poppins";
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff0000;
  outline: none;
  font-family: "Poppins";
}

.contact-form button {
  width: 103%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #ff0000;
  color: #fff;
  font-size: 1rem;
  font-family: "Poppins";
  cursor: pointer;
  transition: 1s ease;
}

.contact-form button:hover {
  background: #720000;
}

.contact {
  color: rgb(255, 0, 0);
  text-align: center;
  font-size: 70px;
  font-weight: 600;
  animation: fade-in 1s ease-in-out;
}

.contact-sub {
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 20px;
  margin-top: -2%;
  animation: fade-in 1s ease-in-out;
}

/*Careers*/

.career-head {
  margin-top: 5%;
  animation: fade-in 2s ease-in-out;
}

.career-head h1 {
  color: white;
  font-weight: 600;
  text-align: center;
  font-size: 3rem;
}

.career-head p {
  font-weight: 400;
  color: red;
  text-align: center;
  padding-bottom: 5%;
}

/*Career Cards*/

.career-card {
  background: #1f1f1f; /* dark card background */
  color: #fff; /* white text */
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 40px auto;
  font-family: "Poppins";
  animation: fade-in 2s ease-in-out;
}

.career-card h1 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
  text-align: left;
}

.career-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: left;
}

.career-card button {
  background-color: red;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
  font-family: "Poppins";
}

.career-card button:hover {
  background: #b90000;
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .career-head h1 {
    font-size: 2rem;
  }
}

/*Third Section*/

.stats-sect {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15%;
  margin: 170px 0;
  width: 100vw;
  background-color: white;
}

.stats-sect {
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat i {
  font-size: 6rem;
  color: #ff0000;
  padding-top: 20%;
  padding-bottom: 3%;
}

.stat h1 {
  font-family: "Montserrat";
  color: rgb(0, 0, 0);
  margin-top: 10px;
  padding-bottom: 20%;
}

@media screen and (max-width: 768px) {
  .stat h1 {
    font-size: 30px;
  }
}

/*Slogan Text*/

.book {
  display: flex;
  flex-direction: column; /* stack h1 + button */
  align-items: center;     /* center items horizontally */
  justify-content: center;
  width: 100%;
  gap: 20px;               /* space between h1 and button */
}

.book h1 {
  font-family: "Fustat";
  color: rgb(255, 0, 0);
  text-align: center;
  font-size: 50px;
  margin: 0;
}

.book button {
  background: transparent;
  border: 2px solid white;
  font-family: "Poppins", sans-serif;
  color: white;
  padding: 10px 25px;
  margin-top: 5%;
  font-size: 25px;
  cursor: pointer;
  transition: 1s ease;
}

.book button:hover {
  background-color: white;
  color: black;
}
/* Responsive for smaller screens */
@media (max-width: 500px) {
  .book h1 {
    font-size: 32px;
  }

  .book button {
    font-size: 16px;
    padding: 8px 20px;
  }
}

/*About Section*/

.third-sect {
  display: flex;
  width: 100vw;
  margin-top: 5%;
  animation: fade-in 2s ease-in-out;
}

.third-sect h1 {
  color: rgb(255, 0, 0);
  font-family: "Poppins";
  text-align: left;
  width: 35vw;
  margin-left: 5%;
  font-size: 50px;
}

.third-sect h3 {
  font-family: "Poppins";
  color: white;
  text-align: left;
  margin-left: 5%;
  margin-top: -5%;
}
.third-sect p {
  color: white;
  font-family: "Poppins";
  margin-left: 5%;
  width: 40vw;
  text-align: left;
  line-height: 2rem;
}

.third-sect img {
  width: 30vw;
  height: 58.5vh;
  margin-left: 10%;
  border-radius: 5px;
}

.third-sect i {
  color: red;
  margin-left: 4%;
  transition: 1s ease;
}

.third-sect i:hover {
  scale: 1.1;
  color: rgb(180, 0, 0);
}
@media screen and (max-width: 768px) {
  .third-sect {
    display: flex;
    flex-direction: column;
  }
  .third-sect img {
    width: 100vw;
    height: auto;
    margin-left: 0;
    margin-top: 20%;
    padding: 5px 5px;
    border-radius: 5px;
  }
  .third-sect h1 {
    font-size: 23px;
    margin-top: 10%;
    width: 101vw;
    text-align: center;
  }
  .third-sect h3 {
    text-align: center;
    font-size: 15px;
    margin-left: 11%;
  }
  .third-sect p {
    width: 95vw;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -1%;
    font-size: 10px;
    line-height: 2rem;
    text-align: center;
  }
  .third-sect i {
    margin-left: 45%;
  }
}

/*About Section*/
.staff-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  margin-bottom: 10%;
  animation: fade-in 2s ease-in-out;
}

.staff-roster h1 {
  color: white;
  font-weight: 400;
  text-align: center;
  font-family: "Poppins";
  margin-top: 11%;
  font-size: 70px;
}

.staff-roster strong {
  color: red;
  font-weight: 500;
}
.creator-roster h1{
  color: white;
  font-family: "Poppins";
  text-align: center;
  font-size: 60px;
  margin-top: 10%;
}


.creator-roster strong {
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.founder {
  background-color: rgb(24, 24, 24);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  margin-top: 5%;
  padding: 25px 20px;
  width: 280px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}


.founder:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}


.founder img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid #ffffff;
}


.founder h1 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 8px;
}


.founder h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #ff0000;
  margin: 0 0 16px;
}


.founder a {
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 1s ease;
}


.founder a:hover {
  color: #ff0000;
}

/*Game Design*/

.game-section {
  position: relative;
  width: 100%;
  height: 60%;
  text-align: center;
  overflow: hidden;
}

.game-section img {
  width: 100vw;
  height: auto;
  display: block;
  opacity: 0.3;
}

/* Overlay text container */
.game-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  text-align: center;
  overflow: hidden;
}

.game-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  animation: fade-in2 2s ease-in-out;
}

/* Overlay text container */
.game-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  animation: fade-in 2s ease-in-out;
}

.game-content h1 {
  font-size: clamp(2rem, 6vw, 7rem);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  color: #ff0000;
}

.game-content pre {
  font-family: "Poppins", sans-serif;
  font-size: clamp(10px, 2.2vw, 1.5rem);
  text-shadow: 0px 0px 10px black;
}

.game-content button {
  padding: 12px 24px;
  margin-top: 1%;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-family: "Poppins", sans-serif;
  background-color: rgb(255, 0, 0);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0px 0px 10px #ff0000;
  transition: 0.3s ease;
}

.game-content button:hover {
  scale: 1.1;
}

@media screen and (max-width: 768px) {
  .game-content h1 {
    font-size: 3rem;
  }

  .game-content pre {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .game-content button {
    font-size: 16px;
    padding: 10px 20px;
  }

  .game-section {
    min-height: 50vh;
  }
}

@media screen and (max-width: 480px) {
  .game-content {
    margin-top: -26%;
  }
  .game-content h1 {
    font-size: 2rem;
  }

  .game-content pre {
    font-size: 0.5rem;
    line-height: 1.4rem;
  }

  .game-content button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .game-section {
    min-height: 45vh;
  }
}

/*Fifth Section*/


.fifth-sect {
  display: flex;
  width: 100vw;
  margin-top: 2%;
  animation: fade-in 2s ease-in-out;
}

.fifth-sect h1 {
  color: rgb(255, 0, 0);
  font-family: "Poppins";
  text-align: center;
  width: 35vw;
  margin-left: 47%;
  font-size: 50px;
}

.fifth-sect p {
  color: white;
  font-family: "Poppins";
  margin-left: 45%;
  width: 40vw;
  text-align: left;
  line-height: 3rem;
}

.fifth-sect img {
  width: 30vw;
  height: auto;
  margin-left: 5%;
  box-shadow: 0px 0px 10px black;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .fifth-sect {
    display: flex;
    flex-direction: column;
    margin-top: -4%;
  }
  .fifth-sect img {
    width: 100vw;
    height: auto;
    margin-left: 0;
    padding: 5px 5px;
  }
  .fifth-sect h1 {
    font-size: 23px;
    margin-left: -1%;
    width: 101vw;
    text-align: center;
  }
  .fifth-sect p {
    width: 95vw;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -1%;
    font-size: 10px;
    line-height: 2rem;
  }
}

/*Roblox Games*/

#service {
  background-color: transparent;
  color: rgb(255, 0, 0);
  padding: 60px 20px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-top: 8%;
}

.service-section h1 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #1e1e1e;
  border-radius: 15px;
  padding: 30px 25px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 10px rgb(27, 27, 27);
}

.card h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ff0000;
}

.card ul {
  text-align: center;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 2;
}

.card ul li {
  margin-bottom: 10px;
  padding-left: 12px;
  position: relative;
}

.price {
  font-size: 2.2rem;
  font-weight: 500;
  color: #ff0000;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 90%;
  }
}

.card {
  background: rgba(30, 30, 30, 0.75); /* Dark with 75% opacity */
  border-radius: 15px;
  padding: 30px 25px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.it-sect {
  animation: fade-in 2s ease-in-out;
}
.it-sect h1 {
  color: white;
  font-family: "Poppins";
  font-weight: 500;
  text-align: center;
  font-size: 60px;
  margin-top: 5%;
}

.it-sect p {
  color: red;
  text-align: center;
  margin-top: -1.9%;
  font-size: 20px;
  padding-bottom: 4%;
}

.stats2-sect {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 10px 0;
  padding-bottom: 5%;
  width: 100vw;
  flex-wrap: wrap;
  background-color: transparent;
  animation: fade-in 2s ease-in-out;
}

.stat2 {
  background-color: #181818;
  width: 250px;
  height: 250px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat2 i {
  font-size: 3rem;
  color: #ff0000;
  margin-bottom: 15px;
}

.stat2 h1 {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 28px;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .stat2 {
    width: 200px;
    height: 200px;
    padding: 15px;
  }

  .stat2 h1 {
    font-size: 22px;
  }

  .stat2 i {
    font-size: 2.5rem;
  }
}

/*Products*/

.product-page h1 {
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 60px;
  margin-top: 6%;
  animation: fade-in 2s ease-in-out;
}

.product-page pre {
  color: red;
  text-align: center;
  font-family: "Poppins";
  line-height: 3rem;
  animation: fade-in 2s ease-in-out;
}

/*Footer*/

.footer {
  background-color: #000000;
  color: #d1d5db;
  font-family: "Poppins";
  padding: 40px 20px 20px;
  width: 99.3%;
  margin-left: -1%;
  padding-top: 10%;
}


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: #ff0000;
}


.footer-column h2,
.footer-column h3 {
  color: #ff0000;
  margin-bottom: 10px;
}


.footer-column p,
.footer-column li {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
  list-style: none;
}


.footer-column ul {
  padding: 0;
  margin: 0;
}


.footer-column li i {
  margin-right: 8px;
}

.footer hr {
  border: none;
  border-top: 1px solid #1e293b;
  margin: 20px 0;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #ffffff;
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
  flex-wrap: wrap;
  font-family: "Poppins";
}
