@charset "utf-8";
/* ::::::::::::::::::::::::::::::::::::::::: */

dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  width: 95vw;
  max-width: 1200px;
  max-height: 85vh;
  background: #000;
  border-radius: 12px;
  overflow: visible;
  border: none;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  transition: 0.5s;
}
.video-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
}
@media (orientation: landscape) and (max-height: 500px) {
  .video-container {
    width: auto;
    height: 75vh;
  }
  .icon-close-btn {
    top: 0;
    right: -45px;
  }
}
iframe {
  width: 100%;
  height: 100%;
}
.icon-close-btn {
  position: absolute;
  top: -35px;
  right: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  padding: 3px;
  transition: opacity 0.2s, transform 0.2s;
}
.icon-close-btn:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
.icon-close-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}
.btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 30px;
}
.glass-video-btn {
  display: inline-flex;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 90%;
  background: linear-gradient(135deg, rgba(0, 79, 153, 0.3) 0%, rgba(0, 79, 153, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  outline: none !important;
}
.glass-video-btn:hover {
  background: linear-gradient(135deg, 
  rgba(0, 79, 153, 0.05) 0%,
  rgba(0, 79, 153, 0.15) 100%);
  color: #004f99;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}
.icon-play {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  color: #004f99;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.icon-play svg {
  width: 16px;
  margin-left: 2px;
}
@media print, (min-width: 768px) {
  .glass-video-btn {
    width: 50%;
  }
}
