body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #0f0f12;
  color: #e6e6eb;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.site-header {
  padding: 2.5rem 0;
}

.identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.95;
}

.handle {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}

.tagline {
  margin-top: 0.8rem;
  max-width: 52ch;
  color: #b8b8c0;
}

.links {
  margin-top: 1rem;
}

.links a {
  margin-right: 1rem;
  text-decoration: none;
}

.intro h1 {
  margin-bottom: 0.25rem;
}

.links a {
  color: #bc2aff;
  font-weight: 500;
  margin-right: 1rem;
}

.links a:hover {
  color: #d98bff;
}

.links a:visited {
  color: #bc2aff; /* same as normal */
}


.feed {
  margin-top: 3rem;
}

.feed h2 {
  margin-bottom: 1rem;
}

.post {
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.post:not(:first-child) {
  border-top: 1px solid #2a2a30;
}

.post a {
  color: #7aa2ff; /* cooler tone than header */
  text-decoration: none;
}

.post a:hover {
  text-decoration: underline;
}

.post a:visited {
  color: #5f7ed6;
}



.post time {
  font-size: 0.85rem;
  opacity: 0.6;
}

.media img {
  max-width: 100%;
  border-radius: 6px;
  margin-top: 0.75rem;
}

.steam-widget {
    display: block;
}

.steam-mobile-card {
    display: none;
}

@media (max-width: 768px) {

      .steam-widget {
        display: none;
    }

    .steam-mobile-card {
        display: block;
        max-width: 100%;
        margin: 1rem 0;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        text-align: left;
    }

    .steam-mobile-card img {
        width: 100%;
        display: block;
    }

  .steam-mobile-card .steam-button {
      position: absolute;
      top: 50%;             /* middle vertically */
      right: 12px;           /* stay at the right edge */
      transform: translateY(-50%);  /* shift button up by half its height to truly center it */
      background: #609219bf;
      color: #ffffff;
      padding: 10px 18px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.95rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  }

  .steam-mobile-card .steam-button:hover {
      background: #436710;
  }
}
