* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0f1e3a;
  color: #e6dcc8;
}

.movie-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

.movie-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.movie-header button {
  background: none;
  border: none;
  color: #f6dcac;
  font-size: 1.4rem;
  cursor: pointer;
}

.movie-header h1 {
  font-size: 1.4rem;
  font-weight: 600;
}

.movie-header p {
  font-size: 0.9rem;
  color: #faa968;
}

.movie-info {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}

.movie-info img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stats {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.stats span {
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  opacity: 0.8;
}

.tabs {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(246, 220, 172, 0.2);
  margin-bottom: 16px;
}

.tabs button {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #faa968;
  cursor: pointer;
}

.tabs button.active {
  color: #f6dcac;
  border-bottom: 2px solid #f85525;
}

.content-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.video-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  align-items: center;
}

.video-embed {
  width: 260px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-meta {
  display: flex;
  flex-direction: column;
}

.video-meta h4 {
  margin: 0;
  font-size: 1rem;
  color: #f6dcac;
}

.video-creator {
  font-size: 0.75rem;
  color: #faa968;
  margin-top: 6px;
}

.video-description {
  margin-top: 4px;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.85;
}
.input-group input::placeholder {
  color: #faa968;
  opacity: 0.7;
}
.review-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
}

.review-card h4 {
  color: #f2e6cf;
  margin-bottom: 6px;
}

.review-excerpt {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-top: 10px;
  white-space: pre-wrap;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.post-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
}

.post-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.post-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f6dcac;
}

.post-handle {
  font-size: 0.75rem;
  color: rgba(230, 220, 200, 0.45);
}

.post-rating {
  font-size: 0.85rem;
  margin-top: 2px;
}

.post-footer {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.like-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: rgba(230, 220, 200, 0.5);
  font-family: inherit;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.like-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(230, 220, 200, 0.8);
}

.like-btn.liked {
  color: #e05252;
  border-color: rgba(224, 82, 82, 0.35);
  background: rgba(224, 82, 82, 0.08);
}

.like-count-static {
  font-size: 0.8rem;
  color: rgba(230, 220, 200, 0.35);
}

.review-author {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: #faa968;
}
.review-card h4,
.video-meta h4,
#movieTitle {
  color: #f6c177;
  font-weight: 600;
}

.theory-body.collapsed {
  display: none;
}
.spoiler-pill {
  display: inline-block;
  margin: 8px 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(246, 220, 172, 0.15);
  color: #f6dcac;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.spoiler-pill:hover {
  background: rgba(246, 220, 172, 0.25);
}

.spoiler-pill:active {
  transform: scale(0.96);
}

.post-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.spoiler-toggle-btn {
  background: none;
  border: 1px solid rgba(224, 82, 82, 0.35);
  border-radius: 999px;
  color: rgba(224, 82, 82, 0.5);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: inherit;
  padding: 6px 14px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.spoiler-toggle-btn:hover {
  background: rgba(224, 82, 82, 0.08);
  color: #e05252;
  border-color: rgba(224, 82, 82, 0.6);
}

.spoiler-toggle-active {
  background: rgba(224, 82, 82, 0.15);
  color: #e05252;
  border-color: #e05252;
}

.spoiler-wrap {
  position: relative;
  margin: 6px 0;
}

.spoiler-blurred {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

.spoiler-reveal-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  background: rgba(15, 30, 58, 0.5);
  border: none;
  color: #f6dcac;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  font-family: inherit;
}

.videos-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}
.video-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.video-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f6dcac;
  line-height: 1.4;
}
.video-item p {
  font-size: 0.85rem;
  color: #faa968;
  margin-bottom: 12px;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: none;
}
#movieRating {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #f6dcac;
}

#movieCredits {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credits-line {
  font-size: 0.85rem;
  color: rgba(230, 220, 200, 0.7);
}

.credits-label {
  color: #f6dcac;
  font-weight: 600;
  margin-right: 4px;
}

.movie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.list-picker-wrap {
  position: relative;
}

.add-to-list-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 7px 16px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}

