:root {
  --primary: linear-gradient(135deg, #f68e23 0%, #ff9f43 100%);
  --secondary: linear-gradient(135deg, #f68e23 0%, #ff9f43 100%);
  --accent: linear-gradient(135deg, #f68e23 0%, #ff9f43 100%);
  --success: linear-gradient(135deg, #f68e23 0%, #ff9f43 100%);
  --bg-light: #fafbff;
  --bg-dark: #0f0f23;
  --card-light: rgba(255, 255, 255, 0.9);
  --card-dark: rgba(255, 255, 255, 0.1);
  --text-light: #2d3748;
  --text-dark: #ffffff;
  --glass: rgba(255, 255, 255, 0.15);
  --shadow: 0 8px 32px rgba(246, 142, 35, 0.37);
  --glow: 0 0 20px rgba(246, 142, 35, 0.5);
}

[data-theme="dark"] {
  --bg-color: var(--bg-dark);
  --text-color: var(--text-dark);
  --card-bg: var(--card-dark);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-light);
  overflow-x: hidden;
  transition: all 0.3s ease;
}

[data-theme="dark"] body {
  background: var(--bg-dark);
  color: var(--text-dark);
}

/* Floating Background Elements */
.floating-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.float-element {
  position: absolute;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.float-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  background: linear-gradient(135deg, rgba(246, 142, 35, 0.3), rgba(255, 159, 67, 0.3));
}

.float-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  background: linear-gradient(135deg, rgba(246, 142, 35, 0.3), rgba(255, 159, 67, 0.3));
}

.float-3 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
  background: linear-gradient(135deg, rgba(246, 142, 35, 0.3), rgba(255, 159, 67, 0.3));
}

.float-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: 1s;
  background: linear-gradient(135deg, rgba(246, 142, 35, 0.3), rgba(255, 159, 67, 0.3));
}

.float-5 {
  width: 140px;
  height: 140px;
  top: 10%;
  right: 5%;
  animation-delay: 3s;
  background: linear-gradient(135deg, rgba(246, 142, 35, 0.2), rgba(255, 159, 67, 0.2));
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(246, 142, 35, 0.7));
  transition: filter 0.3s ease;
}

.logo-text:hover {
  filter: drop-shadow(0 0 18px rgba(246, 142, 35, 0.9));
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

[data-theme="dark"] .nav-link {
  color: var(--text-dark);
}

.nav-link:hover {
  color: #f68e23;
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.nav-link:hover .equalizer {
  opacity: 1;
}

.equalizer {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eq-bar {
  width: 2px;
  background: #f68e23;
  border-radius: 1px;
  animation: equalizer 1.5s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 12px; animation-delay: 0.2s; }
.eq-bar:nth-child(3) { height: 6px; animation-delay: 0.4s; }
.eq-bar:nth-child(4) { height: 10px; animation-delay: 0.6s; }
.eq-bar:nth-child(5) { height: 8px; animation-delay: 0.8s; }

@keyframes equalizer {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

@keyframes soundWave {
  0%, 100% { height: 3px; }
  25% { height: 6px; }
  50% { height: 4px; }
  75% { height: 8px; }
}

@keyframes musicBounce {
  0%, 100% { transform: translateY(-2px) scale(1.05); }
  50% { transform: translateY(-4px) scale(1.08); }
}



.admin-link {
  background: var(--secondary);
  color: white;
}

.theme-toggle {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(180deg);
  box-shadow: var(--glow);
}

/* Radio Section */
.radio-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff5eb 100%);
  position: relative;
  padding: 8rem 2rem 4rem;
}

[data-theme="dark"] .radio-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
}

.radio-container {
  max-width: 800px;
  text-align: center;
}

.hero-content {
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: slideInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  animation: slideInUp 1s ease-out 0.2s both;
  color: var(--text-light);
}

[data-theme="dark"] .hero-subtitle {
  color: var(--text-dark);
}

.radio-player {
  background: var(--card-light);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  animation: slideInUp 1s ease-out 0.4s both;
  color: var(--text-light);
  position: relative;
  overflow: visible;
  z-index: 5;
}

[data-theme="dark"] .radio-player {
  background: var(--card-dark);
  color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.1);
}

.radio-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 auto 2rem;
  position: relative;
  transition: none;
  box-shadow: 0 20px 40px rgba(246, 142, 35, 0.3);
  overflow: hidden;
}

.radio-circle:active {
  transform: none;
}

.radio-logo {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
}

.radio-circle:hover {
  box-shadow: 0 25px 50px rgba(246, 142, 35, 0.4);
}

