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

body {
  font-family: "Times New Roman", Times, Georgia, serif;
  background: #f8f7f4;
  color: #000;
  min-height: 100vh;
  padding: 40px 30px;
  text-transform: lowercase;
}

header {
  margin-bottom: 0;
}

#orbit-strip {
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  line-height: 1.2;
  color: #b0b0a8;
  margin: 20px 0;
  padding: 0;
  white-space: pre;
  overflow: hidden;
  user-select: none;
  margin-left: -30px;
  margin-right: -30px;
}

h1 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

nav {
  display: flex;
  gap: 16px;
}

nav a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid #ccc;
}

nav a:hover {
  color: #000;
  border-bottom-color: #000;
}

h2 {
  font-size: 0.75rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 8px;
}

li a {
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid #000;
}

li a:hover {
  border-bottom-color: #666;
}

.desc {
  color: #999;
  font-size: 0.85rem;
}

.github-link {
  color: #999;
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.github-link:hover {
  color: #666;
  border-bottom-color: #999;
}

#spotify-recent,
#spotify-top {
  display: flex;
  gap: 6px;
}

.album-wrap {
  position: relative;
  text-decoration: none;
}

.album-icon {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.album-tip {
  display: none;
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 10px;
  white-space: nowrap;
  font-size: 0.75rem;
  color: #666;
  z-index: 10;
}

.album-tip span {
  display: block;
  line-height: 1.4;
}

.tip-track {
  color: #000;
}

.album-wrap:hover .album-tip {
  display: block;
}

.album-wrap:first-child .album-tip,
.album-wrap:nth-child(2) .album-tip {
  left: 0;
  transform: none;
}

.album-wrap:last-child .album-tip {
  left: auto;
  right: 0;
  transform: none;
}

#league-recent {
  display: flex;
  gap: 6px;
}

.champ-wrap {
  position: relative;
}

.champ-icon {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  display: block;
}

.champ-icon.loss {
  opacity: 0.4;
}

.champ-wrap:hover .champ-icon.loss {
  opacity: 0.7;
}

.champ-tip {
  display: none;
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 10px;
  white-space: nowrap;
  font-size: 0.75rem;
  color: #666;
  gap: 6px;
  z-index: 10;
}

.champ-tip span {
  display: block;
  line-height: 1.4;
}

.tip-win { color: #5a8a5a; }
.tip-loss { color: #a05a5a; }

.champ-wrap:hover .champ-tip {
  display: block;
}

.champ-wrap:first-child .champ-tip,
.champ-wrap:nth-child(2) .champ-tip {
  left: 0;
  transform: none;
}

.champ-wrap:last-child .champ-tip {
  left: auto;
  right: 0;
  transform: none;
}

section + section {
  margin-top: 40px;
}

section.compact + section.compact {
  margin-top: 20px;
}

@media (max-width: 600px) {
  body {
    padding: 20px 15px;
  }
  #orbit-strip {
    margin-left: -15px;
    margin-right: -15px;
  }
}
