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

:root {
  --bg:       #f8f6f2;
  --text:     #1a1916;
  --subtext:    #2c2c2c;
  --gray:     #dedad4;
  --cyan:     #00d4e8;
  --red: #ff3c71;
  --red-mid: rgb(239, 110, 145, 0.5);
  --red-light: rgb(239, 110, 145, 0.1);
  --cyan-super-dim: rgba(0, 212, 232, 0.04);
  --cyan-dim: rgba(0, 212, 232, 0.12);
  --cyan-mid: #ff3c71;
  rgba(0, 212, 232, 0.35);
  --ff-serif: 'EB Garamond', Georgia, serif;
  --ff-mono:  'DM Mono', monospace;
}

body {
  background: #c3faff0a; 
  color: var(--text);
  font-family: var(--ff-serif);
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
}

header { width: 800px;}

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

.page {
  width: 800px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.name {
  font-family: 'DM Mono', monospace;
  font-size: 2em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 15px;
}
.role {
  color: #8c8476;
  text-align: center;
  font-family: 'DM Mono', monospace;
  margin-bottom: 10px;
}

.intro {
  font-size: 1rem;
  border: 1px solid1px solid var(--gray);
  line-height: 1.55;
  background: var(--cyan-dim);
  padding: 80px;
  box-shadow: 0 0 31px 33px white inset;
}

.intro a {
  text-decoration: underline;
}

.name, .intro {
}

.tracks { display: flex; flex-direction: column; width: 800px; }

.track {
  padding: 0.5rem 0;
  transition: background 0.2s;
}

.track.active {
  background: var(--cyan-super-dim);
  margin: 0 -1.2rem;
  padding: 2.0rem 1.2rem;
  border-radius: 4px;
  border-top-color: transparent;
  box-shadow: 0 10px 31px 33px white inset;
}

.track.active + .track { border-top-color: transparent; }

.track-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.track-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.play-btn {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.play-btn:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 8px var(--cyan), 0 0 2px var(--cyan);
}

.play-btn.playing {
  background: var(--text);
  border-color: var(--text);
  box-shadow: none;
}

.icon-play {
  fill: var(--gray);
  width: 8px;
  height: 8px;
  margin-left: 2px;
  display: block;
  transition: fill 0.15s;
}

.play-btn:hover .icon-play { fill: var(--cyan); }
.play-btn.playing .icon-play { display: none; }

.icon-pause {
  display: none;
  gap: 2.5px;
  align-items: center;
}

.play-btn.playing .icon-pause { display: flex; }

.icon-pause span {
  display: block;
  width: 2.5px;
  height: 8px;
  background: var(--bg);
  border-radius: 1px;
}

.track-title {
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-tag {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: var(--cyan);
  flex-shrink: 0;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.track.active .track-tag {
  color: var(--cyan);
}

.track-progress {
  display: none;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
  padding-left: calc(28px + 0.9rem);
}

.track.active .track-progress { display: flex; }

.progress-bg {
  flex: 1;
  height: 1px;
  background: var(--gray);
  border-radius: 1px;
  cursor: pointer;
  position: relative;
}

.track.active .progress-bg {
  background: color-mix(in srgb, var(--cyan) 20%, var(--gray));
}

.progress-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: var(--cyan);
  border-radius: 1px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
  box-shadow: 0 0 6px var(--cyan);
}

.time {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: var(--subtext);
  flex-shrink: 0;
  min-width: 2.6rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.contact-form {
  margin: 60px 0px;
  padding: 80px 0px;
  font-size: 1em;
  background: var(--cyan-super-dim);
  margin: 0 -1.2rem;
  border-radius: 4px;
  border-top-color: transparent;
  box-shadow: 0 10px 31px 33px white inset;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form > h2 {
  margin: 20px 0;
}

form {
  display: flex;
  flex-direction: column;
  width: 600px;
}
form > button {
  margin-top: 20px;
  margin-bottom: 20px;
}

label {
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin-top: 5px;
}
input, form > button {
  height: 30px;
}

input, form > button, textarea {
  margin-bottom: 20px;
}

form > button {
  background: #f9f9f9;
  width: 300px;
  align-self: anchor-center;
  margin-top: 30px;
}

textarea {
  height: 100px;
}

form > button:hover {
  background: var(--cyan);
}
form > button {
  border-radius: 4px;
  border: 1px solid black;
}


footer {
  text-align: center;
  width: 800px;
  color: var(--subtext);
  font-size: 1rem;
  font-family: var(--ff-serif);
  margin-top: 3.5rem;
  display: flex;
  position: fixed;
  bottom: 0;
  flex-direction: column;
  gap: 0.6rem;
  background: white;
  padding: 10px;
}

footer a {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  color: var(--subtext);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
  width: fit-content;
}

footer a:hover { color: var(--text); }

.copyright {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

@media(max-width:800px) {
  .name, .intro, footer {
    text-align: center;
  }
  .intro {
    max-width: initial;
    width: 100%;
    margin-left: 0;
    padding: 60px;
  }

  .page {
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
  }
  header {
  }
  footer {
    left: 0;
  }
  header, footer, .tracks, .page {
    width: 100%;
  }
}
