.video-container {
    width: 100%;
    padding: 3rem 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .video-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .video-player {
    position: relative;
    background-color: var(--video-player-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  .video-player iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  
  /* Loading indicator */
  .loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--gray-10);
  }
  
  .spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ff8dff;
    animation: spin 1s ease-in-out infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* Error message */
  .error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--gray-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
  }
  
  .error-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

  .secreto-models {
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    padding: 3rem 0;
    background-color: var(--accent-color-10);
    background-image: url('/static/img/texture-stardust.png');
    background-repeat: repeat;
    background-size: auto;
  }

  .secreto-models h3 {
    font-size: 1.875rem;
    line-height: 1.2;
    margin: 0;
    color: var(--primary-color);
  }

  .creator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
  }

  .creator-card {
    position: relative;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px #0000001a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
    color: inherit;
    text-decoration: none;
    background-color: #333;
  }

  .creator-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .creator-card .fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px #00000033;
  }

  .creator-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 2;
    color: var(--gray-1);
    background: linear-gradient(to top, #00000030 0%, #0000000d 60%, #00000000 100%);
  }

  .creator-name-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: #ff8dff8c;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 2px 6px #00000026;
    backdrop-filter: blur(3px);
    z-index: 3;
  }

  .video-container {
    box-shadow: 0 -4px 10px #0000000d;
    padding: 3rem 0;
  }

  .video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .video-player {
    background-color: var(--video-player-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
  }
  
  .player-container {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  /* Create a responsive container with 16:9 aspect ratio */
  .player-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
  }

  .video-player iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  
  /* Video info styling with reduced spacing */
  .video-info {
    margin-top: 1.5rem;
  }
  
  .video-info h1 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
  }
  
  .video-models {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #666;
  }
  
  .video-description {
    margin-top: 0.5rem;
    line-height: 1.5;
  }
  
  .model-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 0.5rem;
  }
  
  .model-link {
    font-size: 1rem;
    color: var(--anchor-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .model-link:hover {
    color: var(--primary-color);
  }
  
  .bullet {
    display: inline-block;
    vertical-align: middle;
    font-size: 1em;
    line-height: 1;
    margin: 0 6px 0 6px;
    color: var(--gray-1);
    position: relative;
    top: 4px;
    pointer-events: none;
  }

  .video-player .video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintain aspect ratio */
  }

  .subscribe-button-container {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
  }

  .btn-anchor {
    margin-bottom: 1rem;
  }

  .btn-anchor:hover {
    background-color: var(--primary-color);
  }

  .card-button {
    background-color: var(--primary-color);
    color: var(--gray-1);
    border: none;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(255, 141, 255, 0.3);
  }

  .card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 141, 255, 0.4);
  }

  .error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--gray-1);
    z-index: 2;
  }

  .error-message h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .error-message p {
    font-size: 1rem;
    opacity: 0.8;
  }

  /* Link to the external subscription modal CSS */
  /* Other styles remain unchanged */

  /* responsive css */
  @media (max-width: 992px) {
    .creator-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .secreto-models h3 {
      font-size: 1.8rem;
    }
    .creator-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .creator-grid {
      grid-template-columns: 1fr;
      padding: 0 1rem;
    }
    .creator-card {
      height: 200px;
    }
  }

/* Payment styles removed: legacy plays- payment UI deprecated on watch page */
