:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --brand:#234f9b;
  --line:rgba(15,23,42,.12);
  --shadow:0 18px 50px rgba(2,6,23,.12);
  --radius:18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body{
  font-family: "Bookman Old Style", Georgia, serif;
  background: linear-gradient(180deg,#f6f7fb,#eef2ff);
  color: var(--ink);
  line-height: 1.6;
}

/* ===== NAV BAR (EXACTLY FROM CONTACT PAGE) ===== */
nav{
  position:sticky;
  top:0;
  z-index:1000;
  background:#ffffff;
  border-bottom:1px solid var(--line);
}

nav ul{
  list-style:none;
  margin:0;
  padding:8px 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

nav .nav-logo img{
  width:30px;
  height:auto;
  display:block;
}

nav a{
  text-decoration:none;
  font-family: Inter, system-ui, sans-serif; /* Keep menu font clean for wrapping */
  font-weight:700;
  font-size:14px;
  color:var(--brand);
  padding:8px 14px;
  border-radius:999px;
}

nav a:hover{
  background:#eef2ff;
}

/* ===== MAIN LAYOUT ===== */
main{
  max-width:900px;
  margin:0 auto;
  padding:28px 16px 60px;
  text-align:center;
}

/* Card */
.card{
  background:#ffffff;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:28px 20px 34px;
}

/* Image */
.hero-img{
  width:100%;
  max-width:460px;
  height:auto;
  border-radius:12px;
  display:block;
  margin:0 auto 22px;
}

/* Headings */
h1{
  font-size:32px;
  color:var(--brand);
  margin-bottom:6px;
}

.subtitle{
  font-size:17px;
  color:var(--muted);
  font-style:italic;
  margin-bottom:18px;
}

/* Buttons */
.controls{
  margin:18px 0;
}

.controls button{
  margin:6px;
  padding:12px 24px;
  border-radius:999px;
  font-family: Inter, sans-serif;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  border:none;
}

.play{ background:var(--brand); color:#fff; }
.outline{
  background:#fff;
  color:var(--brand);
  border:2px solid var(--brand);
}

/* Status */
#status{
  font-family: Inter, sans-serif;
  font-size:13px;
  color:var(--muted);
  margin-top:10px;
  font-weight:700;
}

/* Lyrics */
.lyrics{
  margin-top:26px;
  padding:22px;
  background:#f9fafb;
  border-radius:12px;
  border:1px solid var(--line);
  max-height:420px;
  overflow-y:auto;
  white-space:pre-wrap;
  font-size:16px;
  text-align: center;
}

footer{
  margin-top:32px;
  text-align:center;
  font-size:12px;
  color:var(--muted);
}

@media(max-width:600px){
  h1{ font-size:26px; }
  .subtitle{ font-size:15px; }
  nav a { padding: 6px 10px; font-size: 13px; }
}
body
{
   background-color: #FFFFFF;
   background-image: url('images/green-grass-blue-sky.jpg');
   background-attachment: scroll;
   background-position: left top;
   background-repeat: repeat;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
a
{
   color: #DC143C;
   text-decoration: underline;
}
a:visited
{
   color: #8B008B;
}
a:active
{
   color: #3CB371;
}
a:hover
{
   color: #376BAD;
   text-decoration: underline;
}
