/* 
==============================================
WaveCast - Modern Podcast Website 2025 Edition
==============================================
*/

/* 
==============================================
Table of Contents:
1. CSS Variables & Root
2. General Styles
3. Custom Cursor & Effects
4. Navbar
5. Hero Section
6. Audio Player
7. Featured Podcasts
8. Episodes Section
9. Hosts Section
10. Testimonials
11. Stats Section
12. Subscribe Section
13. Contact Section
14. Footer
15. Utilities
16. Page Specific Styles
17. Dark/Light Theme
18. Animations
19. Responsive Styles
==============================================
*/

/* 
==============================================
1. CSS Variables & Root
==============================================
*/
:root {
  /* Primary Colors */
  --primary-color: #7F56D9;
  --primary-light: #EBE5FC;
  --primary-dark: #6941C6;
  
  /* Secondary Colors */
  --secondary-color: #F670C7;
  --secondary-light: #FDEEF8;
  --secondary-dark: #C44A9D;
  
  /* Accent Colors */
  --accent-color: #22C55E;
  --accent-light: #DCFCE7;
  --accent-dark: #15803D;
  
  /* Neutral Colors */
  --dark-color: #101828;
  --text-color: #344054;
  --light-text: #667085;
  --white-color: #FFFFFF;
  --light-bg: #F9FAFB;
  --border-color: #E4E7EC;
  --text-light: #667085;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, #7F56D9 0%, #9E77ED 100%);
  --secondary-gradient: linear-gradient(135deg, #F670C7 0%, #FF90D6 100%);
  --accent-gradient: linear-gradient(135deg, #22C55E 0%, #4ADE80 100%);
  --dark-gradient: linear-gradient(135deg, #101828 0%, #1D2939 100%);
  
  /* Shadows */
  --card-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  --button-shadow: 0px 4px 12px rgba(127, 86, 217, 0.2);
  --hover-shadow: 0px 12px 40px rgba(0, 0, 0, 0.12);
  --neomorphic-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.05);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  
  /* Z-index */
  --z-negative: -1;
  --z-normal: 1;
  --z-elevated: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-popover: 500;
  --z-tooltip: 600;
}

/* 
==============================================
2. General Styles
==============================================
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--dark-color);
  transition: var(--transition);
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--light-text);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 1;
}

.lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--light-text);
}

/* 
==============================================
3. Custom Cursor & Effects
==============================================
*/
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(127, 86, 217, 0.3);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: var(--z-tooltip);
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.custom-cursor.active {
  width: 50px;
  height: 50px;
  background-color: rgba(127, 86, 217, 0.1);
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
  pointer-events: none;
  z-index: var(--z-tooltip);
  opacity: 0.5;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  z-index: var(--z-negative);
  animation: blob-animation 15s infinite alternate ease-in-out;
}

.blob-1 {
  background: var(--primary-color);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.blob-2 {
  background: var(--secondary-color);
  bottom: -200px;
  left: -200px;
  animation-delay: 5s;
}

/* 
==============================================
4. Navbar
==============================================
*/
.navbar {
  padding: 20px 0;
  transition: var(--transition);
  background-color: #fff;
  z-index: var(--z-fixed);
}

.navbar-scrolled {
  background-color: rgba(16, 24, 40, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white-color);
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.25rem;
  box-shadow: var(--button-shadow);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 10px 15px;
  color: var(--white-color);
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
  padding: 0;
  font-size: 1.5rem;
  color: var(--white-color);
  transition: var(--transition);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.theme-toggle {
  background: transparent;
  border: none;
  color: var(--white-color);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  color: var(--primary-color);
  background-color: rgba(127, 86, 217, 0.1);
}

/* 
==============================================
5. Hero Section
==============================================
*/
.hero-section {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

.badge-container {
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  background-color: rgba(127, 86, 217, 0.1);
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  margin-bottom: 15px;
  border: 1px solid rgba(127, 86, 217, 0.2);
  backdrop-filter: blur(5px);
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--primary-gradient);
  opacity: 0.3;
  z-index: -1;
  border-radius: var(--border-radius-full);
}

.hero-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
}

.hero-image-container {
  position: relative;
  z-index: 1;
}

.hero-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-shape-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70%;
  height: 70%;
  background-color: var(--primary-light);
  z-index: -1;
  border-radius: var(--border-radius-lg);
  opacity: 0.5;
  transform: rotate(-5deg);
}

.hero-shape-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70%;
  height: 70%;
  background-color: var(--secondary-light);
  z-index: -1;
  border-radius: var(--border-radius-lg);
  opacity: 0.5;
  transform: rotate(5deg);
}

.floating-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 15px;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
  animation: float 5s infinite ease-in-out;
}

