.tweets-page {
  min-height: 70vh;
  background: #fdfaff;
}

.tweets-page-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 96px;
}

.tweets-page-back {
  display: inline-block;
  margin-bottom: 18px;
  color: #b985e8;
  text-decoration: none;
  font-size: 14px;
}

.tweets-page-back:hover {
  text-decoration: underline;
}

.tweets-page-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  color: #4a3760;
  font-size: 1.6rem;
  font-weight: 700;
}

.tweets-page-title::before {
  content: '';
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  background: #c9a5ec;
  filter: drop-shadow(0 0 6px rgba(201, 165, 236, 0.45));
}

.tweets-page-subtitle {
  margin: 0 0 28px;
  color: #9886a8;
  font-size: 14px;
}

.tweets-list {
  display: flex;
  flex-direction: column;
}

.tweet-list-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px dashed rgba(201, 165, 236, 0.35);
  border-radius: 8px;
  color: inherit;
  font-family: 'Noto Sans SC', 'Noto Sans JP', 'Quicksand', system-ui, sans-serif;
  text-decoration: none;
  transition: background 0.2s ease, padding 0.2s ease;
}

.tweet-list-card:last-child {
  border-bottom: 0;
}

.tweet-list-card:hover {
  padding-left: 12px;
  background: rgba(201, 165, 236, 0.08);
}

.tweet-list-time {
  flex: 0 0 90px;
  padding-top: 6px;
  color: #a89cb4;
  font-family: 'Quicksand', 'Noto Sans SC', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.tweet-list-text {
  flex: 1;
  min-width: 0;
  color: #2f2542;
  font-size: 14.5px;
  line-height: 1.85;
  letter-spacing: 0.03em;
  white-space: pre-wrap;
  word-break: break-word;
}

.tweet-list-sparkle {
  color: #b985e8;
  font-size: 13px;
  filter: drop-shadow(0 0 3px rgba(185, 133, 232, 0.4));
}

.tweets-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.tweets-page-btn {
  padding: 10px 22px;
  border: 1px solid rgba(201, 165, 236, 0.4);
  border-radius: 999px;
  background: #fff;
  color: #6c6077;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.tweets-page-btn:hover:not(:disabled) {
  border-color: #b985e8;
  background: rgba(201, 165, 236, 0.12);
  color: #4a3760;
}

.tweets-page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.tweets-status {
  padding: 60px 20px;
  color: #9886a8;
  text-align: center;
}

.tweets-status.error {
  color: #c06060;
}

@media (max-width: 520px) {
  .tweets-page-container {
    padding: 24px 14px 64px;
  }

  .tweet-list-card {
    padding: 14px 0;
  }
}
