:root {
      --black: #000000;
      --white: #ffffff;
      --lilac: #c5b0e5;
      --light-lilac: #e5dbff;
      --purple: #764ba2;
      --gray-500: #6b7280;
      --gray-600: #4b5563;
      --gray-700: #374151;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      color: var(--black);
      margin: 0;
      padding: 0;
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      z-index: 1000;
      border-bottom: 1px solid #e5e5e5;
      transition: all 0.3s ease;
    }

    .nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }

    .logo {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--black);
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
      justify-content: center;
    }

    .nav-links a {
      color: var(--black);
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.2s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--lilac);
    }

    /* Hero Section */
    .hero {
      max-width: 1000px;
      margin: 120px auto 2rem;
      text-align: center;
      padding: 0 2rem;
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      color: var(--black);
      margin-bottom: 1rem;
      padding-top: 2rem;
      line-height: 1.2;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .hero .subtitle {
      font-size: clamp(1rem, 3vw, 1.25rem);
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      color: var(--black);
    }

    .hero img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      margin: 1rem 0;
    }

    .hero .description {
      font-size: clamp(0.9rem, 2vw, 1rem);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--black);
      line-height: 1.7;
      font-weight: 300;
      text-align: center;
      padding-top: 2rem;
      border-radius: 16px;
    }

    /* Main content layout */
    .main-layout {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
      max-width: 1400px;
      margin: 0 auto;
      padding: clamp(1rem, 3vw, 2rem);
      flex-wrap: wrap;
    }

    .main-content {
      flex: 1;
      min-width: 300px;
    }

    /* Affiliate Banners*/
    .affiliate-banner {
      padding: 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .banner-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .banner-title {
      font-size: 2rem;
      font-weight: 400;
      color: var(--back);
      margin-bottom: 0.5rem;
    }

    .banner-subtitle {
      font-size: 1.1rem;
      color: #c5b0e5;
      margin-top: 1.5rem;
      line-height: 1.4;
    }

    .banner-cta {
      display: inline-block;
      background: var(--black);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .banner-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
      border: 1px solid var(--black);
    }

    .banner-cta:hover {
      transform: translateY(-2px);
      background: var(--black);
    }



    /* Featured Video Section */
    .featured-video {
      background: white;
      border-radius: 24px;
      border: 2px solid var(--light-lilac);
      margin-bottom: 3rem;
      padding: 1rem;
    }

    .video-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .video-header h2 {
      font-size: clamp(1.5rem, 4vw, 2rem);
      color: var(--black);
      margin-bottom: 0.5rem;
      margin-top: 2rem;
      font-weight: 500;
    }

    .video-info {
      padding: 1rem;
      border-radius: 12px;
      margin-bottom: 2rem;
    }

    .video-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: 0 auto 2rem;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 16/9;
    }

    .video-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 16px;
    }

    .video-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(1rem, 3vw, 1.2rem);
      font-weight: 600;
    }

    .video-details {
      text-align: center;
      margin-bottom: 2rem;
      padding: 0 1rem;
    }

    .video-title {
      font-size: clamp(1.2rem, 3vw, 1.5rem);
      font-weight: 600;
      color: var(--black);
      margin-bottom: 0.5rem;
    }

    .video-meta {
      color: var(--black);
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      margin-bottom: 1rem;
    }

    .video-description {
      color: var(--black);
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Rating Section */
    .rating-section {
      background: white;
      border-radius: 24px;
      padding: clamp(1rem, 4vw, 2rem);
      margin-bottom: 3rem;
    }

    .rating-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .rating-header h3 {
      font-size: clamp(1.3rem, 3vw, 1.5rem);
      color: var(--black);
      margin-bottom: 0.5rem;
    }

    .rating-display {
      text-align: center;
      margin-bottom: 2rem;
    }

    .current-rating {
      font-size: clamp(1rem, 3vw, 1.2rem);
      font-weight: 600;
      color: var(--purple);
      margin-bottom: 0.5rem;
    }

    /* Average Rating Display */
    .average-rating {
      border-radius: 16px;
      padding: 1.5rem;
      text-align: center;
      margin-top: 2rem;
    }

    .average-score {
      font-size: clamp(2rem, 5vw, 2.5rem);
      font-weight: 700;
      color: var(--purple);
      margin-bottom: 0.5rem;
    }

    .average-stars {
      font-size: clamp(1.2rem, 3vw, 1.5rem);
      color: var(--purple);
      margin-bottom: 0.5rem;
    }

    .rating-count {
      color: var(--gray-600);
      font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    /* Rating Comparison Section */
    .rating-comparison {
      border-radius: 16px;
      padding: 1.5rem;
      margin-top: 1rem;
    }

    .rating-vs {
      display: flex;
      align-items: center;
      justify-content: space-around;
      margin-bottom: 1rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .my-rating, .community-rating {
      text-align: center;
      flex: 1;
      min-width: 120px;
    }

    .my-rating h4, .community-rating h4 {
      font-size: clamp(1rem, 2vw, 1.1rem);
      color: var(--black);
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .rating-value {
      font-size: clamp(2rem, 4vw, 2.5rem);
      font-weight: 700;
      color: var(--purple);
      margin-bottom: 0.25rem;
    }

    .my-rating p, .community-rating p {
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      color: var(--gray-600);
      margin: 0;
    }


    .vs-divider {
      font-size: clamp(1.2rem, 3vw, 1.5rem);
      font-weight: 700;
      color: var(--lilac);
      padding: 0 1rem;
    }

    .rating-reveal-info {
      text-align: center;
      border-radius: 12px;
      padding: 0.75rem;
      margin-top: 1rem;
    }

    .rating-reveal-info p {
      margin: 0;
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      color: var(--purple);
      font-weight: 500;
    }

    /* Countdown Timer Section */
    .countdown-section {
      border-radius: 16px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .countdown-header h4 {
      text-align: center;
      color: var(--black);
      margin-bottom: 1rem;
      font-size: clamp(1.1rem, 3vw, 1.3rem);
      font-weight: 600;
    }

    .countdown-timer {
      display: flex;
      justify-content: center;
      gap: clamp(0.5rem, 3vw, 1rem);
      flex-wrap: wrap;
    }

    .time-unit {
      text-align: center;
      background: white;
      border-radius: 12px;
      padding: clamp(0.75rem, 2vw, 1rem);
      min-width: clamp(60px, 15vw, 80px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .time-number {
      display: block;
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 700;
      color: #c5b0e5;
      line-height: 1;
    }

    .time-label {
      font-size: clamp(0.7rem, 2vw, 0.8rem);
      color: var(--gray-600);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Community Award Section */
    .community-award {
      border-radius: 16px;
      padding: 1.5rem;
      margin-top: 1.5rem;
    }

    .award-header h4 {
      text-align: center;
      color: var(--black);
      margin-bottom: 1rem;
      font-size: clamp(1.1rem, 3vw, 1.3rem);
      font-weight: 600;
    }

    .award-info p {
      margin-bottom: 1rem;
      font-size: clamp(0.9rem, 2vw, 1rem);
      color: var(--black);
      text-align: center;
    }

    .progress-bar {
      width: 100%;
      height: 12px;
      background: #e5e7eb;
      border-radius: 6px;
      overflow: hidden;
      margin: 1rem 0;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #c5b0e5);
      border-radius: 6px;
      transition: width 0.5s ease;
    }

    .progress-text {
      text-align: center;
      font-weight: 600;
      color: var(--black);
      font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .award-description {
      font-size: clamp(0.85rem, 2vw, 0.9rem);
      color: var(--gray-700);
      line-height: 1.5;
      font-style: italic;
    }

    /* Previous Videos Sidebar */
    .videos-sidebar {
      width: 100%;
      max-width: 300px;
      flex-shrink: 0;
      background: white;
      border-radius: 16px;
      padding: 1.5rem;
      position: sticky;
      top: 100px;
      height: fit-content;
    }

    .sidebar-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .sidebar-header h3 {
      font-size: clamp(1.1rem, 3vw, 1.3rem);
      color: var(--black);
      margin-bottom: 0.5rem;
    }

    .previous-video {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      border-radius: 12px;
      margin-bottom: 1rem;
    }

    .video-thumbnail {
      width: 80px;
      height: 45px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .video-thumbnail iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .previous-info {
      flex: 1;
      min-width: 0;
    }

    .previous-title {
      font-weight: 600;
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      color: var(--black);
      margin-bottom: 0.25rem;
      text-decoration: none;
      cursor: pointer;
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .previous-title:hover {
      color: var(--lilac);
      text-decoration: underline;
    }

    .previous-rating {
      font-size: clamp(0.7rem, 2vw, 0.8rem);
      color: var(--purple);
      font-weight: 600;
    }


    
    /* See All Ratings Section */
    .see-all-section {
      background: white;
      border-radius: 24px;
      padding: clamp(2rem, 4vw, 3rem);
      text-align: center;
    }

    .see-all-btn {
      display: inline-block;
      background: #000;
      color: #fff;
      padding: 0.75rem 1.5rem;
      font-size: 1.1rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .see-all-btn:hover {
      transform: translateY(-3px);
      background: var(--lilac);
      color: var(--white);
    }

    .see-all-btn:active {
      transform: translateY(-1px);
    }

    .see-all-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--black);
    }

    .see-all-description {
      margin-top: 1rem;
      font-size: clamp(0.9rem, 2vw, 1rem);
      color: var(--black);
      font-weight: 300;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }


    /* Comments Section */
    .comments-section {
      background: white;
      border-radius: 24px;
      padding: clamp(1rem, 4vw, 2rem);
    }

    .comments-header {
      margin-bottom: 2rem;
    }

    .comments-header h3 {
      font-size: clamp(1.3rem, 3vw, 1.5rem);
      color: var(--black);
      margin-bottom: 0.5rem;
    }

    .comment-form {
      margin-bottom: 2rem;
    }

    .comment-submit {
      background: var(--black);
      color: white;
      padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1.2rem, 3vw, 1.5rem);
      border-radius: 50px;
      border: none;
      font-weight: 300;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .comment-submit:hover {
      background: var(--lilac);
      color: var(--black);
    }

    .comment {
      border-bottom: 1px solid #e5e7eb;
      padding: 1.5rem 0;
    }

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

    .comment-author {
      font-weight: 600;
      color: var(--black);
      margin-bottom: 0.5rem;
      font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .comment-time {
      color: var(--gray-500);
      font-size: clamp(0.8rem, 2vw, 0.875rem);
      margin-bottom: 0.5rem;
    }

    .comment-rating {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: clamp(0.7rem, 2vw, 0.8rem);
      font-weight: 600;
      color: var(--purple);
      margin-bottom: 0.5rem;
    }

    .comment-text {
      color: var(--gray-700);
      line-height: 1.6;
      font-weight: 300;
      font-size: clamp(0.9rem, 2vw, 1rem);
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
    }

    .modal-content {
      background-color: white;
      margin: 5% auto;
      padding: clamp(1.5rem, 4vw, 2rem);
      border-radius: 24px;
      width: 90%;
      max-width: 500px;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }

    .close {
      color: var(--gray-500);
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      position: absolute;
      right: 1rem;
      top: 1rem;
    }

    .close:hover {
      color: var(--black);
    }

    .modal h3 {
      color: var(--black);
      margin-bottom: 1.5rem;
      font-size: clamp(1.3rem, 3vw, 1.5rem);
      padding-right: 2rem;
    }

    .modal-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .modal-input {
      padding: clamp(0.75rem, 2vw, 1rem);
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      font-family: inherit;
      font-size: clamp(0.9rem, 2vw, 1rem);
      width: 100%;
    }

    .modal-input:focus {
      outline: none;
      border-color: var(--lilac);
    }

    .modal-textarea {
      min-height: 120px;
      resize: vertical;
    }

    .modal-submit {
      background: var(--black);
      color: white;
      padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
      border-radius: 50px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .modal-submit:hover {
      background: var(--lilac);
      color: var(--black);
    }

    /* Affiliate Sidebar */
    .affiliate-section {
      background: white;
      border-radius: 16px;
      padding: 1.5rem;
      padding-top: 5rem;
      margin-bottom: 1.5rem;
    }

    .affiliate-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .affiliate-header h3 {
      font-size: clamp(1.1rem, 3vw, 1.3rem);
      color: #1a1a1a;
      margin-bottom: 0.5rem;
    }

    .affiliate-header p {
      color: #666;
      font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .affiliate-header img {
      max-width: 100%;
      height: auto;
    }

    .page-card {
      border: 1px solid #e9ecef;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 1rem;
      transition: all 0.3s ease;
      background: white;
    }

    .page-image {
      width: 100%;
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      color: #666;
      position: relative;
      overflow: hidden;
    }

    .page-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-info {
      padding: 1rem;
    }

    .page-title {
      font-weight: 600;
      font-size: clamp(0.9rem, 2vw, 1rem);
      margin-bottom: 0.5rem;
      color: #1a1a1a;
      line-height: 1.3;
    }

    .page-description {
      font-size: clamp(0.8rem, 2vw, 0.85rem);
      color: #666;
      margin-bottom: 1rem;
      line-height: 1.4;
      text-align: center;
    }

    .affiliate-link {
      display: block;
      background: #c5b0e5;
      color: white;
      text-decoration: none;
      padding: clamp(0.6rem, 2vw, 0.75rem);
      border-radius: 24px;
      text-align: center;
      font-weight: 600;
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      transition: all 0.2s ease;
    }

    .affiliate-link:hover {
      background: var(--purple);
      transform: translateY(-2px);
    }

    /* Footer */
    .footer {
      background-color: #000000;
      color: #ffffff;
      padding: 4rem 0 2rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2rem;
      font-size: clamp(0.9rem, 2vw, 1rem);
      font-weight: 300;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .footer-links {
      display: flex;
      gap: clamp(1rem, 3vw, 2rem);
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #ffffff;
      text-decoration: none;
      transition: opacity 0.3s ease;
      font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .footer-links a:hover {
      opacity: 0.7;
    }

    .footer-newsletter {
      flex: 1;
      max-width: 400px;
      min-width: 250px;
    }

    .footer-newsletter h4 {
      color: #ffffff;
      font-size: clamp(1rem, 2vw, 1.1rem);
      font-weight: 600;
      margin-bottom: 12px;
    }

    .newsletter-signup {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .newsletter-input {
      flex: 1;
      min-width: 200px;
      padding: 10px 14px;
      border: 1px solid #374151;
      border-radius: 25px;
      background-color: #1f2937;
      color: #ffffff;
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      transition: border-color 0.2s ease;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: #6b7280;
    }

    .newsletter-input::placeholder {
      color: #9ca3af;
    }

    .newsletter-btn {
      background-color: #ffffff;
      color: #000000;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .newsletter-btn:hover {
      background-color: #f3f4f6;
      transform: translateY(-1px);
    }

    .gdpr-consent {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .gdpr-checkbox {
      display: none;
    }

    .gdpr-label {
      display: flex;
      align-items: flex-start;
      cursor: pointer;
      user-select: none;
      gap: 8px;
      line-height: 1.4;
    }

    .gdpr-checkmark {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      border: 1px solid #6b7280;
      border-radius: 3px;
      background-color: #1f2937;
      position: relative;
      transition: all 0.2s ease;
      margin-top: 2px;
    }

    .gdpr-checkbox:checked + .gdpr-label .gdpr-checkmark {
      background-color: #ffffff;
      border-color: #ffffff;
    }

    .gdpr-checkbox:checked + .gdpr-label .gdpr-checkmark::after {
      content: '';
      position: absolute;
      left: 4px;
      top: 1px;
      width: 4px;
      height: 8px;
      border: solid #000000;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .gdpr-text {
      font-size: clamp(0.7rem, 2vw, 0.8rem);
      color: #d1d5db;
      flex: 1;
    }

    .privacy-link {
      color: #ffffff;
      text-decoration: underline;
    }

    .privacy-link:hover {
      opacity: 0.8;
    }


 .ph-embed {
    position: relative;
    width: 100%;
    max-width: 800px; /* tweak as you like */
    margin: 0 auto;
  }
  /* 16:9 aspect ratio */
  .ph-embed__frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
    border-radius: 12px;
  }
  .ph-embed__poster,
  .ph-embed__iframe,
  .ph-embed__play {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
  }
  .ph-embed__poster {
    object-fit: cover;
    display: block;
  }
  .ph-embed__play {
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .ph-embed__play::before {
    content: "";
    width: 84px; height: 84px;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    box-shadow: 0 2px 16px rgba(0,0,0,.35), inset 0 0 0 2px rgba(255,255,255,.2);
  }
  .ph-embed__play::after {
    content: "";
    position: absolute;
    width: 0; height: 0;
    border-left: 22px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    transform: translateX(6px);
  }
  .ph-embed__play:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }




    /* Stats Dashboard */
    .stats-dashboard {
      position: fixed;
      top: 10px;
      right: 10px;
      background: white;
      border: 2px solid #333;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      z-index: 10000;
      font-family: monospace;
      font-size: 12px;
      max-width: 300px;
      display: none;
    }

    .stats-dashboard h4 {
      margin: 0 0 10px 0;
      font-size: 14px;
    }

    .stats-dashboard p {
      margin: 5px 0;
    }

    .stats-dashboard button {
      margin-top: 10px;
      padding: 5px 10px;
      background: #333;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    /* Delete Button Styles */
    .delete-comment-btn {
      background: #dc2626 !important;
      color: white;
      border: none;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 11px;
      cursor: pointer;
      margin-left: 10px;
      transition: all 0.2s ease;
      opacity: 0;
      float: right;
    }

    .comment:hover .delete-comment-btn {
      opacity: 1;
    }

    .delete-comment-btn:hover {
      background: #b91c1c !important;
    }

    /* Admin Panel Styles */
    .admin-panel {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      border: 2px solid #333;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.3);
      z-index: 15000;
      font-family: monospace;
      font-size: 12px;
      max-width: 500px;
      max-height: 70vh;
      overflow-y: auto;
      display: none;
    }

    .admin-panel h3 {
      margin: 0 0 15px 0;
      font-size: 16px;
      border-bottom: 1px solid #ccc;
      padding-bottom: 10px;
    }

    .admin-panel .close-admin {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      cursor: pointer;
      color: #666;
    }

    .admin-panel .close-admin:hover {
      color: #000;
    }

    .admin-comment-item {
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 10px;
      margin-bottom: 10px;
      background: #f9f9f9;
    }

    .admin-comment-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 5px;
    }

    .admin-comment-info {
      font-weight: bold;
      color: #333;
    }

    .admin-delete-btn {
      background: #dc2626;
      color: white;
      border: none;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 10px;
      cursor: pointer;
    }

    .admin-delete-btn:hover {
      background: #b91c1c;
    }

    .admin-comment-text {
      font-size: 11px;
      color: #666;
      margin-top: 5px;
      line-height: 1.4;
    }

    .admin-stats {
      background: #f0f0f0;
      padding: 10px;
      border-radius: 6px;
      margin-bottom: 15px;
    }

    .admin-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #ccc;
    }

    .admin-btn {
      padding: 6px 12px;
      border: none;
      border-radius: 6px;
      font-size: 11px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .admin-btn.danger {
      background: #dc2626;
      color: white;
    }

    .admin-btn.danger:hover {
      background: #b91c1c;
    }

    .admin-btn.export {
      background: #059669;
      color: white;
    }

    .admin-btn.export:hover {
      background: #047857;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .main-layout {
        flex-direction: column;
      }
      
      .videos-sidebar {
        width: 100%;
        max-width: none;
        position: static;
        order: -1;
      }
    }

    @media (max-width: 768px) {
      .nav {
        flex-direction: column;
        gap: 1rem;
        height: auto;
        padding: 20px 24px;
      }

      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(15px, 3vw, 20px);
        font-size: clamp(14px, 3vw, 16px);
      }

      .header {
        position: relative;
      }

      .hero {
        margin-top: 2rem;
      }

      .main-layout {
        padding: 1rem;
        gap: 1rem;
      }

      .star-rating {
        gap: 0.25rem;
      }

      .star {
        font-size: 2rem;
      }

      .modal-content {
        margin: 2% auto;
        width: 95%;
        padding: 1.5rem;
      }

      .previous-video {
        padding: 0.75rem;
        gap: 0.75rem;
      }

      .video-thumbnail {
        width: 60px;
        height: 35px;
      }

      .footer-content {
        flex-direction: column;
        gap: 1.5rem;
      }

      .footer-links {
        justify-content: center;
        gap: 1rem;
      }

      .newsletter-signup {
        flex-direction: column;
        gap: 12px;
      }

      .newsletter-input {
        min-width: auto;
      }
    }

    @media (max-width: 480px) {
      .nav {
        padding: 15px 20px;
      }

      .logo {
        font-size: 20px;
      }

      .hero {
        padding: 0 1rem;
      }

      .main-layout {
        padding: 0.75rem;
      }

      .featured-video,
      .rating-section,
      .comments-section {
        border-radius: 16px;
        margin-bottom: 1.5rem;
      }

      .star {
        font-size: 1.75rem;
      }

      .affiliate-section {
        padding: 1rem;
        padding-top: 3rem;
      }

      .product-image {
        height: 120px;
      }

      .comment {
        padding: 1rem 0;
      }
    }
