body {
  margin: 0;
  color: var(--text-color);
  background-color: var(--gray-1);
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.post-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem;
  color: var(--primary-color);
  background-color: var(--gray-1);
}

.post-container {
  width: 100%;
  max-width: 875px;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

.post-content {
  width: 100%;
}

.loading-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--gray-600);
  font-size: 1.1rem;
}

/* Social Media Player Styles - Modern Card Design */
.post-social-player {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.creator-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.creator-link:hover {
  color: var(--primary-color);
}

.creator-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color-light);
}

.creator-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.creator-handle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-left: 0.5rem;
}

/* Platform Badge */
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color-light);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: auto;
}

.platform-icon {
  width: 16px;
  height: 16px;
}

/* Social Media Content */
.social-content {
  margin-bottom: 1rem;
}

.social-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.social-media-embed {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* Post Stats */
.post-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.stat-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.post-ad-container {
  display: flex;
  justify-content: center;
  min-height: 90px;
  max-width: 728px;
  position: relative;
  text-align: center;
  align-items: center;
}

.post-ad-container ins {
  display: block !important;
  max-width: 100%;
  position: relative;
}

.post-nsfw-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.post-nsfw-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-nsfw-slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 40px;
  top: 0.15rem;
  left: 3px;
  background: radial-gradient(circle, var(--primary-color-light), var(--primary-color));
  border-radius: 15px;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.post-nsfw-toggle input:checked+.post-nsfw-slider:before {
  transform: translateX(44px);
}

.post-nsfw-text {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--gray-1);
  z-index: 3;
  position: absolute;
  transition: all 0.3s ease;
  width: 50%;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.post-nsfw-text.normal {
  left: 0;
}

.post-nsfw-text.nsfw {
  right: 0;
}

.post-nsfw-toggle input:checked+.post-nsfw-slider .post-nsfw-text.normal {
  color: rgba(255, 255, 255, 0.5);
  transform: scale(0.9);
}

.post-nsfw-toggle input:checked+.post-nsfw-slider .post-nsfw-text.nsfw {
  color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.post-nsfw-toggle input:not(:checked)+.post-nsfw-slider .post-nsfw-text.normal {
  color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.post-nsfw-toggle input:not(:checked)+.post-nsfw-slider .post-nsfw-text.nsfw {
  color: rgba(255, 255, 255, 1);
  transform: scale(0.9);
}

/* Individual Post Styles - Based on feed.css */
.social-post {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: none;
  border: none;
  margin-bottom: 3rem;
  position: relative;
}

.social-post:hover {
  box-shadow: none;
}

/* Social Media Post Header */
.social-post-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.social-post-platform {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.social-post-platform-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.social-post-author {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-left: auto;
}

/* Social Media Post Content */
.social-post-content {
  margin-bottom: 1.5rem;
}

.social-post-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16/9;
  background: var(--background-dark);
}

.social-post-media img,
.social-post-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Social Media Post Stats */
.social-post-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.social-post-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-post-stat-icon {
  width: 16px;
  height: 16px;
}

/* Social Media Post Date */
.social-post-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gray-1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  z-index: 5;
  margin-left: auto;
}

/* Creator Name */
.creator-name-container {
  margin-bottom: 1rem;
}

.creator-name-link {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.creator-name-link:hover {
  color: var(--anchor-color);
}

.creator-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--gray-800);
}

/* Error message styling */
.error-message {
  text-align: center;
  padding: 2rem;
  color: var(--primary-color);
  font-size: 1.1rem;
  background: var(--gray-50);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

/* Large Social Player Styles */
.large-social-player {
  background: var(--card-background);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.social-player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--header-background);
  border-bottom: 1px solid var(--border-color);
}

.social-platform-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-icon {
  font-size: 18px;
}

.platform-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.social-video-player {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  background-color: var(--video-player-bg);
}

.social-video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--background-dark);
  cursor: pointer;
  aspect-ratio: 16/9;
}

.social-video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 1;
}

.social-video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--gray-1);
  padding: 40px 20px 20px;
  font-size: 16px;
  font-weight: 600;
}

.social-image-container {
  position: relative;
  padding: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--background-dark);
}

.social-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 1;
}

.social-post-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}

.social-post-image:not([style*="aspect-ratio: 16/9"]) {
  object-fit: contain;
}

