html {
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Poppins", sans-serif;
  color: #000000;
  background-color: #0a0a0f;
}

/* ========== HERO AREA ========== */
.hero_area {
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.hero_area video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* ========== HEADER / NAV ========== */
.header_section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

.header_section.scrolled {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  margin: 10px 30px;
  padding: 0;
  padding-bottom: 3px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
  color: #ffffff;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.navbar-brand span {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 3;
  letter-spacing: 1px;
}

.custom_nav-container {
  z-index: 99999;
  padding: 15px 0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 55px;
}

/* center nav links, push CTA right on desktop */
@media (min-width: 992px) {
  .custom_nav-container {
    position: relative;
  }

  .custom_nav-container .navbar-collapse {
    position: static;
    display: flex !important;
    align-items: center;
  }

  .custom_nav-container .navbar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav_cta {
    margin-left: auto;
  }
}

/* nav CTA button (top-right) */
.nav_cta {
  display: inline-block;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  background: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.nav_cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.3);
  color: #1a1a2e;
  text-decoration: none;
}

/* ========== HERO CONTENT ========== */
.hero_content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.hero_text {
  max-width: 860px;
}

.hero_title {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: heroFadeIn 1s ease-out;
}

.hero_subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: heroFadeIn 1s ease-out 0.2s both;
}

/* ========== HERO BOTTOM BAR ========== */
.hero_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding-bottom: 40px;
  animation: heroFadeIn 1s ease-out 0.6s both;
}

.hero_ip_bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  transition: border-color 0.3s ease;
}

.hero_ip_bar:hover {
  border-color: rgba(255,255,255,0.4);
}

.hero_ip_text {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  font-family: 'Consolas', 'Courier New', monospace;
}

.hero_ip_btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  background: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.hero_ip_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.hero_ip_tip {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin-top: 12px;
  letter-spacing: 1px;
}

.hero_timer {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SHARED SECTION STYLES ========== */
.section_tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6db3f2;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section_tag::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: rgba(109, 179, 242, 0.15);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236db3f2' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4zM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.section_header {
  margin-bottom: 60px;
}

.section_header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section_header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.7;
}

/* ========== FEATURES SECTION ========== */
.features_section {
  padding: 120px 0;
  background: #0a0a0f;
  scroll-snap-align: start;
}

.feature_row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

.feature_row:last-child {
  margin-bottom: 0;
}

.feature_reverse {
  flex-direction: row-reverse;
}

.feature_info {
  flex: 1;
  position: relative;
}

.feature_index {
  display: block;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: -28px;
  pointer-events: none;
  user-select: none;
}

.feature_info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.feature_info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 400px;
}

.feature_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6db3f2;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.feature_link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.feature_link:hover {
  gap: 10px;
  color: #6db3f2;
}

.feature_media {
  flex: 1;
  height: 340px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature_media_1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.feature_media_2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #1a3a1a 50%, #0f3460 100%);
}

.feature_media_3 {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a1a2e 50%, #4a0f30 100%);
}

/* ========== JOIN SECTION ========== */
.join_section {
  padding: 120px 0;
  background: #0d0d14;
  scroll-snap-align: start;
}

.join_cards {
  display: flex;
  gap: 24px;
  margin-bottom: 80px;
}

.join_card {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.join_card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.join_card_icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(109, 179, 242, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join_card_icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(65%) sepia(40%) saturate(800%) hue-rotate(185deg) brightness(1.15) contrast(1);
}

.join_card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.join_card code {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-family: 'Consolas', 'Courier New', monospace;
  letter-spacing: 1px;
  margin-bottom: 24px;
  background: none;
}

.join_copy_btn {
  display: inline-block;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #6db3f2;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join_copy_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(109, 179, 242, 0.35);
  color: #ffffff;
  text-decoration: none;
}

/* Member Grid */
.member_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.member_card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px 14px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.member_card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.member_card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.member_avatar_placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member_avatar_placeholder::after {
  content: "+";
  color: rgba(255, 255, 255, 0.2);
  font-size: 28px;
  font-weight: 300;
}

.member_card h5 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.member_card span {
  display: block;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  margin-bottom: 14px;
}

.member_links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.member_links a {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.member_links a:hover {
  opacity: 1;
}

.member_links img,
.member_links svg {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 0;
}

.member_links img {
  filter: brightness(0) invert(1);
}

/* ========== FOOTER ========== */
.footer_section {
  background: #06060a;
  padding: 40px 0;
  text-align: center;
}

.footer_links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer_links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_links a:hover {
  color: #ffffff;
}

.footer_copy {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  margin: 0;
}
