
:root{
  --bg:#0b3d2e;
  --card:#145c43;
  --gold:#d4af37;
  --text:#f7f3e8;
  --muted:#c8c1ad;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:'Amiri',serif;
  background:var(--bg);
  color:var(--text);
}
nav{
  position:sticky; top:0; z-index:10;
  background:rgba(11,61,46,.95);
  border-bottom:1px solid rgba(212,175,55,.35);
  padding:10px 14px;
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
}
nav a{
  color:var(--gold);
  text-decoration:none;
  padding:8px 12px;
  border-radius:10px;
  border:1px solid rgba(212,175,55,.35);
  background:rgba(20,92,67,.25);
}
nav a:hover{background:rgba(212,175,55,.12)}
.container{max-width:980px;margin:24px auto;padding:0 14px}
.hero{
  background:linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.25));
  border:1px solid rgba(212,175,55,.35);
  border-radius:18px;
  padding:34px 16px;
  text-align:center;
}
.hero h1{color:var(--gold);margin:0 0 10px;font-size:40px}
.hero p{margin:0;color:var(--text);opacity:.95;font-size:18px;line-height:1.9}
.card{
  background:var(--card);
  border:2px solid rgba(212,175,55,.55);
  border-radius:16px;
  padding:18px;
  margin:18px 0;
}
.card h1,.card h2{margin:0 0 12px;color:var(--gold)}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:12px}
.item{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.35);
  background:rgba(0,0,0,.12);
}
.title{font-size:20px;color:var(--text);line-height:1.6}
.btn{
  display:inline-block;
  background:var(--gold);
  color:var(--bg);
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  border:0;
}
.btn.secondary{
  background:transparent;
  color:var(--gold);
  border:1px solid rgba(212,175,55,.6);
}
.btn.ghost{
  background:rgba(212,175,55,.18);
  color:var(--gold);
  border:1px solid rgba(212,175,55,.55);
}
.search{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(212,175,55,.45);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
  font-size:18px;
}
audio{width:100%}
.footer{
  text-align:center;
  padding:20px 12px;
  color:var(--muted);
  border-top:1px solid rgba(212,175,55,.25);
  margin-top:28px;
}
.small{color:var(--muted);font-size:16px;line-height:1.8}


/* --- Dark Green + Gold Theme Override (forced) --- */
:root{
  --bg:#0b3d2e;
  --card:#145c43;
  --gold:#d4af37;
  --text:#ffffff;
}
html, body{
  background: var(--bg) !important;
  color: var(--text) !important;
}
.container{max-width:1000px;margin:0 auto;padding:18px;}
.card{
  background: rgba(20,92,67,0.95) !important;
  border: 2px solid var(--gold) !important;
  border-radius: 14px !important;
  padding: 18px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
h1,h2,h3,.title{
  color: var(--gold) !important;
}
p,li,span,div{
  color: var(--text);
}
audio{width:100%; max-width:100%;}
.btn, .back, button, a.back{
  background: #0f6b4d !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  display: inline-block;
}
.btn.secondary{
  background: transparent !important;
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;
}
.btn.ghost{
  background: transparent !important;
  border: 2px solid rgba(212,175,55,0.55) !important;
  color: var(--gold) !important;
}
nav{
  background: rgba(11,61,46,0.98) !important;
  border-bottom: 2px solid rgba(212,175,55,0.55) !important;
}
nav a{color: var(--gold) !important;}
.footer{color: rgba(255,255,255,0.85) !important;}
