Amazing Grace

‹head›
‹meta charset=”UTF-8″> ‹meta name= “viewport” content= “width=device-width, initial-scale=1.0”>
‹title›The Mystery of the Seven Stars ‹script src=”https://cdn.tailwindcss.com”>
url|’https://fonts.googleapis.com/css2?family=Inter:wght@400;700&famil y=Playfair+Display:wght@700&display=swap’) ;
body { font-family: ‘Inter’, sans-serif; background-color: #f3f4f6; /* Light gray background / display: flex; justify-content: center; align-items: center; min-height: 100vh; color: #333; } •game-container { max-width: 600px; height: 80vh; / Responsive height / max-height: 800px; background: #fff; order-radius: 1.5rem; / Larqe rounded corners : ox-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) display: flex; flex-direction: column; overflow: hidden; position: relative;
. header ( background-color: #1a202c; /* Dark charcoal / color: #fff; text-align: center; font-size: 1.5rem; font-family: ‘Playfair Display’, serif; letter-spacing: 2px; box-shadow: inset 0 -4px 6px rgba (0, 0, 0, 0.1) ; •main-content { flex-grow: 1; padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; overflow-y: auto: / Allow content to saroll / .title-screen h1 { font-family: ‘Playfair Display’, serif; font-size: 2.5rem; font-weight: 700; line-height: 1.2; color: #4b5563; / Dark gray */ margin-bottom: 1.5rem;


<div style=”background: #1a202c; color: white; padding: 30px; border-radius: 20px; font-family: sans-serif; text-align: center; border: 2px solid #ffd700;”>
<h2 style=”color: #ffd700; margin-bottom: 20px;”>THE MYSTERY OF THE SEVEN STARS</h2>

<div id=”portal-area”>
<p style=”margin-bottom: 20px;”>Guardian 82, enter your Master Key to initialize the Smyrna Module.</p>
<input type=”text” id=”master-key-input” placeholder=”STAR-XXXX-XX-XX” style=”padding: 12px; border-radius: 8px; width: 250px; border: none; margin-bottom: 20px; text-align: center; color: black;”>
<br>
<button onclick=”startMission()” style=”background: #3182ce; color: white; padding: 12px 30px; border: none; border-radius: 8px; cursor: pointer; font-weight: bold; font-size: 1rem;”>INITIALIZE MISSION</button>
</div>

<script>
function startMission() {
const key = document.getElementById(‘master-key-input’).value.trim().toUpperCase();
if (key.startsWith(‘STAR-‘)) {
document.getElementById(‘portal-area’).innerHTML = `
<div style=”background: #2d3748; padding: 20px; border-radius: 12px; margin-top: 10px; text-align: left; border-left: 5px solid #48bb78;”>
<h3 style=”color: #48bb78;”>Access Granted: Guardian 82</h3>
<p style=”margin-top: 10px;”><strong>Objective:</strong> Relational Compassion & Backlog Transition.</p>
<p style=”font-style: italic; color: #cbd5e0;”>The Smyrna narrative is now decrypting. Check your World Registry for the next sequence.</p>
</div>
`;
} else {
alert(‘Invalid Key. Access Denied.’);
}
}
</script>
</div>