.priviw {
position: relative;
width: 100%;
max-width: 800px;
aspect-ratio: 16 / 9;
background-color: #121212;
border-radius: 16px;
overflow: hidden;
margin: 20px auto;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
font-family: Roboto, Arial, sans-serif;
}
.priviw-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  z-index: 1;
  pointer-events: auto !important;
}
.priviw-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 70%;
background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
z-index: 2;
pointer-events: none;
}
.priviw-content {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 24px;
box-sizing: border-box;
display: flex;
align-items: center;
gap: 16px;
z-index: 3;
pointer-events: none;
}
.priviw-icon {
width: 64px;
height: 64px;
border-radius: 14px;
background-color: #fff;
object-fit: cover;
box-shadow: 0 4px 10px rgba(0,0,0,0.4);
border: 1px solid rgba(255,255,255,0.1);
pointer-events: auto;
}
.priviw-text {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
pointer-events: auto;
}
.priviw-title {
margin: 0;
color: #ffffff;
font-size: 20px;
font-weight: 500;
line-height: 1.2;
text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.priviw-subtitle {
margin-top: 4px;
color: #cccccc;
font-size: 13px;
font-weight: 400;
text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.priviw-button {
background-color: #01875f;
color: #ffffff;
border: none;
border-radius: 20px;
padding: 8px 24px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
pointer-events: auto;
transition: background-color 0.2s;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.priviw-button:hover {
background-color: #016b4a;
}
@media (max-width: 600px) {
.priviw-content {
padding: 16px;
gap: 12px;
}
.priviw-icon {
width: 48px;
height: 48px;
border-radius: 10px;
}
.priviw-title {
font-size: 16px;
}
.priviw-subtitle {
font-size: 12px;
}
.priviw-button {
padding: 6px 16px;
font-size: 12px;
}
}/*
.priviw {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background-color: #121212;
  border-radius: 16px;
  overflow: hidden;
  margin: 20px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: Roboto, Arial, sans-serif;
}

.priviw-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  /* Supaya video murni jadi background & gak bisa di-klik/pause gak sengaja */
  pointer-events: none; 
}

.priviw-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
  z-index: 2;
  pointer-events: none;
}

.priviw-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  pointer-events: none;
}

.priviw-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background-color: #fff;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: auto;
  flex-shrink: 0; /* Mencegah ikon mengecil kalau teks panjang */
}

.priviw-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: auto;
  overflow: hidden; /* Wajib ada untuk memotong teks panjang */
}

.priviw-title {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* Membuat teks jadi "..." kalau kepanjangan */
}

.priviw-subtitle {
  margin-top: 4px;
  color: #cccccc;
  font-size: 13px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.priviw-button {
  background-color: #01875f;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  /* Perbaikan khusus untuk tag <a> */
  text-decoration: none; 
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Mencegah tombol mengecil */
}

.priviw-button:hover {
  background-color: #016b4a;
}

@media (max-width: 600px) {
  .priviw-content {
    padding: 16px;
    gap: 12px;
  }
  .priviw-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  .priviw-title {
    font-size: 16px;
  }
  .priviw-subtitle {
    font-size: 12px;
  }
  .priviw-button {
    padding: 6px 16px;
    font-size: 12px;
  }
}*/
iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
  background: transparent;
  overflow: hidden;
  margin: 24px 0;
}