.add-to-list-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.list-picker {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: #0f1e3a;
  border: 1px solid rgba(246, 220, 172, 0.15);
  border-radius: 12px;
  padding: 6px;
  z-index: 50;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.list-picker.open {
  display: block;
}

.list-picker-item {
  display: block;
  width: 100%;
  padding: 9px 12px;
  background: none;
  border: none;
  border-radius: 8px;
  color: #e6dcc8;
  font-size: 0.875rem;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease;
}

.list-picker-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.list-picker-item.in-list {
  color: #f6dcac;
}

.favourite-btn {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  padding: 6px 18px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.favourite-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.favourite-btn.favourited {
  color: #e05252;
  border-color: rgba(224, 82, 82, 0.4);
  background: rgba(224, 82, 82, 0.1);
}

.favourite-btn:active {
  transform: scale(0.93);
}

.video-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.video-item:active {
  transform: translateY(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.video-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
}

.video-item iframe {
  width: auto;
  height: auto;
  border: none;
  border-radius: 12px;

  transform: scale(1.03);
}

.tab-section {
  position: relative;
  padding-top: 8px;
}

.tab-section.locked .post-form,
.tab-section.locked .posts-list {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.gate-overlay {
  display: none;
}

.tab-section.locked .gate-overlay {
  display: flex;
  position: absolute;
  inset: 0;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(15, 30, 58, 0.55);
  backdrop-filter: blur(2px);
  border-radius: 14px;
}

.gate-overlay p {
  color: #e6dcc8;
  font-size: 1rem;
  text-align: center;
}

.gate-btn {
  display: inline-block;
  padding: 10px 32px;
  background: linear-gradient(135deg, #f6dcac, #faa968);
  color: #0f1e3a;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gate-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.post-form {
  margin-bottom: 24px;
}

.post-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 220, 172, 0.2);
  border-radius: 14px;
  color: #e6dcc8;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color 0.15s ease;
}

.post-form textarea:focus {
  border-color: rgba(246, 220, 172, 0.5);
}

.post-form textarea::placeholder {
  color: rgba(230, 220, 200, 0.45);
}

.post-form button[type="submit"] {
  margin-top: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #f6dcac, #faa968);
  color: #0f1e3a;
  border: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.post-form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.post-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.posts-list {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.muted {
  font-size: 0.95rem;
  opacity: 0.6;
  font-style: italic;
}

.rating-wrap {
  margin-top: 16px;
}

.rating-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(246, 220, 172, 0.55);
  margin-bottom: 6px;
}

.clap-row {
  display: flex;
  gap: 4px;
}

.clap {
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.2;
  transition: opacity 0.1s ease, transform 0.1s ease;
  user-select: none;
  line-height: 1;
}

.clap.active {
  opacity: 1;
}

.clap.half {
  opacity: 1;
  -webkit-mask-image: linear-gradient(to right, black 50%, rgba(0,0,0,0.2) 50%);
  mask-image: linear-gradient(to right, black 50%, rgba(0,0,0,0.2) 50%);
}

.clap:active {
  transform: scale(0.85);
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 12px;
  color: rgba(240, 230, 200, 0.35);
  font-size: 0.75rem;
}

.modal-divider::before,
.modal-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.share-external-row {
  display: flex;
  gap: 8px;
}

.share-external-btn {
  flex: 1;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #e6dcc8;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s ease;
}

.share-external-btn:hover {
  background: rgba(255, 255, 255, 0.09);
}

.watchlist-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 7px 16px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.watchlist-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.watchlist-btn.in-watchlist {
  background: rgba(246, 220, 172, 0.12);
  border-color: rgba(246, 220, 172, 0.35);
  color: #f6dcac;
}

.recommend-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 7px 16px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}

.recommend-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-box {
  background: #0f1e3a;
  border: 1px solid rgba(246, 220, 172, 0.15);
  border-radius: 18px;
  padding: 28px 24px 24px;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(240, 230, 200, 0.5);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 6px;
  transition: color 0.12s;
}

.modal-close:hover {
  color: #fff;
}

.modal-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f6dcac;
  margin-bottom: 16px;
}

.friend-picker {
  position: relative;
  margin-bottom: 14px;
}

.selected-friend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.selected-friend-tags:empty {
  margin-bottom: 0;
}

.selected-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(246, 220, 172, 0.12);
  border: 1px solid rgba(246, 220, 172, 0.3);
  border-radius: 20px;
  padding: 4px 8px 4px 10px;
  font-size: 0.8rem;
  color: #f0e6c8;
}

.selected-tag-remove {
  background: none;
  border: none;
  color: rgba(240, 230, 200, 0.55);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.12s;
}

.selected-tag-remove:hover {
  color: #e05252;
}

.friend-search-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(246, 220, 172, 0.2);
  border-radius: 12px;
  color: #e6dcc8;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
}

.friend-search-input:focus {
  border-color: rgba(246, 220, 172, 0.5);
}

.friend-search-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.friend-search-input::placeholder {
  color: rgba(230, 220, 200, 0.4);
}

.friend-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #14233b;
  border: 1px solid rgba(246, 220, 172, 0.2);
  border-radius: 10px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.friend-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.1s;
}

.friend-option:hover {
  background: rgba(255, 255, 255, 0.07);
}

.friend-option-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f0e6c8;
}

.friend-option-handle {
  font-size: 0.75rem;
  color: rgba(240, 230, 200, 0.5);
}

