/* File: css/pvp-style.css */
/* Replace 2511 with your actual page ID */
body.page-id-2511 .elementor-1885,
body.page-id-2511 .elementor-1916 {
    display: none !important;
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  font-family: Arial, sans-serif;
  background: #222;
  color: white;
}

.video-page-no-header-footer header,
.video-page-no-header-footer footer {
  display: none !important;
}

/* Reel Wrapper */
.pvp-reel-wrapper {
    position: fixed; /* Ensures it always stays in viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #222; /* Optional: fallback background */
}


/* Video Reel */
.pvp-video-reel {
  width: 100%;
  max-width: 360px;
  height: 90vh;
  background: #000;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.pvp-video-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption */
.pvp-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px;
  text-align: center;
  color: #90ee90;
}

/* Back button */
.pvp-back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #000;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  z-index: 10;
}

/* Share Buttons */
.pvp-share-buttons {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.pvp-share-buttons a {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Scroll Buttons */
.pvp-scroll-buttons {
  position: absolute;
  right: 10px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.pvp-scroll-buttons button {
  width: 40px;
  height: 40px;
  background: #ccc;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
