.bottom-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.1s linear;
  z-index: 1000;
}
.bottom-sheet.show {
  opacity: 1;
  pointer-events: auto;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #000;
}
.bottom-sheet .content {
  width: 100%;
  position: relative;
  background: #fff;
  max-height: 100vh;
  height: 50vh;
  padding: 25px 30px;
  transform: translateY(100%);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
  transition: 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bottom-sheet.show .content{
  transform: translateY(0%);
}
.bottom-sheet.dragging .content {
  transition: none;
}
.bottom-sheet.fullscreen .content {
  border-radius: 0;
  overflow-y: hidden;
}
.bottom-sheet .header {
  display: flex;
  justify-content: center;
  cursor: grab;
  user-select: none;
  padding: 15px 0;
  margin: -15px 0;
  width: 100%;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 50em;
}
.header .drag-icon {
  cursor: grab;
  user-select: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -10px;
  left: 0;
  height: 50px;
}
.header .drag-icon span {
  height: 5px;
  width: 60px;
  display: block;
  background: #C7D0E1;
  border-radius: 50px;
}
.bottom-sheet .body {
  height: 100%;
  overflow-y: auto;
  padding: 15px 0 40px;
  scrollbar-width: none;
  margin-top: -15px;
  width: 100%;
  max-width: 50em;
}

.bottom-sheet .body::-webkit-scrollbar {
  width: 0;
}

.header-content {
  display: flex;
  /*justify-content: space-between;
  align-items: flex-start;*/
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
}

.header-content h2 {
  margin: 0;
  flex: 1;
  padding-right: 15px;
}

.rating-container {
  flex-shrink: 0;
}

.rating-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  /*text-align: center;*/
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  min-width: 60px;
  font-family: inherit;
}

.rating-text {
  display: block;
  font-size: 10px;
  margin-bottom: 2px;
  opacity: 0.9;
}

.rating-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.rating-box[data-rating="0"] { background: #313332; }
.rating-box[data-rating="1"] { background: #CE292A; }
.rating-box[data-rating="2"] { background: #FFCC33; }
.rating-box[data-rating="3"] { background: #A1E41B; }
.rating-box[data-rating="4"] { background: #03C03C; }

.location-address {
  margin: 8px 0 15px 0;
}

.address-link {
  display: flex;
  align-items: center;
  color: #007bff;
  transition: color 0.3s ease;
  padding: 5px 0;
}

.address-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.video-container {
  margin: 15px 0;
  border-radius: 8px;
  overflow: hidden;
  /*box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
}

#player {
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
}

#player iframe {
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
}

.video-info {
  display: flex;
  align-items: center;
  margin-top: 8px;
  padding: 0 5px;
}

.video-date {
  font-size: 12px;
  color: #666;
  font-family: Roboto, sans-serif;
  margin: 0;
}