@import url('https://fonts.googleapis.com/css2?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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@200..800&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&display=swap');

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background-color: black;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 786px) {
  body {
    overflow-x: hidden;
  }
}
/*NAVBAR CODE*/

/* Navbar container */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Poppins";
    padding: 10px 20px;
    background-color: transparent;
    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;
    padding: 8px 12px;
    font-size: 16px;
    background: none;
    border: none;
    cursor: pointer;
    transition: 1s ease;
}

.nav-links a:hover,
.dropdown:hover .dropbtn {
    color: #0026ff;
}

/* 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: 1;
}

.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;
}

/* Navbar link underline animation */
.nav-links a,
.dropdown .dropbtn {
    position: relative; /* needed for pseudo-element */
}

.nav-links a::after,
.dropdown .dropbtn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px; /* thickness of underline */
    left: 0;
    bottom: 0;
    background-color: #0026ff; /* underline color */
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.dropdown .dropbtn:hover::after {
    width: 100%;
}


/* 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: auto;
  text-align: center;
  overflow: hidden;
  animation: slideAndFade 3s ease-in-out;
}


.home-section img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.3;
}


/* 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: 6rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin: 0 0 20px 0;
  color: #0026ff;
}


.home-section strong {
  font-weight: 700;
  color: white;
  font-family: "Fustat";
}


.home-content button {
  padding: 12px 24px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  border: 2px solid #0026ff;
  color: white;
  box-shadow: 0px 0px 10px black;
  cursor: pointer;
  transition: 0.3s ease;
}


.home-content button:hover {
  background-color: #0026ff;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: white;
  box-shadow: 0px 0px 10px black;
  transform: translateY(-5px);
}


/* === 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;
  }
}






/* ===================== */
/* Responsive adjustments */
/* ===================== */
@media (max-width: 1200px) {
    .home-header h1 {
        margin-top: -25%;
        font-size: 90px;
    }
    .home-header .header-btn {
        font-size: 16px;
        padding: 10px 22px; /* shrink padding so the button doesn’t look oversized */
        top: 62%;
    }
    .header-btn {
      margin-top: -104%;
    }
}


@media (max-width: 768px) {
    .home-header h1 {
        font-size: 60px;
    }
    .home-header .header-btn {
        font-size: 18px;
        padding: 12px 24px;
        top: 65%;
    }
}

@media (max-width: 480px) {
    .home-header h1 {
        font-size: 40px;
    }
    .home-header .header-btn {
        font-size: 14px;
        padding: 10px 20px;
        top: 67%;
    }
}

/*STAFF SECTION*/

@keyframes slideAndFade {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.staff-sect h1 {
    color: #0026ff;
    font-family: "Poppins";
    text-align: center;
    font-size: clamp(40px, 8vw, 100px);
    animation: slideAndFade 3s ease-in-out;
}

.staff-sect strong {
    font-weight: 500;
    font-family: "Fustat";
    color: white;
}

/*STAFF PROFILES*/

.staff-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  margin-bottom: 10%;
  animation: fade-in 3s ease-in-out;
}


.staff-roster strong {
  font-weight: 700;
  color: #1900ff;
  text-align: center;
}

/*Creator Cards*/

.creator-roster h1{
  color: white;
  font-family: "Poppins";
  text-align: center;
  font-size: 60px;
  margin-top: 10%;
}


.founder {
  background-color: #242424;
  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: 3px solid #0026ff;
}

.founder h1 {
  font-family: "Fustat";
  font-size: 1.8rem;
  margin: 0 0 8px;
}

.founder h2 {
  font-family: "Poppins";
  font-size: 1.2rem;
  font-weight: 400;
  color: #7a8ca3;
  margin: 0 0 16px;
}

.founder a {
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 1s ease;
}

.founder a:hover {
  color: #0026ff;
}

/*VALORANT SECTION*/

.val-sect h1 {
    color: #0026ff;
    font-family: "Poppins";
    text-align: center;
    font-size: clamp(40px, 8vw, 100px);
    animation: slideAndFade 3s ease-in-out;
}

.val-sect strong {
    font-weight: 500;
    font-family: "Fustat";
    color: white;
}

/*VALORANT PROFILES*/

