/* Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

/* Fixed Countdown */
.fixed-countdown {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff1493 0%, #c71585 50%, #8b008b 100%);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  z-index: 999;
  border-bottom: 2px solid #ffd700;
  box-shadow: 0 2px 15px rgba(255, 20, 147, 0.4);
  animation: countdownGlow 2s ease-in-out infinite alternate;
}

.countdown-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.countdown-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px #ffd700;
  letter-spacing: 1px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.countdown-timer .countdown-item {
  background: rgba(255, 215, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  min-width: 80px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.countdown-timer .countdown-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  border-color: #ffd700;
}

.countdown-timer .countdown-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #ffd700;
  text-shadow: 0 0 8px #ffd700;
}

.countdown-timer .countdown-label {
  font-size: 0.8rem;
  opacity: 0.9;
  color: #fff;
  font-weight: 500;
}

@keyframes countdownGlow {
  0% {
    box-shadow: 0 2px 15px rgba(255, 20, 147, 0.4);
  }
  100% {
    box-shadow: 0 2px 25px rgba(255, 215, 0, 0.6);
  }
}

/* Header */
.header {
  position: fixed;
  top: 60px; /* Adjusted to make room for countdown */
  left: 0;
  right: 0;
  background: rgba(255, 20, 147, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  z-index: 998; /* Lower than fixed-countdown but still high */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 3px solid #ff69b4;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

.logo h1 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo span {
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
  transform: scale(1.1);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px #ffd700;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(
    135deg,
    #ff69b4 0%,
    #ff1493 25%,
    #c71585 50%,
    #8b008b 75%,
    #4b0082 100%
  );
  overflow: hidden;
  animation: backgroundShift 8s ease-in-out infinite;
  margin-top: 120px; /* Added margin to account for fixed countdown and header */
}

.hero-content {
  text-align: center;
  color: #fff;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.text-animation {
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff8000,
    #ffff00,
    #00ff00,
    #0080ff,
    #8000ff,
    #ff0080,
    #ff0000
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 0.5rem;
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: fadeInUp 1s ease 0.3s both;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ffd700;
  font-size: 2rem;
  animation: bounce 2s infinite;
  text-shadow: 0 0 10px #ffd700;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.element {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  background: rgba(255, 105, 180, 0.4);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
}

.element:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
  background: rgba(255, 20, 147, 0.4);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}

.element:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
  background: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Section Styles */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #fff;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  box-shadow: 0 0 10px #ffd700;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 50%, #ffb6c1 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 20, 147, 0.1) 10px,
    rgba(255, 20, 147, 0.1) 20px
  );
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.highlight-text {
  font-size: 1.3rem;
  color: #ff1493;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(255, 20, 147, 0.3);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 20, 147, 0.3);
}

.stat-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
  border-color: #ff1493;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff1493;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(255, 20, 147, 0.3);
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

/* Video Section */
.video-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 50%, #fff0f5 100%);
  position: relative;
}

.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 15px,
    rgba(255, 105, 180, 0.1) 15px,
    rgba(255, 105, 180, 0.1) 30px
  );
  pointer-events: none;
}

.video-container {
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.video-player {
  width: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
  transition: transform 0.3s ease;
  border: 3px solid #ff69b4;
}

.video-player:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 20, 147, 0.5);
}

.video-player video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 20, 147, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-player.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 215, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.play-button:hover {
  background: #ff1493;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.8);
}

.play-button i {
  font-size: 2rem;
  color: #333;
  transition: color 0.3s ease;
}

.play-button:hover i {
  color: white;
}

.video-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 20, 147, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.video-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  position: relative;
  z-index: 1;
}

/* Coming Soon Section - Messages */
#messages.coming-soon {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    #ff1493 0%,
    #c71585 25%,
    #8b008b 50%,
    #4b0082 75%,
    #2e0854 100%
  );
  color: #fff;
  animation: backgroundShift 10s ease-in-out infinite;
}

/* Coming Soon Section - Voice Recordings */
#voice-recordings.coming-soon {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    #8b008b 0%,
    #4b0082 25%,
    #2e0854 50%,
    #1a0033 75%,
    #0d001a 100%
  );
  color: #fff;
  animation: backgroundShift 12s ease-in-out infinite;
}

.coming-soon .section-title {
  color: #fff;
}

.coming-soon-content {
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 215, 0, 0.2);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  min-width: 120px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.countdown-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.countdown-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
}

.countdown-label {
  font-size: 1rem;
  opacity: 0.8;
}

.coming-soon-text {
  margin-bottom: 3rem;
}

.coming-soon-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
}

