:root {
    --primary-color: rgb(84, 39, 157);
    --secondary-color: #8857d8;
    --dark-color: #2c3e50;
    --light-color: #f7f7f7;
    --text-color: #f3f3f3;
  }
  
   
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
  }
   
  
  /* Hero Section */
  #hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    padding-top: 60px;
  }
  
  .hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    z-index: 1;
  }
  
  .hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    letter-spacing: 3px;
    font-weight: 800;
  }
  
  .hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
  }
  
  .hero-content .hero-secondary {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: forwards;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    animation: wave 10s linear infinite;
  }
  
  /* Featured Episodes */
  #featured {
    padding: 5rem 2rem;
    background: var(--light-color);
  }
  
  #featured h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
  }
  
  .episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .episode-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .episode-card:hover {
    transform: translateY(-5px);
  }
  
  .video-preview {
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    height: 200px;
    overflow: hidden;
  }
  
  .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .play-overlay {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .video-thumbnail:hover .play-overlay {
    transform: scale(1.1);
    opacity: 1;
  }
  
  .video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .video-player.active {
    opacity: 1;
    pointer-events: all;
  }
  
  .video-player iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .episode-type {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .episode-type i {
    margin-right: 0.3rem;
  }
  
  .episode-info {
    padding: 1.5rem;
  }
  
  .episode-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
  }
  
  .episode-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    color: #666;
    font-size: 0.9rem;
  }
  
  .episode-card:hover .video-thumbnail {
    opacity: 0.7;
  }
  
  /* Subscribe Section */
  #subscribe {
    padding: 5rem 2rem;
    background: var(--dark-color);
    color: white;
  }
  
  .subscribe-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  #subscribe-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  #subscribe-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  /* Buttons */
  .cta-button, .play-button, button[type="submit"] {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover, .play-button:hover, button[type="submit"]:hover {
    background: var(--secondary-color);
  }
  
  .play-button {
    width: 100%;
    margin-top: 1rem;
  }
  
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: var(--primary-color);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes wave {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: 1440px;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    nav ul {
      display: none;
    }
    
    .hero-content h1 {
      font-size: 3rem;
    }
    
    .hero-content p {
      font-size: 1.1rem;
    }
    
    .hero-content .hero-secondary {
      font-size: 1rem;
    }
    
    #subscribe-form {
      flex-direction: column;
    }
    
    
    .social-links {
      justify-content: center;
    }
  }