body {
  margin: 0;
  background: #0b0b0b;
  color: #eaeaea;
  font-family: 'Georgia', serif;
}

.container {
  text-align: center;
  padding: 50px;
}

.logo {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffb347;
}

.subtitle {
  font-size: 14px;
  margin-bottom: 40px;
  opacity: 0.6;
}

.writing-list {
  list-style: none;
  padding: 0;
}

.writing-list li {
  margin: 15px 0;
}

.writing-list a {
  text-decoration: none;
  color: #eaeaea;
  font-size: 18px;
  transition: 0.3s;
}

.writing-list a:hover {
  color: #ffb347;
  text-shadow: 0 0 10px #ffb347;
}

/* Writing page overlay */
#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #1a1a1a, #000);
  display: flex;
  justify-content: center;
  align-items: center;
}

#startBtn {
  padding: 15px 40px;
  font-size: 18px;
  background: transparent;
  border: 1px solid #ffb347;
  color: #ffb347;
  cursor: pointer;
  transition: 0.3s;
}

#startBtn:hover {
  background: #ffb347;
  color: black;
  box-shadow: 0 0 20px #ffb347;
}

#content {
  display: none;
  max-width: 700px;
  margin: 100px auto;
  padding: 20px;
  animation: fadeIn 2s ease;
}

.title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #ffb347;
}

.text {
  font-size: 18px;
  line-height: 1.8;
}

.controls {
  margin-top: 40px;
}

/* Volume slider – liquid glass style */
input[type="range"] {
  -webkit-appearance: none; /* remove default browser style */
  width: 100%; /* keep full width as before */
  height: 8px;
  background: rgba(255, 255, 255, 0.2); /* semi-transparent track for glass effect */
  border-radius: 5px;
  backdrop-filter: blur(5px); /* frosted glass effect */
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.6); /* frosted thumb */
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.2); /* subtle depth */
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

input[type="range"]::-moz-range-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  height: 8px;
}
#player {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.byline {
  display: block;      /* move to a new line */
  margin-left: 30px;   /* indent */
  font-style: italic;  /* italic text */
  font-size: 18px;     /* optional: smaller than title */
  opacity: 0.7;        /* optional: subtle look */
}