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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #141414;
  color: #ffffff;
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.9);
  padding: 1.5rem 4%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e50914;
}

.header-content h1 {
  font-size: 2rem;
  color: #e50914;
}

/* Hero */
.hero {
  height: 90vh;
  position: relative;
  margin-top: 70px;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 25%;
  left: 5%;
  max-width: 600px;
}

.btn-play {
  background: #e50914;
  color: white;
  border: none;
  padding: 14px 36px;
  font-size: 1.3rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Desktop Video */
.main-video-section {
  padding: 30px 4%;
  background: #141414;
}

.video-container video {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  border-radius: 0;           /* Hilangkan bingkai */
  box-shadow: none;
}

/* Floating Player - Mobile Only + Posisi Tengah */
.floating-player {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  max-width: 420px;
  background: #000;
  z-index: 9999;
  border-radius: 0;           /* Hilangkan bingkai */
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

.floating-player video {
  width: 100%;
  display: block;
  border: none;
}

/* Tampilkan hanya di Mobile */
@media (max-width: 992px) {
  .floating-player {
    display: block;
  }
  .main-video-section {
    display: none;
  }
}