body {
  background: url("/assets/bg-af12dd80.jpg");
  background-attachment: fixed;
  background-size: cover;
  color: #333;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

.site {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero {
  width: 100%;
  padding: 2rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
}

.main-content {
  flex: 1;
  min-width: 300px;
}

.sidebar {
  width: 300px;
}

.box {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.episode-list {
  list-style: none;
  padding: 0;
}

.episode-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.episode-list li:last-child {
  border-bottom: none;
}

.episode-list a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.2s;
}

.episode-list a:hover {
  color: #2980b9;
}

.author-bio {
  background-color: #f8f9fa;
}

/* Offset anchor for episode jumps */
.episode-anchor {
  display: block;
  position: relative;
  top: -80px; /* Adjust this value to match your header height */
  visibility: hidden;
}

/* Social links removed */

.to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.to-top:hover {
  background-color: #f8f9fa;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* Completely remove all focus indicators */
button.to-top {
  -webkit-tap-highlight-color: transparent !important;
}

button.to-top,
button.to-top:focus,
button.to-top:active,
button.to-top:focus-visible,
button.to-top:focus-within {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

.to-top svg {
  margin-top: -4px;
}

.to-top:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .site {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
  }
}