/* Platform-specific styling */
.large-social-player.platform-youtube {
  border-left: 4px solid #ff0000;
}

.large-social-player.platform-instagram {
  border-left: 4px solid #FFD600;
}

.large-social-player.platform-tiktok {
  border-left: 4px solid #25F4EE;
}

.large-social-player.platform-x,
.large-social-player.platform-twitter {
  border-left: 4px solid #0f1419;
}





.social-text-close {
  width: 24px;
  height: 24px;
  border: none;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.social-text-disable-all {
  padding: 4px 8px;
  border: none;
  background: var(--accent-color);
  color: var(--gray-1);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.social-text-close:hover {
  transform: scale(1.1);
}

.social-text-close:active {
  transform: scale(0.95);
}

.social-text-disable-all:hover {
  background: var(--accent-color-dark);
  transform: scale(1.05);
}

.social-text-disable-all:active {
  transform: scale(0.95);
}

/* Creator Info - Professional Card Design */
.creator-info {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(var(--gray-10-rgb), 0.3);
  backdrop-filter: blur(2px);
  border-radius: 32px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: calc(100% - 48px);
  cursor: pointer;
  margin-bottom: 0;
  border-bottom: none;
  margin: 0;
  border: none;
  text-decoration: none;
  color: inherit;
}

.creator-info:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.creator-info:hover .creator-details {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.creator-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.creator-post-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  transition: border-color 0.3s ease;
}

.creator-info:hover .creator-post-image {
  border-color: var(--accent-color);
}

.creator-details {
  flex: 1;
  min-width: 0;
  display: none;
}

.creator-info:hover .creator-details {
  display: block;
  animation: slideInFade 0.3s ease forwards;
}

@keyframes slideInFade {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern Post Container */
.feed-post {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Post NSFW Toggle - Repositioned below social post */
.post-nsfw-container {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) scale(1.2);
  z-index: 10;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1px;
}

/* NSFW Content Visibility Controls */
.nsfw-hidden {
  display: none !important;
}

.nsfw-sliding {
  display: block !important;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(0);
  animation: slideDown 0.3s ease-in-out;
  animation-fill-mode: both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.nsfw-sliding-out {
  display: block !important;
  animation: slideUp 0.3s ease-in-out both;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}

/* NSFW Content Visibility Controls */
.nsfw-hidden {
  display: none !important;
}

.nsfw-sliding {
  display: block !important;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(0);
  animation: slideDown 0.3s ease-in-out;
  animation-fill-mode: both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.nsfw-sliding-out {
  display: block !important;
  animation: slideUp 0.3s ease-in-out both;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}

/* Base state - visually hidden but animation-ready */
.post-exclusive-section:not(.nsfw-sliding):not(.nsfw-sliding-out) {
  display: none;
}

.post-exclusive-section {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  margin-top: 0;
  /* Start with hidden state but allow animations to override */
  padding: 1.5rem 1.5rem 0 1.5rem;
  overflow: hidden;
}

/* Post Actions Grid (replaces first video) */
.post-actions-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  aspect-ratio: 16/9;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  margin: 0 auto;
  height: 100%;
}

/* When only one button (no videos), center it and make it larger */
.post-actions-grid:has(.btn:only-child) {
  justify-content: center;
}

.post-actions-grid:has(.btn:only-child) .btn {
  flex: none;
  min-height: 60px;
  padding: 1.5rem 1.8rem;
  font-size: 1rem;
}

.post-actions-grid .btn {
  font-size: 1.1rem;
  padding: 1rem 1.2rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 8px;
  width: 100%;
  flex: 1;
}

/* Exclusive Content Grid */
.exclusive-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.exclusive-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--primary-color-darkest);
}

.exclusive-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.exclusive-thumbnail img,
.exclusive-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exclusive-thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding-left: 2px;
  transition: all 0.3s ease;
}

.exclusive-thumbnail:hover .play-icon {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.exclusive-thumbnail .duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gray-1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
}

/* Creator Name and Date Styles */
.post-creator-name {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.creator-name-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.creator-name-link:hover {
  color: var(--primary-color);
}

.post-date {
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}



/* NSFW Animation Classes */
.nsfw-hidden {
  display: none !important;
}

.nsfw-sliding {
  animation: slideInFade 0.3s ease-out forwards;
}

.nsfw-sliding-out {
  animation: slideOutFade 0.3s ease-in forwards;
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px;
  }
}

@keyframes slideOutFade {
  from {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px;
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
  }
}

.post-nsfw-toggle {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 36px;
  cursor: pointer;
}

.post-nsfw-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}



