* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(145deg, #050505 0%, #111111 48%, #050505 100%);
  color: #ffffff;
  min-height: 100vh;
}

.page-wrapper {
  width: 100%;
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
}

.content {
  width: 100%;
  max-width: 1180px;
  text-align: center;
}

.site-header {
  margin-bottom: 26px;
}

.site-header h1 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.85;
  line-height: 1.3;
  margin-bottom: 16px;
}

.social-area p {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: #dcdcdc;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
  background: #ffffff;
  color: #050505;
}

.video-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.video-section video {
  width: min(90vw, 760px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 768px) {
  .hero {
    padding: 24px 14px;
  }

  .site-header {
    margin-bottom: 22px;
  }

  .site-header h1 {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .video-section video {
    width: min(92vw, 560px);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 22px 12px;
  }

  .site-header h1 {
    font-size: 17px;
    letter-spacing: 1.2px;
  }

  .social-icons a {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .video-section video {
    width: 94vw;
  }
}