.val-sect h1 {
    color: #0026ff;
    font-family: "Poppins";
    text-align: center;
    font-size: clamp(40px, 8vw, 100px);
    animation: slideAndFade 3s ease-in-out;
}

.val-sect strong {
    font-weight: 500;
    font-family: "Fustat";
    color: white;
}

.val-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  margin-bottom: 10%;
  animation: fade-in 3s ease-in-out;
}

.main {
    color: white;
    text-align: center;
    font-family: "Fustat";
    padding-bottom: 0px;
    animation: fade-in 3s ease-in-out;
}

/*VAL PROFILES 2*/

.val-roster2 {
  font-weight: 700;
  color: #1900ff;
  text-align: center;
}

/*val-roster 3*/

.val-roster3 {
  font-weight: 700;
  color: #1900ff;
  text-align: center;
}

/*VAL ROSTER $*/

.val-roster4 {
  font-weight: 700;
  color: #1900ff;
  text-align: center;
}

/*FORTNITE ROSTER*/

.fortnite-sect h1 {
    color: #0026ff;
    font-family: "Poppins";
    text-align: center;
    font-size: clamp(40px, 8vw, 100px);
    animation: slideAndFade 3s ease-in-out;
}

.fortnite-sect strong {
    font-weight: 500;
    font-family: "Fustat";
    color: white;
}

/*FOOTER*/

.footer {
  background-color: #000000;
  color: #d1d5db;
  font-family: "Montserrat", sans-serif;
  padding: 40px 20px 20px;
  width: 99.3%;
  margin-left: -1%;
  animation: fade-in 3s ease-in-out;
}


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: #2563eb;
}


.footer-column h2,
.footer-column h3 {
  color: #0026ff;
  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: #0026ff;
}


.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;
}

/*CONTACT US SECTION*/

.contact-head h1 {
  color: white;
  font-family: "Poppins";
  text-align: center;
  font-size: clamp(40px, 8vw, 100px);
  animation: fade-in 3s ease-in-out;
}

.contact-head p {
  color: #ffffff;
  text-align: center;
  font-family: "Fustat";
  margin-top: -4%;
  font-size: clamp(20px, 5vw, 20px);
  padding-bottom: 7%;
  animation: fade-in 3s ease-in-out;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: "Poppins";
  max-width: 600px;       /* Limit the width */
  margin: 0 auto;         /* Center the form */
  padding: 20px;          /* Add some space around it */
  width: 100%;
  font-family: "Fustat";
  animation: fade-in 3s ease-in-out;
}


.contact-form label {
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  background: #0026ff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
}


.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  background: rgba(255, 255, 255, 0.1);
  color: #eee;
  transition: background-color 0.3s ease;
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}


.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}


.contact-form button {
  background: #0026ff;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1.1rem;
  font-family: "Fustat";
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s ease;
  margin-bottom: 7%;
}


.contact-form button:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-5px);
}

/*About Section*/

#home {
  width: 100vw;
}
#home h1 {
  color: #0026ff;
  text-align: center;
  font-family: "Poppins";
  animation: fade-in 3s ease-in-out;
}

#home p {
  color: white;
  font-family: "Fustat";
  text-align: center;
  line-height: 2.5rem;
  font-size: clamp(20px, 30px, 20px);
  animation: fade-in 3s ease-in-out;
}

.quote h1 {
  color: white;
  font-family: "Fustat";
  font-style: italic;
  text-align: center;
  font-size: clamp(35px, 30px, 20px);
  margin-top: 5%;
  animation: fade-in 3s ease-in-out;
}

.quote p {
  color: rgb(202, 202, 202);
  font-family: "Poppins";
  font-size: 20px;
  text-align: center;
  padding-bottom: 5%;
  animation: fade-in 3s ease-in-out;
}

.mert-pfp {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in 3s ease-in-out;
}
.mert-pfp img {
  border: 2px solid white;
  border-radius: 100%;
  margin-bottom: 3%;
}

.location {
  display: flex;
  flex-direction: column;   
  justify-content: center;  
  align-items: center;      
  text-align: center;
  gap: 10px;                
  padding: 20px;
  animation: fade-in 3s ease-in-out;       
}