.card-1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 2.5s;
}

.icon-pulse {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(127, 86, 217, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  position: relative;
}

.icon-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(127, 86, 217, 0.2);
  z-index: -1;
  animation: pulse 2s infinite;
}

.floating-card h6 {
  color: var(--white-color);
  font-weight: 700;
  margin-bottom: 0;
}

.floating-card p {
  margin-bottom: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platforms p {
    margin-bottom: 0;
}

.platform-icons {
  display: flex;
  gap: 15px;
}

.platform-icon {
  font-size: 1.75rem;
  transition: var(--transition);
  opacity: 0.7;
}

.platform-icon:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
  opacity: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* 
==============================================
6. Audio Player
==============================================
*/
.audio-player-section {
  padding: 50px 0;
}

.audio-player {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  box-shadow: var(--neomorphic-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.player-thumbnail {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
}

.player-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.player-thumbnail:hover .play-overlay {
  opacity: 1;
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white-color);
}

.control-btn:hover {
  background-color: rgba(127, 86, 217, 0.2);
  color: var(--primary-color);
}

.control-btn-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.5rem;
  box-shadow: var(--button-shadow);
}

.control-btn-lg:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(127, 86, 217, 0.3);
}

.progress-container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  border-radius: 18px;
  height: 8px;
  background: #956ee629;
  position: relative;
}

.current-time, .total-time {
  font-size: 0.8rem;
  color: var(--light-text);
}

.total-time {
  position: absolute;
  right: -35px;
}

.current-time {
    background: #4765ed;
    color: #fff;
    border-radius: 10px;
    padding: 0px 7px;
    left: -13px;
    position: absolute;
    font-size: 10px;
    z-index: 9;
}

.progress {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-full);
}

.progress-bar {
  background: var(--primary-gradient);
  border-radius: var(--border-radius-full);
}

.player-options {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}



.option-btn:hover {
  color: var(--primary-color);
}

/* 
==============================================
7. Featured Podcasts
==============================================
*/
.featured-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.section-header {
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  background-color: rgba(127, 86, 217, 0.1);
  padding: 5px 15px;
  border-radius: var(--border-radius-full);
  margin-bottom: 15px;
  border: 1px solid rgba(127, 86, 217, 0.2);
}

.section-desc {
  color: var(--light-text);
  max-width: 600px;
}

.section-heading {
  margin-bottom: 15px;
}

.podcast-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--neomorphic-shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.podcast-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.podcast-image {
  position: relative;
  overflow: hidden;
}

.podcast-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
}

.podcast-card:hover .podcast-image img {
  transform: scale(1.05);
}

.podcast-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.podcast-card:hover .podcast-overlay {
  opacity: 1;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--button-shadow);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(127, 86, 217, 0.3);
}

.episode-count {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  backdrop-filter: blur(5px);
}

.podcast-content {
  padding: 20px;
}

.podcast-category span {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--primary-color);
  background-color: rgba(127, 86, 217, 0.1);
  padding: 3px 10px;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(127, 86, 217, 0.2);
}

.podcast-content h4 {
  margin: 10px 0;
}

.podcast-content h4 a {
  color: var(--primary-dark);
  transition: var(--transition);
}

.podcast-content h4 a:hover {
  color: var(--primary-color);
}

.podcast-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.host {
  display: flex;
  align-items: center;
}

.host-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.host span {
  font-size: 0.9rem;
  color: var(--light-text);
}

.duration {
  font-size: 0.9rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
}

.duration i {
  margin-right: 5px;
}

/* 
==============================================
8. Episodes Section
==============================================
*/
.episodes-section {
  padding: 100px 0;
}

.episode-list {
  margin-top: 50px;
}

