/*
Theme Name: Jay Anteros
Theme URI: https://jayanteros.com
Author: jayanteros.com
Description: Single-page link site for recording artist Jay Anteros. Black theme, inline video, rich music cards.
Version: 1.7
License: GNU General Public License v2 or later
Text Domain: jayanteros
*/

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

html, body {
  background: #000;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body {
  padding: 48px 20px 80px;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

.bio {
  font-size: 14px;
  color: #999;
  margin-bottom: 32px;
}

/* Inline video */
.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 28px;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Link list */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}

.link:hover, .link:focus {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.link:active { transform: translateY(0); }

/* Rich variant: thumbnail + label/sublabel + platform icon */
.link--rich {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  text-align: left;
}

.link-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #0a0a0a;
}


.link-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-label {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-sub {
  font-size: 12px;
  color: #999;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-icon {
  font-size: 20px;
  color: #888;
  flex-shrink: 0;
  margin-left: 8px;
}

/* Simple variant: centered icon + label */
.link--simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 500;
}

.link--simple i {
  font-size: 20px;
  width: 22px;
  text-align: center;
}

/* Footer credit */
.credit {
  margin-top: 36px;
  text-align: center;
  font-size: 12px;
}

.credit a {
  color: #666;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.18s ease;
}

.credit a:hover, .credit a:focus {
  color: #aaa;
}

.credit i {
  font-size: 14px;
}

@media (max-width: 480px) {
  body { padding: 32px 16px 60px; }
  .avatar { width: 100px; height: 100px; }
  .name { font-size: 20px; }
  .link--rich { padding: 10px 12px; gap: 12px; }
  .link-thumb { width: 48px; height: 48px; }
  .link-label { font-size: 14px; }
  .link-sub { font-size: 11px; }
  .link--simple { padding: 16px 20px; font-size: 14px; }
}
