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

body {
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
}

/* Video Background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
}

/* Dark overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(15, 27, 40, 0.75);
}

.container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

/* Logo */
.logo {
  margin-bottom: 24px;
}

.logo h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #FFFFFF;
}



/* Heading */
h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.subtext {
  font-size: 1.15rem;
  color: #B0C4DE;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* Footer */
.footer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 640px) {
  .logo h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 2rem;
  }

  .subtext {
    font-size: 1rem;
    padding: 0 10px;
  }

  .gold-line {
    width: 40px;
  }
}