.episode-item {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: var(--neomorphic-shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.episode-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.episode-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.episode-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.episode-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: var(--transition);
}

.episode-image:hover img {
  transform: scale(1.05);
}

.episode-date {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--light-text);
  /* margin-bottom: 5px; */
}

.episode-duration {
  font-size: 0.9rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
}

.episode-duration i {
  margin-right: 5px;
}

.episode-actions {
  display: flex;
  justify-content: flex-end;
}

.action-btns {
  display: flex;
  gap: 10px;
}

.btn-play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  box-shadow: var(--button-shadow);
}

.btn-play:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(127, 86, 217, 0.3);
}

.btn-more {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.btn-more:hover {
  background-color: rgba(127, 86, 217, 0.2);
  color: var(--primary-color);
}

.episode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* margin-top: 15px; */
}

.tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--primary-color);
  background-color: rgba(127, 86, 217, 0.1);
  padding: 3px 10px;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(127, 86, 217, 0.2);
}

/* 
==============================================
9. Hosts Section
==============================================
*/
.hosts-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.host-card, .team-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--neomorphic-shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.host-card:hover, .team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.host-image, .team-image {
  position: relative;
  overflow: hidden;
}

.host-image img, .team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.host-card:hover .host-image img, .team-card:hover .team-image img {
  transform: scale(1.05);
}

.social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.host-card:hover .social-links, .team-card:hover .social-links {
  opacity: 1;
  transform: translateY(0);
}

.social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.host-info, .team-info {
  padding: 20px;
  text-align: center;
}

.host-info h4, .team-info h4 {
  margin-bottom: 5px;
}

.host-info p, .team-info p {
  color: var(--light-text);
  margin-bottom: 15px;
}

.host-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--light-text);
}

/* 
==============================================
10. Testimonials
==============================================
*/
.testimonial-section {
  padding: 100px 0;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--neomorphic-shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.testimonial-rating {
  margin-bottom: 20px;
  color: #FFD700;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--light-text);
}

.testimonial-user {
  display: flex;
  align-items: center;
}

.user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.user-info h5 {
  margin-bottom: 0;
  font-size: 1rem;
}

.user-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--light-text);
}

/* 
==============================================
11. Stats Section
==============================================
*/
.stats-section {
  padding: 80px 0;
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.stats-container {
  padding: 20px;
  border-radius: var(--border-radius-lg);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--white-color);
}

.stat-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* 
==============================================
12. Subscribe Section
==============================================
*/
.subscribe-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.subscribe-form .form-control {
  height: 60px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--white-color);
  margin-bottom: 20px;
}

.subscribe-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--light-text);
}

.app-download {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--neomorphic-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.download-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.download-btn {
  display: flex;
  align-items: center;
  background-color: rgb(155 115 234);
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color) !important;
  transform: translateY(-3px);
}

.download-btn i {
  font-size: 2rem;
  margin-right: 10px;
}

.download-btn span {
  font-size: 0.7rem;
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.download-btn h5 {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--white-color);
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light-text);
}

.input-with-icon .form-control {
  padding-left: 45px;
}

/* 
==============================================
13. Contact Section
==============================================
*/
.contact-info-section {
  padding: 80px 0;
}

