* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

body {
  background: #0a0a0a;
  color: white;
  -ms-overflow-style: none;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 92%);
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;

  box-shadow:
    0 14px 40px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);

  z-index: 999;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
}

.nav-links a:hover {
  color: white;
}

.nav-btn {
  padding: 8px 14px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('Images/Roblox_Banner.png') center/cover no-repeat;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 200px 10% 0 10%;
}

.hero-left {
  max-width: 700px;
}

.hero-left h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-left p {
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 1.35rem;
  opacity: 0.9;
}

.stats-text {
  margin-top: 12px;
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.stats-text span {
  font-weight: 700;
}

.btn-group {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* =========================
   TRUE INFINITE MARQUEE FIX
========================= */

.marquee {
  width: 100%;
  overflow: hidden;

  padding: 14px 0;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  padding-right: 60px;
  font-size: 0.9rem;
  opacity: 0.75;
  letter-spacing: 1px;
}

/* ABOUT */
.about-section {
  padding: 120px 10%;
  background: radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 60%);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 70px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-desc {
  font-size: 1.05rem;
  opacity: 0.75;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 25px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.stat-card {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 3px;
}

.about-logo-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-big-logo {
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255,255,255,0.15));
}

/* =========================
   DEVELOPER SECTION
========================= */

.dev-section {
  padding: 120px 10%;
  background: radial-gradient(circle at bottom, rgba(255,255,255,0.04), transparent 60%);
  margin-bottom: 100px;
}

.dev-header {
  text-align: center;
  margin-bottom: 60px;
}

.dev-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.dev-header p {
  font-size: 1.1rem;
  opacity: 0.75;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.dev-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.dev-card {
  flex: 1;
  min-width: 260px;
  max-width: 320px;

  padding: 22px;
  border-radius: 18px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  transition: transform 0.2s ease, background 0.2s ease;
}

.dev-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
}

.dev-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.dev-card p {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* =========================
   TEAM SECTION
========================= */


.team-header {
  text-align: center;
}

.team-header {
  text-align: center;
  margin-bottom: 70px;
}

.team-header h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-card {
  width: 340px;
  padding: 30px;
  border-radius: 20px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);

  box-shadow: 0 15px 40px rgba(0,0,0,0.3);

  text-align: center;

  transition: transform 0.25s ease, background 0.25s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.07);
}

.team-avatar-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;

  margin: 0 auto 15px auto;

  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.team-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.role {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 15px;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 120px 10%;
  background: radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 60%);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.team-socials a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  backdrop-filter: blur(10px);

  transition: 0.2s ease;
}

.team-socials a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}

.team-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: 0.2s ease;
}

.social-value:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.contact-header p {
  font-size: 1.1rem;
  opacity: 0.75;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* LEFT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  width: 280px;
  padding: 20px;
  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.team-social {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 8px 12px;
  border-radius: 12px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);
}

.social-label {
  font-size: 0.75rem;
  opacity: 0.6;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.social-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.contact-card p {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* FORM */
.contact-form {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;

  padding: 25px;
  border-radius: 18px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);
}

.contact-form input,
.contact-form textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 10px;
  color: white;
  outline: none;
}

.site-footer {
  margin-top: 120px;
  padding: 60px 10%;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* COLUMN STYLE */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 160px;
}

.footer-col h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.footer-col h4 {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.4;
}

/* LINKS */
.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.2s ease;
}

.footer-col a:hover {
  color: white;
  transform: translateX(3px);
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.5;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.back-to-top {
  position: fixed;
  bottom: 22px;
  right: 22px;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);

  transition: 0.25s ease;
  z-index: 9999;
}

.back-to-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  transition: 0.25s ease;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.back-to-top:hover svg {
  opacity: 1;
  transform: translateY(-1px);
}

.contact-form button {
  padding: 10px;
  border: none;
  border-radius: 999px;
  background: white;
  color: black;
  font-weight: 600;
  cursor: pointer;
}

.g-recaptcha {
  margin-top: 10px;
}

.team-section {
  margin-bottom: 120px;
}

.contact-section {
  margin-top: 120px;
}

.contact-form button:hover {
  opacity: 0.85;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.2s ease;
  width: fit-content;
}

.footer-col a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-col p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 320px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-big-logo {
    width: 200px;
    height: 200px;
  }

  .about-stats {
    align-items: center;
  }
}