.apple-daily-container {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.2rem;
}

.apple-daily-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.apple-card {
  padding: 1.9rem;
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.apple-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 35px 80px rgba(0,0,0,.15);
}

.dark .apple-card {
  background: rgba(22,22,22,0.7);
  color: #eee;
}

.apple-title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: .8rem;
}

.typing-text {
  min-height: 4.5em;
  line-height: 1.9;
  font-size: 1rem;
}

.apple-btn {
  align-self: flex-start;
  margin-top: 1rem;
  border: none;
  border-radius: 999px;
  padding: .45rem 1.2rem;
  background: linear-gradient(135deg, #5b6cff, #8b5cf6);
  color: white;
  cursor: pointer;
}

.music-cover {
  width: 100%;
  border-radius: 16px;
  margin: .7rem 0;
}

.music-name {
  font-weight: 600;
}

.music-artist {
  opacity: .7;
  font-size: .9rem;
}

@media (max-width: 768px) {
  .apple-daily-grid {
    grid-template-columns: 1fr;
  }
}
.navbar .blog-title {
  display: flex;
  align-items: center;
  gap: 0.3rem; /* 文字和图标间距 */
}

.navbar .blog-title a {
  color: inherit; /* 和文字同色 */
  font-size: 1rem;
  transition: color 0.2s;
}

.navbar .blog-title a:hover {
  color: #4078c0; /* GitHub 蓝 */
}