.contact-info-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--neomorphic-shadow);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.contact-info-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(127, 86, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.contact-form-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.contact-form-container {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--neomorphic-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.contact-form .form-control {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--white-color);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-options {
  padding-left: 30px;
}

.contact-option-card {
  display: flex;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--neomorphic-shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.contact-option-card:hover {
  transform: translateX(10px);
  box-shadow: var(--hover-shadow);
}

.contact-option-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(127, 86, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-option-card .content {
  flex-grow: 1;
}

.contact-option-card h4 {
  margin-bottom: 5px;
}

.contact-option-card p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.map-section {
  padding: 0 0 80px;
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--neomorphic-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-media-section {
  padding: 80px 0;
}

.social-media-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.social-media-links .social-link {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--white-color);
  padding: 15px 25px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media-links .social-link i {
  font-size: 1.5rem;
  margin-right: 10px;
}

.social-media-links .social-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-5px);
}

/* 
==============================================
14. Footer
==============================================
*/
.footer {
  background-color: rgba(16, 24, 40, 0.8);
  color: var(--white-color);
  padding-top: 80px;
  position: relative;
  backdrop-filter: blur(10px);
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white-color);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-widget .footer-title {
  color: var(--white-color);
  margin-bottom: 25px;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  width: 30px;
  height: 30px;
  background-color: rgba(127, 86, 217, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 15px;
}

.contact-item p {
  margin-bottom: 0;
}

.footer-bottom {
  padding: 25px 0;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* 
==============================================
15. Utilities
==============================================
*/
.btn {
  font-weight: 500;
  padding: 12px 30px;
  border-radius: var(--border-radius-full);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  box-shadow: var(--button-shadow);
}

.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(127, 86, 217, 0.3);
  transform: translateY(-3px);
}

.btn-outline {
  color: var(--white-color);
  background-color: #000000;
  border: 1px solid #000000;
}

.btn-outline:hover {
  background-color: rgba(127, 86, 217, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-light {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background-color: var(--white-color);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--button-shadow);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(127, 86, 217, 0.3);
  color: var(--white-color);
}

/* 
==============================================
16. Page Specific Styles
==============================================
*/
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* About Page */
.about-story-section {
  padding: 100px 0;
}

.about-image {
  position: relative;
  z-index: 1;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-gradient);
  color: var(--white-color);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--card-shadow);
  z-index: 2;
}

.experience-badge h3 {
  font-size: 2rem;
  margin-bottom: 0;
  color: var(--white-color);
}

.experience-badge p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.about-shape-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70%;
  height: 70%;
  background-color: rgba(127, 86, 217, 0.1);
  z-index: -1;
  border-radius: var(--border-radius-lg);
  transform: rotate(-5deg);
}

.about-shape-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70%;
  height: 70%;
  background-color: rgba(246, 112, 199, 0.1);
  z-index: -1;
  border-radius: var(--border-radius-lg);
  transform: rotate(5deg);
}

.founder-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-signature img {
  height: 40px;
}

.mission-vision-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.mission-card, .vision-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--neomorphic-shadow);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.mission-card .icon, .vision-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(127, 86, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 25px;
}

