body{
	background: #010101;
}

.svc-wrapper {
  max-width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.svc-main {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.svc-header{
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: fit-content;
	color: #bbbbbb;
}

.svc-project-title{
	font-weight: 600;
}

.svc-header-left{
	display: flex;
	justify-content: start;
	gap: 16px;
}
/* Video side */
.svc-video-area {
  flex: 2;
  min-width: 0;
	margin: 0 auto;
}

/* Make the video feel like a "comment surface" */
.svc-video-player {
  cursor: pointer; /* basic pointer */

}

/* Optional: if you have a custom comment cursor icon, use this instead:
.svc-video-player {
  cursor: url('https://your-site.com/path/to/comment-cursor.png') 16 16, pointer;
}
*/


.svc-video-player {
  width: 100%;

  border-radius: 8px;
  display: block;
  background: #000;
		height: 100%;
}

.svc-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.svc-add-comment-btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
background: linear-gradient(45deg, #ff44ee, #9300df);
	display: flex;
gap: 4px;
	align-items: center;
	padding: 4px 16px 4px 8px;
	margin: 0;
}

.svc-add-comment-btn img{
	margin: 0;
	width: 30px;
	height: 30px;
}

.svc-add-comment-btn:hover {

outline: 3px solid #333;
}

.svc-current-time-label {
  font-size: 0.9rem;
  color: #d0d0d0;
	padding-right: 16px;
}

/* Form */
.svc-comment-form {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  background: #f7f7f9;
  border: 1px solid #ddd;
}

.svc-field {
  margin-bottom: 0.75rem;
}

.svc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.svc-field input[type="text"],
.svc-field textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 0.4rem 0.5rem;
  font-size: 0.9rem;
  box-sizing: border-box;
}

.svc-field textarea {
  resize: vertical;
}

.svc-form-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.5rem;
}

.svc-submit-comment,
.svc-cancel-comment {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
}

.svc-submit-comment {
  background: #1f6feb;
  color: #fff;
}

.svc-submit-comment:hover {
  background: #1650a8;
}

.svc-cancel-comment {
  background: #eee;
}

.svc-cancel-comment:hover {
  background: #ddd;
}

.svc-message {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* Comments side */
.svc-comments-panel {
  flex: 1;
  min-width: 0;

  padding-left: 1rem;
}

.svc-comments-panel h3 {
  margin-top: 0;
color: #555555;
  font-size: 1rem;
	font-weight: 600;
	overflow: visible;
}

.svc-comments-list {
  max-height: 70vh;
  overflow-y: auto;
	overflow-x: visible;
  padding-right: 0.25rem;
}

.svc-comment-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 8px;
	background: #121212;
border-radius: 16px;
	color: #ffffff;
	align-items: center;
  justify-content: center;
	margin: 0.3rem;
	
}

.svc-comment-item:last-child {
  border-bottom: none;
}

.svc-time-jump {
  height: 26px;
  border-radius: 999px;
  border: none;
  padding: 0 12px;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  cursor: pointer;
font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #FF48E5;
}

.svc-time-jump:hover {
  outline: 2px solid #333;
  outline-offset: 2px;
}

.svc-comment-body {
  flex: 1;
  min-width: 0;
}

.svc-comment-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
	opacity: 0.5;
  margin-bottom: 0.15rem;
}

.svc-comment-text {
  font-size: 0.9rem;
  color: #ffffff;
  word-wrap: break-word;
}

.svc-no-comments {
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 880px) {
  .svc-main {
    flex-direction: column;
  }

  .svc-comments-panel {
    padding-left: 0;
    padding-top: 1rem;
	  flex: 0;
	  width: 100%;
  }

  .svc-wrapper {
    padding: 0.5rem;
  }
	
	.svc-header-left{
	display: flex;
	justify-content: space-between;
}
	
	
}

/* ===== Fullscreen mode overrides ===== */

body.svc-fullscreen-body {
  margin: 0;
  padding: 0;
  background: #000;
}

body.svc-fullscreen-body .svc-page-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  box-sizing: border-box;
}

/* Let the wrapper use full width/height in fullscreen */
body.svc-fullscreen-body .svc-wrapper {
  max-width: 100%;
  margin: 0;
  padding: 1rem;
  height: 100vh;
  box-sizing: border-box;
}

body.svc-fullscreen-body .svc-main {
  height: 100%;
}

/* Make the video area grow nicely on the left */
body.svc-fullscreen-body .svc-video-area {
  display: flex;
  flex-direction: column;
}

