    * { box-sizing: border-box; margin: 0; padding: 0; }

	html, body {
	  margin: 0;
	  padding: 0;
	  width: 100%;
	  height: 100%;
	}

    body {
	  font-family: 'Orbitron', sans-serif;
	  color: #fff;
	  display: flex;
	  flex-direction: column;
	  min-height: 100vh;
	  overflow-y: auto;
	}

    .bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      z-index: -2;
      transition: background-image 1.5s ease-in-out;
    }

    .bg-video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -3;
      display: none;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.65);
      z-index: -1;
    }

    header {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100vw;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding: 16px 40px;
	  background: rgba(0,0,0,0.85);
	  border-bottom: 2px solid #ff7b00;
	  backdrop-filter: blur(6px);
	  z-index: 9999;
	}

	.about-icon img {
	  width: 45px;
	  height: 45px;
	  object-fit: contain;
	}

	section {
	  scroll-margin-top: 140px; /* must be >= header height */
	}

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      width: 48px;
      height: 48px;
    }

    .logo h1 {
      font-size: 1.8rem;
      font-weight: 800;
      color: #ff7b00;
    }

    .socials a {
	  margin-left: 18px;
	  color: #fff;
	  font-size: 1.35rem;
	  text-decoration: none;
	  transition: color 0.2s, transform 0.2s;
	}

	.socials a:hover {
	  color: #ff7b00;
	  transform: translateY(-2px);
	}

	.main-nav {
	  flex: 1;
	  display: flex;
	  justify-content: center;
	  gap: 28px;
	}

	.main-nav a {
	  color: #fff;
	  text-decoration: none;
	  font-weight: 600;
	  letter-spacing: 0.5px;
	  position: relative;
	  transition: color 0.2s;
	}

	.main-nav a::after {
	  content: "";
	  position: absolute;
	  left: 0;
	  bottom: -6px;
	  width: 0;
	  height: 2px;
	  background: #ff7b00;
	  transition: width 0.25s ease;
	}

	.main-nav a:hover {
	  color: #ff7b00;
	}

	.main-nav a:hover::after {
	  width: 100%;
	}

	html {
	  scroll-behavior: smooth;
	}

	.server-status {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  gap: 30px;
	  font-size: 1.3rem;
	  font-weight: 600;
	}

	.server-status span {
	  white-space: nowrap;
	}

    main {
	  flex: 1;
	  max-width: 1100px;
	  width: 100%;
	  margin: 140px auto 0;
	  padding: 0 20px;
	}
	
    .hero {
      background: rgba(0,0,0,0.65);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 0 25px rgba(0,0,0,0.8);
    }

    .hero h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      color: #ff7b00;
    }

    .status {
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .status.online {
      background: rgba(0,200,0,0.15);
      color: #3cff3c;
      border: 1px solid rgba(0,200,0,0.4);
      box-shadow: 0 0 10px rgba(0,200,0,0.4);
    }

    .status.offline {
      background: rgba(200,0,0,0.15);
      color: #ff4c4c;
      border: 1px solid rgba(200,0,0,0.4);
    }

    .hero p {
      line-height: 1.7;
      margin-bottom: 25px;
      color: #ddd;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

    .info-box {
      background: rgba(255,255,255,0.05);
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .info-box span {
      display: block;
      font-size: 1.4rem;
      font-weight: 600;
      color: #ff7b00;
      margin-bottom: 8px;
    }

    .connect-btn {
      display: inline-block;
      padding: 16px 40px;
      background: linear-gradient(135deg, #ff7b00, #ffae00);
      color: #000;
      font-weight: 800;
      text-decoration: none;
      border-radius: 50px;
      box-shadow: 0 0 20px rgba(255,123,0,0.6);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .discord-btn {
      display: inline-block;
      padding: 16px 40px;
      background: linear-gradient(135deg, #5865F2, #7983F5);
      color: #fff;
      font-weight: 800;
      text-decoration: none;
      border-radius: 50px;
      box-shadow: 0 0 20px rgba(88,101,242,0.6);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .button-wrap {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .connect-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(255,123,0,0.9);
    }

    .discord-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(88,101,242,0.9);
    }

    .about {
      margin-top: 100px;
      background: rgba(0,0,0,0.65);
      padding: 50px 40px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 0 25px rgba(0,0,0,0.8);
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
      color: #ff7b00;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
    }

    .about-box {
	  background: rgba(255,255,255,0.05);
	  padding: 25px;
	  border-radius: 12px;
	  border: 1px solid rgba(255,255,255,0.1);
	  text-align: center;
	}

	.about-icon img {
	  width: 15px;
	  height: 15px;
	  object-fit: contain;
	  transition: transform 0.3s ease;
	}

	.about-box:hover .about-icon img {
	  transform: scale(1.05);
	}

    .about-box h3 {
      color: #ffae00;
      margin-bottom: 12px;
      font-size: 1.2rem;
    }

    .about-box p {
      color: #ccc;
      line-height: 1.6;
      font-size: 0.95rem;
    }

	.about-box:hover {
	  transform: none;
	  box-shadow: none !important;
	}
	
    .staff {
      margin-top: 100px;
      background: rgba(0,0,0,0.65);
      padding: 50px 40px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 0 25px rgba(0,0,0,0.8);
    }

    .staff-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .staff-card {
      text-align: center;
      text-decoration: none;
      color: #fff;
      transition: transform 0.2s;
    }

    .staff-card img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #ff7b00;
      box-shadow: 0 0 20px rgba(255,123,0,0.6);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .staff-card span {
      display: block;
      margin-top: 12px;
      font-weight: 600;
      color: #ffae00;
      transition: color 0.2s;
    }

    .staff-card:hover img {
      transform: scale(1.05);
      box-shadow: 0 0 30px rgba(255,123,0,0.9);
    }

    .staff-card:hover span {
      color: #fff;
    }

    footer {
	  width: 100vw;
	  margin-top: 0;
	  padding: 30px 20px;
	  text-align: center;
	  background: rgba(0,0,0,0.85);
	  border-top: 2px solid #ff7b00;
	  color: #aaa;
	  font-size: 0.9rem;
	}
	
	.footer-socials {
	  display: flex;
	  justify-content: center;
	  gap: 22px;
	  margin-bottom: 14px;
	}

	.footer-socials a {
	  color: #aaa;
	  font-size: 1.25rem;
	  transition: color 0.2s, transform 0.2s, text-shadow 0.2s;
	}

	.footer-socials a:hover {
	  color: #ff7b00;
	  transform: translateY(-2px);
	  text-shadow: 0 0 10px rgba(255,123,0,0.6);
	}

	main,
	footer {
	  position: relative;
	  z-index: 2;
	}

	.footer-text {
	  color: #aaa;
	  font-size: 0.9rem;
	}
	
	.about-icon {
	  margin-bottom: 15px;
	  transition: transform 0.3s ease;
	}

	.about-icon img {
	  width: 55px;
	  height: 55px;
	  object-fit: contain;
	  transition: transform 0.3s ease;
	}




