/* Reset and layout basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Fullscreen video as background */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* Ensures full coverage without distortion */
  z-index: -1;
}

/* Top-left aligned overlay with margin */
.overlay {
  position: absolute;
  top: 50px;
  left: 50px;
  text-align: left;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* Enlarged logo */
.logo {
  max-width: 420px; /* 300px × 1.4 = 420px */
  height: auto;
  margin-bottom: 20px;
}

/* Pronounced subtitle */
.subtitle {
  font-size: 2 rem;
  font-weight: bold;
  letter-spacing: 1px;
}