/* Let the video fill vertical space more in fullscreen */
body.svc-fullscreen-body .svc-video-player {
  flex: 1;
  width: 100%;
  height: 100%;
  max-height: none;
}

/* On small screens we still stack but stay full height */
@media (max-width: 880px) {
  body.svc-fullscreen-body .svc-wrapper {
    padding: 0.5rem;
  }

  body.svc-fullscreen-body .svc-main {
    flex-direction: column;
  }
	
	
.svc-header{
	display: flex;
	flex-direction: column;
	justify-content: start;
	width: 100%;
	height: fit-content;
	color: #bbbbbb;
	gap: 0;
}
}

/* Wrap video so we can put a click layer on top */
.svc-video-click-wrap {
  position: relative;
  width: 100%;
}

/* Make video block-level so the wrapper size is predictable */
.svc-video-player {
  width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  display: block;
  background: #000;
}

/* Transparent layer used to capture clicks for comments
   We leave some space at the bottom so native controls are still clickable */
.svc-video-click-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 60px; /* approximate controls height; adjust if needed */
  cursor: pointer; /* comment "button" */
}

/* If you want a custom comment cursor icon: */
/*
.svc-video-click-layer {
  cursor: url('https://your-site.com/path/to/comment-cursor.png') 16 16, pointer;
}
*/

@media (max-width: 600px) {
  .svc-video-click-layer {
    bottom: 68px; /* a bit more space for taller mobile controls */
  }
}


.svc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  gap: 0.75rem;
  flex-wrap: wrap;

	background: #121212;
	padding: 8px;
}

wp-heading-inline {
	
}

@media (max-width: 768px) {
	.svc-controls {

	padding: 16px 0;
flex-direction: row;
	}
}

.svc-controls-left {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.svc-toggle-comments {

  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  background: transparent;
	padding: 4px;
margin: 0px;
}

.svc-toggle-comments:hover {
  background: #333;
}

/* When comments are collapsed, hide panel and let video grow */
.svc-wrapper.svc-comments-collapsed .svc-comments-panel {
  display: none;
}

.svc-wrapper.svc-comments-collapsed .svc-main {
  gap: 0.5rem;
}

.svc-wrapper.svc-comments-collapsed .svc-video-area {
  flex: 1 1 100%;
}

/* ===== Comment overlay – desktop side panel + mobile bottom sheet ===== */

.svc-comment-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;             /* JS shows/hides with fadeIn/fadeOut */
  background: rgba(0, 0, 0, 0.45);
  box-sizing: border-box;

  /* Desktop default: right-side panel */
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.svc-comment-overlay-inner {
  background: #ffffff;
  color: #111827;
  width: 600px;
  max-width: 90vw;
  height: 100vh;
  box-sizing: border-box;
  padding: 1.25rem 1.25rem 1.5rem;
	margin: 1rem;
  border-radius: 0;
  box-shadow: -8px 0 30px rgba(0,0,0,0.20);
  border-left: 1px solid rgba(15,23,42,0.08);

  display: flex;
  flex-direction: column;

  /* ---- ANIMATION START (desktop) ---- */
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), opacity 0.35s ease;
}

.svc-comment-overlay.svc-open .svc-comment-overlay-inner {
  transform: translateX(0);
  opacity: 1;
}

/* Forms inside */
.svc-comment-overlay .svc-comment-form {
  display: block !important;
  flex: 1 1 auto;
}

.svc-comment-overlay .svc-field {
  margin-bottom: .75rem;
}

.svc-comment-overlay .svc-field label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: .25rem;
}

.svc-comment-overlay input[type="text"],
.svc-comment-overlay textarea {
  width: 100%;
  box-sizing: border-box;
  padding: .45rem .6rem;
  border-radius: 6px;
  border: 1px solid #d1d5db;
}

.svc-comment-overlay textarea {
  resize: vertical;
  min-height: 80px;
}

.svc-comment-overlay .svc-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
  margin-top: .75rem;
}

.svc-comment-overlay .svc-submit-comment {
  padding: .45rem 1rem;
  border-radius: 999px;
  background: #1f6feb;
  color: #fff;
  border: none;
  cursor: pointer;
}

.svc-comment-overlay .svc-cancel-comment {
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  cursor: pointer;
}

.svc-comment-overlay .svc-message {
  margin-top: .5rem;
  font-size: .85rem;
}