.radio-circle.playing {
  animation: pulse 2s ease-in-out infinite;
}

.radio-circle.playing .radio-logo {
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.play-button {
  color: white;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.radio-circle:hover .play-button {
  opacity: 1;
}

.radio-circle:hover .play-button {
  transform: scale(1.1);
}

.radio-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.wave {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: wave 2s ease-out infinite;
}

.radio-circle.playing .wave {
  animation-play-state: running;
}

.wave-1 {
  width: 280px;
  height: 280px;
  top: 10px;
  left: 10px;
  animation-delay: 0s;
}

.wave-2 {
  width: 320px;
  height: 320px;
  top: -10px;
  left: -10px;
  animation-delay: 0.5s;
}

.wave-3 {
  width: 360px;
  height: 360px;
  top: -30px;
  left: -30px;
  animation-delay: 1s;
}

@keyframes wave {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.radio-info {
  margin-bottom: 2rem;
}

.now-playing {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.track-info {
  font-size: 1rem;
  opacity: 0.8;
  color: var(--text-light);
}

[data-theme="dark"] .track-info {
  color: var(--text-dark);
}

.radio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.control-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(246, 142, 35, 0.3);
}

.control-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(246, 142, 35, 0.4);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  color: var(--text-light);
}

[data-theme="dark"] .volume-control {
  color: var(--text-dark);
}

.volume-slider {
  width: 100px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  outline: none;
  appearance: none;
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(246, 142, 35, 0.3);
}

/* Search Section */
.search-section {
  padding: 4rem 2rem;
  background: var(--card-light);
  backdrop-filter: blur(20px);
}

[data-theme="dark"] .search-section {
  background: var(--card-dark);
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.search-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #f68e23, #ff9f43);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(246, 142, 35, 0.3);
  animation: searchIconFloat 3s ease-in-out infinite;
}

@keyframes searchIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.search-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.search-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  opacity: 0.7;
  margin-bottom: 2rem;
}

[data-theme="dark"] .search-subtitle {
  color: var(--text-dark);
}

.search-input, .category-filter {
  flex: 1;
  min-width: 180px;
  padding: 1.2rem 2rem;
  border: 2px solid rgba(246, 142, 35, 0.2);
  border-radius: 30px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-light);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 600px;
}

[data-theme="dark"] .search-input,
[data-theme="dark"] .category-filter {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .category-filter option {
  background: var(--bg-dark);
  color: #ffffff;
}

.search-input:focus, .category-filter:focus {
  outline: none;
  border-color: rgba(246, 142, 35, 0.6);
  box-shadow: 0 0 20px rgba(246, 142, 35, 0.2);
  transform: translateY(-2px);
}

/* Content Sections */
.content-section {
  padding: 6rem 4rem;
  max-width: 100%;
  margin: 0 auto;
  color: var(--text-light);
  border-bottom: none;
  margin-bottom: 0;
}



.radio-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem auto;
  width: 80%;
  gap: 2rem;
}

.radio-icon {
  color: #f68e23;
  background: rgba(246, 142, 35, 0.1);
  border-radius: 50%;
  padding: 1rem;
  box-shadow: 0 0 20px rgba(246, 142, 35, 0.3);
  animation: iconPulse 3s ease-in-out infinite;
  position: relative;
  overflow: visible;
}

.icon-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #f68e23;
  border-radius: 50%;
  animation: sparkleFloat 2s ease-in-out infinite;
}

.sparkle:nth-child(1) {
  top: -10px;
  right: -5px;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  bottom: -8px;
  left: -8px;
  animation-delay: 0.7s;
}

.sparkle:nth-child(3) {
  top: 50%;
  right: -12px;
  animation-delay: 1.4s;
}

.wave-line {
  flex: 1;
  height: 4px;
  background: linear-gradient(90deg, transparent, #f68e23 20%, #ff9f43 50%, #f68e23 80%, transparent);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  animation: lineWiggle 3s ease-in-out infinite;
}

.wave-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: waveFlow 2s ease-in-out infinite;
}

.wave-dots {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  transform: translateY(-50%);
}

.dot {
  width: 8px;
  height: 8px;
  background: #ff9f43;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 159, 67, 0.5);
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
.dot:nth-child(4) { animation-delay: 0.6s; }
.dot:nth-child(5) { animation-delay: 0.8s; }

@keyframes iconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(246, 142, 35, 0.3); }
  50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(246, 142, 35, 0.5); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(5deg); }
  75% { transform: translateY(2px) rotate(-3deg); }
}

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(0); opacity: 0; }
  50% { transform: translateY(-15px) scale(1); opacity: 1; }
}

