
    :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;
    }

    /* 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: 3rem;
      font-weight: 700;
      color: var(--black);
      padding-top: 50px;
      padding-bottom: 30px;
      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: 1.25rem;
      margin-bottom: 2rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      color: #000;
    }

    .hero .description {
      font-size: 1rem;
      max-width: 1200px;
      margin-left: 30px;
      margin-right: 30px;
      color: #000;
      line-height: 1.7;
      text-align: center;
      border-radius: 16px;
      font-weight: 300;
    
    }

    /* Main content layout */
    .main-layout {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem;
    }

    .main-content {
      flex: 1;
    }

        .container {
            margin: 0 auto;
            max-width: 1400px;
        }


         /* 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;
    }

    /* Featured Creator Section */
    .featured-creator {
      background: white;
      border-radius: 24px;
      padding: 2rem;
      margin-bottom: 3rem;
    }

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

    .creator-header h2 {
      font-size: 2rem;
      color: var(--black);
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    .creator-deadline {
      color: #c5b0e5;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 1rem;
    }

   .creator-profile {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 2rem;
      align-items: start;
    }

    .creator-image {
      width: 100%;
      height: 400px;
      border-radius: 20px;
      overflow: hidden;
      background: linear-gradient(45deg, #e5dbff, #c5b0e5);
    }

    .creator-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
      display: block;
    }

    .creator-info h3 {
      font-size: 1.5rem;
      color: #c5b0e5;
      margin-bottom: 1rem;
      font-weight: 500;
    }

    .creator-bio {
      color: #000;
      margin-bottom: 1.5rem;
      line-height: 1.6;
      font-weight: 300;
    }

    .creator-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .stat-item {
      text-align: center;
      padding: 1rem;
      border-radius: 12px;
    }

    .stat-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--purple);
    }

    .stat-label {
      font-size: 0.875rem;
      color: var(--gray-600);
    }

    .subscribe-btn {
      color: #fff;
      padding: 0.8rem 1rem 0.8rem 1rem;
      margin-bottom: 20px;
      margin-right: 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 300;
      display: inline-block;
      transition: all 0.3s ease;
      background: #000;
      cursor: pointer;
      border: none;
      font-size: 1rem;
    }

    .subscribe-btn:hover {
      background: var(--lilac);
      color: var(--white);
      transform: translateY(-2px);
    }



/* Affiliate Banner HERO */
    .affiliate-banner {
      padding: 2rem;
      margin: 2rem 0;
      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);
    }

 /* Affiliate Banner Middle */
    .affiliate-banner {
      padding: 2rem;
      margin: 2rem 0;
      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);
    }


/* Affiliate Banners */
    .affiliate-banner {
      padding: 2rem;
      margin: 2rem 0;
      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);
    }

    
    /* Voting Section */
    .voting-section {
      background: white;
      border-radius: 24px;
      padding: 2rem;
      margin-bottom: 3rem;
    }

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

    .voting-header h3 {
      font-size: 1.5rem;
      color: var(--black);
      margin-bottom: 0.5rem;
    }

    .voting-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .vote-btn {
      padding: 1rem 2rem;
      border-radius: 50px;
      border: 1px solid #000;
      font-weight: 300;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
      background: white;
    }

    .vote-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .vote-yes {
      border-color: #000;
      color: #ffffff;
      background: #000;
    }

    .vote-yes:hover:not(:disabled) {
      background: #f3f0ff;
      color: #000;
    }

    .vote-yes.voted {
      background: var(--lilac);
      border-color: var(--lilac);
      color: white;
    }

    .vote-no {
      background: var(--lilac);
      color: var(--white);
    }

    .vote-no:hover:not(:disabled) {
      background: #f3f0ff;
      color: #000;
    }

    .vote-no.voted {
      background: #f3f0ff;
      color: #000;
    }

    .vote-results {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .result-bar {
      background: #f1f5f9;
      border-radius: 12px;
      padding: 1rem;
      position: relative;
      overflow: hidden;
    }

    .result-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      border-radius: 12px;
      transition: width 0.5s ease;
    }

    .result-yes .result-fill {
      background: var(--lilac);
    }

    .result-no .result-fill {
      background: #f3f0ff;
    }

    .result-text {
      position: relative;
      z-index: 1;
      font-weight: 600;
      color: var(--black);
    }


     /* 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;
    }

    /* Previous Results Sidebar */
    .results-sidebar {
      width: 300px;
      flex-shrink: 0;
      background: white;
      border-radius: 16px;
      position: sticky;
      top: 100px;
      height: fit-content;
    }

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

    .sidebar-header h3 {
      font-size: 1.3rem;
      color: #c5b0e5;
      margin-bottom: 0.5rem;
    }

    .previous-creator {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .previous-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      background: linear-gradient(45deg, #e5dbff, #c5b0e5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #764ba2;
      font-size: 12px;
      text-align: center;
    }

    .previous-info {
      flex: 1;
    }

    .previous-name {
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--black);
      margin-bottom: 0.25rem;
      text-decoration: none;
      cursor: pointer;
    }

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

    .previous-result {
      font-size: 0.8rem;
      font-weight: 600;
    }

    .result-authentic {
      color: var(--lilac);
    }

    .result-fake {
      color: var(--purple);
    }

    .result-icon {
      font-size: 1.5rem;
    }

    .profile-section {
      width: 300px;
      flex-shrink: 0;
      text-align: center;
    }

    .profile-placeholder {
      width: 250px;
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 1.5rem;
      position: relative;
      overflow: hidden;
    }


/* 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: 1.3rem;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
    }

    .affiliate-header p {
      color: #666;
      font-size: 0.9rem;
    }

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

    .product-image {
      width: 100%;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: #666;
      position: relative;
      overflow: hidden;
      background: linear-gradient(45deg, #e5dbff, #c5b0e5);
    }

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

    .product-info {
      padding: 1rem;
    }

    .product-title {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.5rem;
      color: #1a1a1a;
      line-height: 1.3;
    }

    .product-description {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 1rem;
      line-height: 1.4;
      text-align: center;
    }

    .product-price {
      font-weight: 700;
      color: #764ba2;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

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

    .affiliate-link:hover {
      background: #764ba2;
      transform: translateY(-1px);
    }


  /* 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;
      text-align: center;
      justify-content: center;
    }

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

    .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;
    }


    /* Responsive Design */
    @media (max-width: 1200px) {
      .main-layout {
        flex-direction: column;
      }
      
      .results-sidebar {
        width: 100%;
        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: 20px;
      }

      .header {
        position: relative;
      }

      .hero {
        margin-top: 2rem;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .main-layout {
        padding: 1rem;
      }

      .creator-profile {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .creator-stats {
        grid-template-columns: 1fr;
      }

      .vote-results {
        grid-template-columns: 1fr;
      }

      .voting-buttons {
        flex-direction: column;
        align-items: center;
      }
    }




  /* Footer responsive */
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-newsletter {
    max-width: 100%;
    width: 100%;
  }

  .newsletter-signup {
    flex-direction: column;
    gap: 1rem;
  }

  .footer .newsletter-input {
    width: 100%;
  }

  .footer .newsletter-btn {
    width: 100%;
  }

  .gdpr-consent {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .main-layout {
    padding: 

  /* Footer very small screens */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    padding: 0 1rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-newsletter h4 {
    font-size: 1rem;
  }

  .gdpr-text {
    font-size: 0.75rem;
  }

  .gdpr-text-sidebar {
    font-size: 0.7rem;
  }j

