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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #22c55e, #3b82f6, #10b981, #1d4ed8);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: -1;
}

.background-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.header {
  padding: 60px 0 0;
  text-align: center;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 20px;
}

.main {
  padding: 0 0 40px 0;
}

.hero {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px 0;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-title .highlight {
  color: #a3e635;
  -webkit-text-fill-color: #a3e635;
  background: none;
}

.hero-description {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-embed {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  height: 152px;
}

.spotify-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.placeholder-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.placeholder-icon {
  color: #1db954;
  opacity: 0.8;
}

.placeholder-text {
  text-align: left;
}

.placeholder-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.placeholder-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.placeholder-button {
  background: rgba(29, 185, 84, 0.2);
  border: 1px solid #1db954;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.placeholder-button:hover {
  background: rgba(29, 185, 84, 0.3);
  transform: translateY(-1px);
}

.hero-platforms {
  margin-top: 40px;
}

.platforms-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.hosts {
  margin-bottom: 80px;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.host-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.host-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.host-avatar {
  margin-bottom: 20px;
}

.host-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.host-image:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.host-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.host-bio {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.social-link.linkedin:hover {
  background: rgba(0, 119, 181, 0.3);
  border-color: #0077b5;
}

.social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    rgba(225, 48, 108, 0.3),
    rgba(252, 175, 69, 0.3)
  );
  border-color: #e1306c;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.platform-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.platform-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.platform-card.spotify .platform-icon svg {
  color: #1db954;
}

.platform-card.apple .platform-icon svg {
  color: #000000;
}

.platform-card.youtube .platform-icon svg {
  color: #ff0000;
}

.platform-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.platform-card p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.spotify:hover {
  background: rgba(29, 185, 84, 0.2);
  border-color: #1db954;
}

.apple:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: #000000;
}

.youtube:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: #ff0000;
}

.themes {
  margin-bottom: 80px;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.theme-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.theme-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.theme-card p {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 1rem;
}

.about {
  margin-bottom: 60px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-details {
  margin-top: 25px;
  list-style: none;
  padding: 0;
}

.about-details li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  opacity: 0.9;
  line-height: 1.6;
}

.about-details li::before {
  content: "•";
  color: #a3e635;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.1);
}

.footer p {
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }

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

  .hero-description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hosts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .platform-card {
    padding: 25px 15px;
  }

  .platform-icon svg {
    width: 32px;
    height: 32px;
  }

  .platform-card h4 {
    font-size: 1rem;
  }

  .themes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-content {
    padding: 30px 20px;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }

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

  .hero {
    padding: 40px 0;
  }

  .host-card,
  .platform-card {
    padding: 30px 20px;
  }
}

html {
  scroll-behavior: smooth;
}