@keyframes lineWiggle {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.2); }
}

@keyframes dotBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.2); }
}

@keyframes waveFlow {
  0% { left: -100%; }
  100% { left: 100%; }
}

[data-theme="dark"] .blog-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-top-color: #f68e23;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .blog-subtitle {
  color: var(--text-dark);
}

[data-theme="dark"] .blog-title-container h2 {
  color: var(--text-dark);
}

[data-theme="dark"] .blog-filter {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-dark);
  border-color: rgba(246, 142, 35, 0.4);
}

[data-theme="dark"] .blog-filter:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #f68e23;
}

[data-theme="dark"] .content-section {
  color: var(--text-dark);
  background: var(--bg-dark);
}

[data-theme="dark"] #podcasts,
[data-theme="dark"] #interviews,
[data-theme="dark"] #posts {
  background: var(--bg-dark);
  color: var(--text-dark);
}

[data-theme="dark"] main {
  background: var(--bg-dark);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.section-header .category-filter {
  min-width: 150px;
  max-width: 200px;
}

.content-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.blog-section {
  background: linear-gradient(135deg, #ffffff 0%, #fff5eb 100%);
  border-radius: 0;
  padding: 6rem 4rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  border: none;
  border-top: 3px solid #f68e23;
  box-shadow: inset 0 10px 30px rgba(246, 142, 35, 0.05);
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(246, 142, 35, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 159, 67, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.blog-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #f68e23 20%, #ff9f43 50%, #f68e23 80%, transparent);
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  animation: popOutFromCenter 3s ease-out infinite;
  left: 50%;
  top: 50%;
}

.decor-1 {
  animation-delay: 0s;
}

.decor-2 {
  animation-delay: 0.5s;
}

.decor-3 {
  animation-delay: 1s;
}

.decor-4 {
  animation-delay: 1.5s;
}

.decor-5 {
  animation-delay: 2s;
}

.decor-6 {
  animation-delay: 2.5s;
}

@keyframes popOutFromCenter {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  15% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  30% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--pop-x)), calc(-50% + var(--pop-y))) scale(0.5);
  }
}

.decor-1 { --pop-x: -150px; --pop-y: -120px; }
.decor-2 { --pop-x: 150px; --pop-y: -100px; }
.decor-3 { --pop-x: -180px; --pop-y: 0px; }
.decor-4 { --pop-x: 150px; --pop-y: 120px; }
.decor-5 { --pop-x: -150px; --pop-y: 130px; }
.decor-6 { --pop-x: 170px; --pop-y: 0px; }

.sound-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.wave-bar {
  width: 4px;
  background: linear-gradient(180deg, #f68e23, #ff9f43);
  border-radius: 2px;
  animation: waveAnimation 1.2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(246, 142, 35, 0.5);
}

.wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 30px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 20px; animation-delay: 0.5s; }

.vinyl-record {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f68e23, #ff9f43);
  animation: vinylSpin 4s linear infinite;
  box-shadow: 0 0 20px rgba(246, 142, 35, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
  flex-shrink: 0;
}

.vinyl-record::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.vinyl-record::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.microphone {
  color: #f68e23;
  filter: drop-shadow(0 0 10px rgba(246, 142, 35, 0.5));
  animation: micBounce 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes waveAnimation {
  0%, 100% { transform: scaleY(0.5); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes micBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes morphShape {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}



.blog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blog-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  width: 100%;
}

.blog-icon {
  background: linear-gradient(135deg, #f68e23, #ff9f43);
  border-radius: 50%;
  padding: 1.5rem;
  color: white;
  box-shadow: 0 15px 40px rgba(246, 142, 35, 0.3);
  animation: blogIconFloat 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  margin-bottom: 1rem;
}

.blog-icon svg {
  width: 40px;
  height: 40px;
}

.blog-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: iconShine 3s ease-in-out infinite;
}

.blog-title-container h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2d3748;
  position: relative;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.blog-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  opacity: 0.75;
  font-weight: 400;
  margin: 0 auto;
  line-height: 1.7;
  max-width: 700px;
}

.blog-filter {
  background: white;
  border: 2px solid rgba(246, 142, 35, 0.3);
  border-radius: 25px;
  padding: 0.9rem 2rem;
  box-shadow: 0 8px 20px rgba(246, 142, 35, 0.1);
  min-width: 200px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.blog-filter:hover {
  border-color: #f68e23;
  box-shadow: 0 10px 25px rgba(246, 142, 35, 0.2);
  transform: translateY(-2px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes blogIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-10px) rotate(3deg) scale(1.05); }
  66% { transform: translateY(5px) rotate(-2deg) scale(0.98); }
}

@keyframes iconShine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

@keyframes blogBgFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

#postsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.content-card {
  background: var(--card-light);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .content-card {
  background: var(--card-dark);
  color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.1);
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all 0.6s ease;
}

.content-card:hover::before {
  left: 100%;
}

.content-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(246, 142, 35, 0.5);
}