.comments-button-area{
	display: flex;
	align-items: center;
}
/* ===== Mobile – bottom sheet animation ===== */
@media (max-width: 860px) {
	.comments-button-area{
		display: none;
		
	}
	.svc-header p{
		text-align: center;
	}
  .svc-comment-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: 0;
  }

  .svc-comment-overlay-inner {
    width: 100%;
    max-width: 100%;
    height: 55vh;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -12px 35px rgba(0,0,0,.35);
    border-left: none;
    padding: 1rem 1rem 1.25rem;

    /* ---- ANIMATION START (mobile) ---- */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.25,.8,.25,1), opacity 0.35s ease;
  }

  .svc-comment-overlay.svc-open .svc-comment-overlay-inner {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================
   Standalone "Error" / Password pages
   ============================ */

.svc-standalone-box {
  width: 100vw;
  height: 100vh;
  background: #010101;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.svc-standalone-inner {
  background: #121212;
  padding: 2rem 2rem 2.5rem;
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  color: #bbbbbb;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.svc-password-wrapper{
	color: #fff;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	background: #121212;
	border-radius: 32px;
	padding: 32px;
	justify-content: flex-start;
}

.svc-password-logo{
	display: block;
	text-align: left;
	height: fit-content;
	margin: 0;
	padding: 0;
}

.svc-standalone-title {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.svc-standalone-desc {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 1.5rem;
}

/* Password form */
.svc-password-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.svc-password-input {
  width: 100%;
	max-width: 300px;
  padding: 16px;
  border-radius: 32px;
  background: #0a0a0a;
  border: 1px solid #333;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
	margin: 0 auto;
}

.svc-password-submit {
  padding: 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(to top right, #FF48E5 0%, #FF9E0E 100%);
  color: #0C0054;
	width: 100%;
		max-width: 300px;
	margin: 0 auto;
}

.svc-password-submit:hover {
  opacity: 0.85;
}

.svc-password-error {
  color: #ff6b6b;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .svc-standalone-inner {
    padding: 1.5rem 1.25rem 2rem;
    max-width: 90%;
  }
}

/* ===== Image review pins ===== */

.svc-image-area-inner {
  margin-top: 1rem;
}

.svc-image-click-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.svc-review-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  background: #000;
}

.svc-image-pin-layer {
  position: absolute;
  inset: 0;
  pointer-events: none; /* let clicks hit image; we handle pin clicks separately */
}

.svc-image-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  border: 4px solid #FF44ee;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.svc-image-pin span {

  border-radius: 999px;
  background: transparent;
	text-align: center;
	
}

.svc-image-pin:hover {
  border-color: #FF48E5;
}

/* Highlight when linked from list */
.svc-pin-highlight {
  box-shadow: 0 0 0 4px rgba(255, 72, 229, 0.5);
}

/* Highlight comment item when pin clicked */
.svc-comment-highlight {
  outline: 2px solid #FF44EE;
  outline-offset: 2px;
}

.svc-toggle-comments-icon {
  width: 30px;
  height: 30px;
  display: block;
}
/* ===== Image review pins (numbered) ===== */

.svc-image-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0,0,0,0.85);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.svc-pin-number {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #FF48E5;
}

/* Highlight when linked from list */
.svc-pin-highlight {
  box-shadow: 0 0 0 4px rgba(255, 72, 229, 0.5);
}

/* ===== Comments list numbered badges ===== */

.svc-spot-jump {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: none;
  padding: 0;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  cursor: pointer;
}

.svc-spot-badge-number {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #FF48E5;
}

.svc-spot-jump:hover {
  outline: 2px solid #333;
  outline-offset: 2px;
}

/* Highlight comment item when pin or badge is clicked */
.svc-comment-highlight {
  outline: 2px solid #FF44EE;
  outline-offset: 2px;
}

/* ===== Image hotspot comment bubble ===== */

.svc-comment-bubble {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -100%);
  background: rgba(5, 5, 10, 0.95);
  color: #ffffff;
  border-radius: 10px;
  padding: 6px 8px;
  min-width: 140px;
  max-width: 260px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  z-index: 1999;
  font-size: 11px;
}

.svc-comment-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: rgba(5, 5, 10, 0.95) transparent transparent transparent;
}

.svc-comment-bubble-author {
  font-weight: 600;
  font-size: 11px;
  margin-bottom: 2px;
  opacity: 0.8;
}

.svc-comment-bubble-text {
  font-size: 11px;
  line-height: 1.4;
}