.location i {
  margin-top: 7%;
  color: #0026ff; 
}

.location h1 {
  font-family: "Fustat";
  color: white;
}

/*MORE INDEX PAGE*/

.poster-collage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5%;
  margin-top: 5%;
}

.poster-collage img {
  width: 400px;
  border: 1px solid white;
  transition: 1s ease;
  animation: scale-in 3s ease-in-out;  
}

.poster-collage img:hover {
  scale: 1.1;
}

@keyframes scale-in {
  0% {
    scale: 0.2;
    opacity: 0;
  }
  100% {
    scale: 1;
  }
}
@media (max-width: 780px) {
  .poster-collage {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
    gap: 30px;
  }

  .poster-collage img {
    width: 200px;
  }
}

.era {
  animation: fade-in 3s ease-in-out; 
}
.era h1 {
  color: white;
  font-family: "Fustat";
  text-align: center;
  margin-top: 5%;
  font-size: clamp(50px, 30px, 20px);
}

.era strong {
  color: #0026ff;
  font-family: "Poppins";
  font-weight: 700;
}

@media (max-width: 800px) {
  .era {
    padding-top: 20%;
  }
}

/*STATS*/

.total-stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8%;
  animation: fade-in 3s ease-in-out; 
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers the i and h1 horizontally */
  justify-content: center;
  text-align: center;
  margin-top: 5%;
}

.stat h1 {
  color: white;
  font-family: "Fustat";
  text-align: center;
}

.stat i {
  color: #0026ff;
}

@media (max-width: 780px) {
  .total-stats {
    flex-direction: column;
  }
}

/*JOIN NOW*/

.join {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 10%;
  animation: fade-in 3s ease-in-out; 
}

.join h1 {
  color: white;
  font-family: "Poppins";
  padding-top: 5%;
  font-size: clamp(40px, 30px, 20px);
  text-align: center;
}

.join button {
  position: relative;
  color: #0026ff;
  background-color: white;
  font-size: clamp(30px, 30px, 20px);
  border: none;
  border-radius: 100px;
  padding: 10px 40px;
  font-family: "Fustat";
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  overflow: hidden; /* ensures underline stays inside */
}

.join button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px; /* distance from bottom inside button */
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 70%;
  height: 2px;
  background-color: currentColor; /* matches text color */
  transition: transform 0.3s ease;
}

.join button:hover {
  transform: translateY(-5px);
  background-color: #0026ff;
  color: white;
}

.join button:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/*Partners Page*/

.coming-soon h1 {
  background: linear-gradient(90deg, #8c00ff, #21006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
  font-family: "Poppins";
  text-align: center;
  font-size: clamp(200px, 30px, 20px);
  padding-bottom: 13%;
  animation: fade-in 3s ease-in-out; 
}

@media (max-width: 780px) {
  .coming-soon h1 {
    font-size: 50px;
  }
}

/*NEWS PAGE*/

.articles {
  display: flex;
  flex-wrap: wrap; /* allows multiple articles on smaller screens */
  justify-content: center;
  gap: 20px; /* spacing between articles */
  padding: 40px 20px;
  margin-top: 5%;
  padding-bottom: 15%;
}

.news-box {
  background-color: #242424;
  width: 300px; /* fixed width looks better for articles */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fade-in 3s ease-in-out;
}

.news-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.news-box a {
  text-decoration: none;
  font-family: "Poppins";
  padding: 20px 20px;
  display: block;
  color: white;
  transition: 1s ease;
}

.news-box a:hover {
  color: #0026ff;
}

.news-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.news-box h1 {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  margin: 15px 20px 10px;
}

.news-box p {
  color: #ddd;
  font-family: "Fustat", sans-serif;
  font-size: 1rem;
  margin: 0 20px 20px;
  line-height: 1.5;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  font-family: "Poppins";
  background: #222;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: none;
  z-index: 1000;
  animation: fadeIn 0.5s ease;
}

.cookie-content p {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-buttons button {
  border: none;
  border-radius: 8px;
  font-family: "Poppins";
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

#acceptCookies {
  background: #0026ff;
  color: white;
}

#declineCookies {
  background: #444;
  color: white;
}

.cookie-buttons button:hover {
  opacity: 0.9;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