.coming-soon-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.photo-placeholder {
  background: rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.photo-placeholder:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  border-color: #ffd700;
}

.photo-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
  color: #ffd700;
}

/* Special styles for messages section */
#messages .photo-placeholder i {
  color: #ff69b4;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

/* Special styles for voice recordings section */
#voice-recordings .photo-placeholder i {
  color: #9370db;
  text-shadow: 0 0 10px rgba(147, 112, 219, 0.5);
}

.photo-placeholder span {
  font-size: 1rem;
  opacity: 0.8;
}

/* Fake Friends Section */
.fake-friends {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffe4e1 0%, #ffb6c1 50%, #ffe4e1 100%);
  position: relative;
}

.fake-friends::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(255, 20, 147, 0.1) 20px,
    rgba(255, 20, 147, 0.1) 40px
  );
  pointer-events: none;
}

.fake-friends-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.intro-text {
  margin-bottom: 3rem;
}

.intro-text h3 {
  font-size: 2rem;
  color: #ff1493;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(255, 20, 147, 0.3);
}

.intro-text p {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.friends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.friend-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.friend-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
  border-color: #ff1493;
}

.friend-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(45deg, #ffd700, #ff69b4, #ff1493);
  box-shadow: 0 0 10px #ffd700;
}

.friend-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.friend-info h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.friend-info p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.friend-status {
  display: flex;
  justify-content: center;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.fake {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  color: white;
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.5);
}

.coming-soon-notice {
  background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd700);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

.coming-soon-notice i {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.coming-soon-notice h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.coming-soon-notice p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #ff1493 0%, #c71585 50%, #8b008b 100%);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  border-top: 3px solid #ffd700;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes backgroundShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .fixed-countdown {
    padding: 0.3rem 0;
  }

  .countdown-title {
    font-size: 1rem;
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .countdown-timer .countdown-item {
    min-width: 60px;
    padding: 0.3rem 0.5rem;
  }

  .countdown-timer .countdown-number {
    font-size: 1.2rem;
  }

  .countdown-timer .countdown-label {
    font-size: 0.7rem;
  }

  .header {
    padding: 1rem;
    flex-direction: row;
    gap: 1rem;
    top: 80px; /* Adjusted for mobile */
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    margin-top: 140px; /* Adjusted for mobile */
  }

  .nav {
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .countdown-item {
    min-width: 100px;
    padding: 1.5rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .friends-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .friend-card {
    padding: 1.5rem;
  }

  .friend-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .nav {
    gap: 0.3rem;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.2rem 0.3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .countdown {
    flex-direction: column;
    align-items: center;
  }

  .countdown-item {
    min-width: 80px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Voice Recordings Section */
.voice-recordings {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #c71585 100%);
  padding: 4rem 0;
  position: relative;
}

.voice-recordings::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.voice-recordings-content {
  position: relative;
  z-index: 2;
}

.voice-recordings .intro-text {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.voice-recordings .intro-text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-style: italic;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.voice-recordings .intro-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Audio Player Styles */
.audio-player-container {
  max-width: 800px;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.audio-player-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.5);
}

.audio-player {
  width: 100%;
}

.audio-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.audio-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}

.audio-title i {
  color: #ffd700;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.audio-duration {
  color: #ffd700;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.audio-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: none;
  color: #333;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.audio-play-btn:active {
  transform: scale(0.95);
}

.audio-progress {
  flex: 1;
  min-width: 200px;
}

.audio-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  cursor: pointer;
  position: relative;
}

.audio-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.audio-time {
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.audio-volume {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.audio-volume i {
  color: #ffd700;
  font-size: 1.2rem;
}

.volume-slider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #ffd700;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #ffd700;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.audio-description {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.audio-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Upcoming Recordings */
.upcoming-recordings {
  text-align: center;
  color: white;
}

.upcoming-recordings h4 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.recordings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.recording-placeholder {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem 1rem;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.recording-placeholder:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.recording-placeholder i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  display: block;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.recording-placeholder span {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.recording-placeholder small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive Audio Player */
@media (max-width: 768px) {
  .audio-player-container {
    padding: 1.5rem;
    margin: 0 1rem 2rem;
  }

  .audio-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .audio-progress {
    min-width: 100%;
  }

  .audio-volume {
    justify-content: center;
  }

  .recordings-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .recording-placeholder {
    padding: 1.5rem 1rem;
  }

  .recording-placeholder i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .audio-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .audio-title {
    font-size: 1.1rem;
  }

  .audio-play-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .recordings-grid {
    grid-template-columns: 1fr;
  }
}