/* Post Actions Grid Button Styles */
.post-actions-grid .btn-icon {
  width: 24px;
  height: 24px;
}

.post-actions-grid .btn span {
  font-size: 1rem;
  font-weight: 500;
}

/* Modern Grid Layout - 8 items */
.post-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 0;
}

/* Video Grid Styles - Consolidated */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.post-video-thumbnail,
.video-thumbnail,
.media-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--primary-color-darkest);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Remove cursor pointer from image thumbnails since they're not clickable */
.image-thumbnail {
  cursor: default;
}

.video-thumbnail {
  width: 100%;
}

.post-video-thumbnail:hover,
.video-thumbnail:hover,
.media-thumbnail:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-video-thumbnail img,
.post-video-thumbnail video,
.video-thumbnail img,
.video-thumbnail video,
.media-thumbnail img,
.media-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.post-video-thumbnail .play-icon,
.video-thumbnail .play-icon,
.media-thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 4px;
  transition: all 0.3s ease;
}

.post-video-thumbnail:hover .play-icon,
.video-thumbnail:hover .play-icon,
.media-thumbnail:hover .play-icon {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.post-video-thumbnail .duration,
.video-thumbnail .duration,
.media-thumbnail .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gray-1);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.post-video-thumbnail .nsfw-badge,
.video-thumbnail .nsfw-badge,
.media-thumbnail .nsfw-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gray-1);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* Video actions styling - Vertical stacked layout */
.post-video-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

.post-video-actions-buttons {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  order: 1;
}

.post-video-actions-ad {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: auto; /* Allow container to collapse when empty */
  order: 2;
}

.post-video-actions-ad ins {
  width: 100%;
  height: auto;
  display: block;
}

.view-all-btn,
.randomize-btn {
  /* Remove custom styles to use base.css btn-primary and btn-secondary */
}

.btn-icon {
  font-size: 0.7rem;
}

/* Grid Video Player Styles */
.grid-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Exclusive Content Section - Merged with feed-post container */
.post-exclusive-section h3 {
  margin: 0 0 1rem 0;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
}

.post-exclusive-section p {
  margin: 0 0 1rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Exclusive thumbnail title styling */
.exclusive-thumbnail .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--gray-1);
  padding: 20px 8px 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  background: var(--card-background);
}

/* Responsive design */
@media (max-width: 768px) {
  .post-container {
    padding: 1rem;
    margin: 1rem;
  }

  .post-wrapper {
    padding: 1rem;
  }

  .social-post-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .post-social-player {
    padding: 1rem;
    border-radius: 12px;
  }

  .creator-info {
    top: 8px;
    left: 8px;
    padding: 8px 12px;
    gap: 8px;
  }

  .creator-avatar {
    width: 40px;
    height: 40px;
  }

  .creator-name {
    font-size: 1rem;
  }

  .post-stats {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .creator-post-image {
    width: 32px;
    height: 32px;
  }

  .social-text-close {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }

  .social-text-disable-all {
    padding: 3px 6px;
    font-size: 9px;
  }

  .post-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-actions-grid {
    max-width: none;
  }

  .post-video-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .post-video-actions-ad {
    justify-content: center;
  }

  .post-video-actions-buttons {
    justify-content: center;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-nsfw-container {
    bottom: -10px;
    transform: translateX(-50%) scale(1.1);
  }
}

@media (max-width: 480px) {
  .post-nsfw-container {
    bottom: -14px;
    transform: translateX(-50%) scale(1.0);
  }

  .post-social-player {
    padding: 0.75rem;
    border-radius: 8px;
  }

  .creator-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .platform-badge {
    margin-left: 0;
    align-self: flex-end;
  }

  .post-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .post-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-video-thumbnail .play-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .post-actions-grid {
    padding: 0.75rem;
  }

  .post-actions-grid:has(.btn:only-child) .btn {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
  }

  .post-actions-grid .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .post-actions-grid .btn-icon {
    width: 20px;
    height: 20px;
  }

  .post-actions-grid .btn span {
    font-size: 0.9rem;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .post-videos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .post-video-actions {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .view-all-btn,
  .randomize-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}