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

/* Fullscreen setup */
body, html {
  height: 100%;
  font-family: 'Merriweather', serif;
  background: linear-gradient(to bottom, #13357c, #052452);
  color: #fff;
}

/* Landing container centered */
.landing {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: url(bg.jpg)
              center/cover repeat;
  opacity: 0.25;
  z-index: 0;
}

/* Centered content */
.content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 90%;
}

/* Title styling */
.title {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* Video wrapper */
.video-wrapper {
  display: inline-block;
  position: relative;
  border: 8px solid #fff;
  border-radius: 18px;
  padding: 8px;
  background: radial-gradient(circle at center, #13357c, #052452);
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.video-wrapper:hover {
  transform: scale(1.05);
}

.video-wrapper video {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Tagline */
.tagline {
  margin-top: 25px;
  font-size: 1.3rem;
  color: #f1e3c6;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 1.8rem;
  }

  .video-wrapper video {
    max-width: 100%;
  }

  .tagline {
    font-size: 1rem;
  }
}