.friend-option-empty {
  padding: 10px 14px;
  font-size: 0.85rem;
  color: rgba(240, 230, 200, 0.4);
  font-style: italic;
}

.rec-loading {
  font-size: 0.85rem;
  color: rgba(240, 230, 200, 0.5);
  font-style: italic;
}

.recommend-msg {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 220, 172, 0.15);
  border-radius: 10px;
  color: #e6dcc8;
  font-size: 0.875rem;
  font-family: inherit;
  resize: none;
  height: 72px;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.15s;
}

.recommend-msg:focus {
  border-color: rgba(246, 220, 172, 0.4);
}

.recommend-msg::placeholder {
  color: rgba(230, 220, 200, 0.4);
}

.recommend-send-btn {
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, #f6dcac, #faa968);
  color: #0f1e3a;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.recommend-send-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.recommend-send-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.recommend-feedback {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 10px;
  min-height: 18px;
}

.share-btn {
  background: none;
  border: none;
  color: #a09070;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s, background 0.15s;
}

.share-btn:hover {
  color: #e6dcc8;
  background: rgba(255, 255, 255, 0.07);
}

@keyframes highlight-fade {
  0%   { box-shadow: 0 0 0 2px #f6dcac; }
  100% { box-shadow: 0 0 0 2px transparent; }
}

.post-highlighted {
  border-radius: 12px;
  animation: highlight-fade 2.5s ease forwards;
}

.login-to-post {
  font-size: 0.875rem;
  color: rgba(230, 220, 200, 0.5);
  margin-bottom: 16px;
}

.login-to-post a,
.reply-login a {
  color: #f6dcac;
  text-decoration: none;
}

.login-to-post a:hover,
.reply-login a:hover {
  text-decoration: underline;
}

.reply-login {
  font-size: 0.8rem;
  color: rgba(230, 220, 200, 0.45);
  margin-top: 8px;
  padding-left: 2px;
}

.post-author-link,
.reply-author-link {
  text-decoration: none;
  color: inherit;
}

.post-author-link:hover .post-name,
.post-author-link:hover img,
.reply-author-link:hover .reply-name,
.reply-author-link:hover img {
  opacity: 0.8;
}

a.post-name,
a.reply-name {
  cursor: pointer;
  transition: opacity 0.12s;
}

a.post-name:hover,
a.reply-name:hover {
  opacity: 0.75;
}

.post-body-clickable {
  cursor: pointer;
}

.replies-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #a09070;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: inherit;
  margin-left: 4px;
  transition: color 0.15s, background 0.15s;
}

.replies-toggle:hover {
  color: #e6dcc8;
  background: rgba(255, 255, 255, 0.07);
}

.reply-count-badge {
  font-size: 0.75rem;
}

.replies-section {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
}

.reply-card {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.reply-card:last-child {
  border-bottom: none;
}

.reply-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.reply-avatar {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
}

.reply-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.reply-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #f6dcac;
}

.reply-handle {
  font-size: 0.7rem;
  color: rgba(230, 220, 200, 0.4);
}

.reply-body {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.9;
  padding-left: 34px;
}

.reply-empty {
  font-size: 0.85rem;
  padding: 4px 0;
}

.reply-form {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  margin-top: 10px;
}

.reply-input {
  flex: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 220, 172, 0.15);
  border-radius: 10px;
  color: #e6dcc8;
  font-size: 0.85rem;
  font-family: inherit;
  resize: none;
  outline: none;
  transition: border-color 0.15s;
}

.reply-input:focus {
  border-color: rgba(246, 220, 172, 0.4);
}

.reply-input::placeholder {
  color: rgba(230, 220, 200, 0.4);
}

.reply-submit {
  padding: 8px 16px;
  background: rgba(246, 220, 172, 0.12);
  border: 1px solid rgba(246, 220, 172, 0.2);
  border-radius: 999px;
  color: #f6dcac;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.reply-submit:hover:not(:disabled) {
  background: rgba(246, 220, 172, 0.2);
}

.reply-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .movie-wrapper {
    padding: 16px 16px 32px;
    padding-top: 70px;
  }

  .movie-info {
    grid-template-columns: 130px 1fr;
    gap: 14px;
  }

  .movie-info img {
    width: 130px;
    height: 195px;
  }

  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
  }

  .tabs button {
    white-space: nowrap;
    font-size: 0.85rem;
  }

  .movie-header h1 {
    font-size: 1.1rem;
  }

  .video-item iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }
}

.shared-post-preview {
  background: rgba(246, 220, 172, 0.06);
  border-left: 3px solid rgba(246, 220, 172, 0.4);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.shared-post-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(246, 220, 172, 0.55);
  display: block;
  margin-bottom: 5px;
}

.shared-post-excerpt {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(230, 220, 200, 0.8);
  margin: 0;
  white-space: pre-wrap;
}
