* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  overflow: hidden;
}
#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
  object-fit: cover;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.logo {
  font-weight: bold;
  font-size: 1.2em;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a, .sign-in {
  color: white;
  text-decoration: none;
  font-size: 0.95em;
  background: none;
  border: none;
  cursor: pointer;
}
main {
  position: relative;
  top: 20%;
  text-align: center;
  padding: 0 20px;
}
.animated-text {
  font-size: 3rem;
  height: 90px;
  font-weight: 600;
  overflow: hidden;
}
.subtitle {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #ddd;
}
.buttons {
  margin: 30px 0;
}
.primary-btn {
  background: #964cf6;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.primary-btn:hover {
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}
.community {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 10px;
}
.note {
  font-size: 0.85rem;
  color: #aaa;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.cta-section {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.primary-btn {
  background: #964cf6;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.primary-btn:hover {
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.community-text {
  font-size: 1rem;
  color: #ddd;
  text-align: center;
}

/* Transparent Footer */
footer {
  background: rgba(0, 0, 0, 0.2);  /* Transparent background */
  color: #eee;
  font-size: 0.85rem;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin-left: 15px;
}

footer a:hover {
  text-decoration: underline;
}

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

.logo-img {
  height: 40px;
  width: auto;
}