.mission-list, .vision-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.mission-list li, .vision-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.mission-list li i, .vision-list li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.values-section {
  padding: 100px 0;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--neomorphic-shadow);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.value-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(127, 86, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.team-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.studio-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.studio-gallery {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.studio-gallery img {
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.studio-gallery img:hover {
  transform: scale(1.05);
}

.studio-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.studio-features .feature {
  display: flex;
  align-items: center;
}

.studio-features .feature i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(127, 86, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 15px;
}

.faq-section {
  padding: 100px 0;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  background-color: transparent;
}

.accordion-button {
  font-weight: 600;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--white-color);
  box-shadow: var(--neomorphic-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: var(--neomorphic-shadow);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237F56D9'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--light-text);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.cta-section {
  padding: 80px 0;
}

.cta-container {
  background: var(--primary-gradient);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
  opacity: 0.1;
  z-index: 0;
}

.cta-container h2 {
  color: var(--white-color);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cta-container p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Episodes Page */
.episodes-filter {
  padding: 50px 0 0;
}

.filter-container {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  box-shadow: var(--neomorphic-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light-text);
}

.search-box .form-control {
  padding-left: 45px;
  height: 50px;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}

.search-box .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  overflow: scroll;
}

.filter-btn {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: var(--border-radius-full);
  font-size: 0.9rem;
  color: var(--white-color);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.episodes-list-section {
  padding: 80px 0;
}

.pagination-container {
  margin-top: 50px;
}

.pagination .page-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  border: none;
  color: var(--white-color);
  background-color: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.pagination .page-link:hover, .pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.featured-episode-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.featured-episode {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--neomorphic-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.featured-episode-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-gradient);
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--card-shadow);
  z-index: 1;
  transition: var(--transition);
}
.featured-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(127, 86, 217, 0.3);
}
        
        
        .navbar-brand span {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
      
        
       
        
        /* Categories Section */
        .categories-section {
            padding: 5rem 0;
        }
        
        .category-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(110, 68, 255, 0.2);
        }
        
        .category-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .category-card:hover .category-image img {
            transform: scale(1.1);
        }
        
        .category-content {
            padding: 1.5rem;
        }
        
        .category-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .category-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .category-desc {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .episode-count {
            display: flex;
            align-items: center;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .episode-count i {
            margin-right: 0.5rem;
            color: var(--primary-color);
        }
        
        /* Popular Shows */
        .shows-section {
            padding: 5rem 0;
            background: var(--darker-bg);
        }
        
        .show-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .show-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .show-image {
            height: 200px;
            overflow: hidden;
        }
        
        .show-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .show-content {
            padding: 1.5rem;
        }
        
        .show-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .show-author {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .show-stats {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-light);
            font-size: 0.85rem;
        }
        
        .show-stat {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        /* CTA Section */
        
        
        .cta-container {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .cta-container h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-container p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
        }
        
        .btn-light {
            background: white;
            color: var(--primary-color);
            border: none;
            border-radius: 50px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }
        
        /* Footer */
        .footer {
            background: var(--darker-bg);
            padding: 5rem 0 2rem;
        }
        
        .footer-logo {
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .footer-widget {
            margin-bottom: 2rem;
        }
        
        .footer-widget h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--text-white);
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            transform: translateY(-3px);
        }
        
        .contact-info {
            margin-top: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }
        
        .contact-item i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 2rem;
            margin-top: 2rem;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-bottom-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: var(--text-white);
        }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(110, 68, 255, 0.3);
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            .cta-container {
                text-align: center;
                padding: 2rem;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.3rem;
            }
            
            .page-header {
                padding: 6rem 0 3rem;
            }
            
            .categories-section, .shows-section, .cta-section {
                padding: 3rem 0;
            }
            
            .footer {
                padding: 3rem 0 2rem;
            }

        }

        .audio-player-section {
            padding: 40px 0;
        }
        
        .audio-player {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }
        
        .audio-player:hover {
            transform: translateY(-5px);
        }
        
        .player-thumbnail {
            position: relative;
            width: 120px;
            height: 120px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
        }
        
        .player-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .player-thumbnail:hover img {
            transform: scale(1.05);
        }
        
        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .player-thumbnail:hover .play-overlay {
            opacity: 1;
        }
        
        .play-btn-lg {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a2e;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .play-btn-lg:hover {
            background: white;
            transform: scale(1.1);
        }
        
        .ms-3 h6 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .ms-3 p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }
        
        .player-controls {
            padding: 0 20px;
        }
        
        
        
        .control-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        .control-btn-lg {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            border: none;
            color: #1a1a2e;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 15px;
        }
        
        .control-btn-lg:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }
        
        .progress-container {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        
        .progress {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin: 0;
            cursor: pointer;
            position: relative;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #4cc9f0, #4361ee);
            border-radius: 10px;
            width: 0%;
            transition: width 0.1s linear;
            position: relative;
        }
        
        .progress-bar::after {
            content: '';
            position: absolute;
            right: -5px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        
        .progress:hover .progress-bar::after {
            opacity: 1;
        }
        
        .player-options {
            display: flex;
            gap: 15px;
        }
        
        .option-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #875fdd;
            border: none;
            color: white;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .option-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        .option-btn.active {
            background: rgba(255, 255, 255, 0.2);
            color: #4cc9f0;
        }
        
        .volume-container {
            position: relative;
            display: inline-block;
        }
        
        .volume-slider {
            position: absolute;
            bottom: 45px;
            left: 50%;
            transform: translateX(-50%) rotate(180deg);
            width: 100px;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            cursor: pointer;
            display: none;
        }
        
        .volume-slider .volume-progress {
            height: 100%;
            background: linear-gradient(90deg, #4cc9f0, #4361ee);
            border-radius: 10px;
            width: 70%;
        }
        
        .volume-container:hover .volume-slider {
            display: block;
        }
        
        @media (max-width: 768px) {
            .player-thumbnail {
                width: 80px;
                height: 80px;
            }
            
            .control-btn-lg {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .control-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            .ms-3 h6 {
                font-size: 16px;
            }
            
            .ms-3 p {
                font-size: 12px;
            }
            
            .player-options {
                gap: 10px;
            }
            
            .option-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }

        .light-theme .navbar-toggler {
           color: #000;
        }

        .dark-theme .navbar {
            background-color: #000; 
        }
        