.content-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.podcast-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #2d3748;
  background: none;
  -webkit-text-fill-color: unset;
}

[data-theme="dark"] .podcast-card h3 {
  color: var(--text-dark);
}

.content-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
  color: inherit;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.content-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 1rem;
  color: inherit;
}

.play-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(246, 142, 35, 0.3);
}

.play-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 24px rgba(246, 142, 35, 0.4);
}

.podcast-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 245, 0.95));
  border: 2px solid rgba(246, 142, 35, 0.1);
}

.podcast-thumbnail-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}

[data-theme="dark"] .podcast-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(246, 142, 35, 0.08));
  border-color: rgba(246, 142, 35, 0.2);
}

.podcast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.podcast-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f68e23, #ff9f43);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(246, 142, 35, 0.3);
}

.podcast-stats {
  display: flex;
  gap: 0.5rem;
}

.play-count {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(246, 142, 35, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f68e23;
}

.podcast-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: rgba(246, 142, 35, 0.1);
  color: #f68e23;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.podcast-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(246, 142, 35, 0.1);
}

.podcast-category {
  background: linear-gradient(135deg, #f68e23, #ff9f43);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.podcast-play-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
}

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

.modal-content {
  background: var(--card-light);
  backdrop-filter: blur(20px);
  margin: 10% auto;
  padding: 3rem;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  animation: modalSlideIn 0.3s ease-out;
  color: var(--text-light);
}

[data-theme="dark"] .modal-content {
  background: var(--card-dark);
  color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.1);
}

.podcast-player-visual {
  margin-bottom: 2rem;
}

.podcast-logo-container {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(246, 142, 35, 0.3);
  position: relative;
  overflow: hidden;
}

.podcast-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.podcast-logo.playing {
  animation: rotate 3s linear infinite;
}

.podcast-modal #audioTitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes modalSlideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close:hover {
  color: var(--primary);
  transform: scale(1.2);
}

#audioPlayer {
  width: 100%;
  margin-top: 2rem;
  border-radius: 10px;
}

/* Animations */
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes musicPulse {
  0%, 100% { 
    border-bottom-color: rgba(246, 142, 35, 0.6);
    box-shadow: 0 0 0 rgba(246, 142, 35, 0.4);
  }
  50% { 
    border-bottom-color: rgba(246, 142, 35, 0.9);
    box-shadow: 0 0 20px rgba(246, 142, 35, 0.6);
  }
}

/* Blog Style Articles */
.blog-post {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.post-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.post-category {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-date {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.9rem;
}

[data-theme="dark"] .post-date {
  color: var(--text-dark);
}

.post-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2.post-title {
  font-size: 1.75rem !important;
}

.post-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.post-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 2rem;
  white-space: pre-line;
}

[data-theme="dark"] .post-excerpt {
  color: var(--text-dark);
}

.post-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .post-title {
    font-size: 1.75rem;
  }
  
  .post-excerpt {
    font-size: 1rem;
  }

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .radio-circle {
    width: 200px;
    height: 200px;
  }

  .radio-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .search-container {
    flex-direction: column;
  }

  .radio-player {
    padding: 2rem;
  }
}

/* Footer */
.footer {
  background: #1a1a2e;
  padding: 3rem 2rem;
  text-align: center;
}

[data-theme="light"] .footer {
  background: #2d3748;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(246, 142, 35, 0.8), 0 0 60px rgba(246, 142, 35, 0.5), 0 0 90px rgba(246, 142, 35, 0.3);
  object-fit: cover;
  animation: footerLogoGlow 3s ease-in-out infinite;
}

@keyframes footerLogoGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(246, 142, 35, 0.8), 0 0 60px rgba(246, 142, 35, 0.5), 0 0 90px rgba(246, 142, 35, 0.3); }
  50% { box-shadow: 0 0 50px rgba(246, 142, 35, 1), 0 0 80px rgba(246, 142, 35, 0.7), 0 0 110px rgba(246, 142, 35, 0.5); }
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #f68e23;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ff9f43;
  transform: translateY(-2px);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 10000;
  max-width: 300px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.error {
  background: rgba(220, 38, 38, 0.95);
}
