<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Da Nang Jam</title>
<style>
:root {
--navy: #0d1b2a;
--gold: #ffb000;
--blue: #0077b6;
--light-blue: #5baedb;
--cream: #f5f7fa;
--white: #ffffff;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background:
radial-gradient(circle at top, rgba(0,119,182,0.25), transparent 35%),
linear-gradient(180deg, #07111f 0%, var(--navy) 100%);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
padding: 32px;
}
.page {
width: 100%;
max-width: 760px;
text-align: center;
}
.logo {
width: min(340px, 80vw);
margin-bottom: 32px;
}
.date {
color: var(--gold);
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
font-size: 1rem;
margin-bottom: 12px;
}
h1 {
margin: 0;
font-size: clamp(2.2rem, 7vw, 4.8rem);
line-height: 0.95;
letter-spacing: -0.04em;
text-transform: uppercase;
}
.subtitle {
margin: 20px auto 36px;
max-width: 620px;
color: rgba(255,255,255,0.78);
font-size: clamp(1rem, 2.5vw, 1.25rem);
line-height: 1.5;
}
.socials {
display: flex;
justify-content: center;
gap: 0;
margin: 0 auto 24px;
border: 1px solid rgba(255,255,255,0.18);
border-radius: 18px;
overflow: hidden;
background: rgba(255,255,255,0.06);
backdrop-filter: blur(12px);
}
.socials a {
flex: 1;
padding: 18px 22px;
color: var(--white);
text-decoration: none;
font-weight: 700;
border-right: 1px solid rgba(255,255,255,0.14);
}
.socials a:last-child {
border-right: none;
}
.socials span {
display: block;
margin-top: 4px;
font-weight: 400;
font-size: 0.85rem;
color: rgba(255,255,255,0.68);
}
.signup {
padding: 28px;
border: 1px solid rgba(255,255,255,0.18);
border-radius: 22px;
background: rgba(255,255,255,0.07);
backdrop-filter: blur(12px);
}
.signup h2 {
margin: 0 0 8px;
font-size: 1.5rem;
text-transform: uppercase;
letter-spacing: -0.02em;
}
.signup p {
margin: 0 0 20px;
color: rgba(255,255,255,0.7);
}
form {
display: flex;
gap: 12px;
}
input {
flex: 1;
padding: 16px 18px;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.2);
background: rgba(0,0,0,0.22);
color: var(--white);
font-size: 1rem;
outline: none;
}
input::placeholder {
color: rgba(255,255,255,0.45);
}
button {
padding: 16px 24px;
border: 0;
border-radius: 12px;
background: var(--gold);
color: var(--navy);
font-size: 1rem;
font-weight: 900;
cursor: pointer;
text-transform: uppercase;
}
.note {
margin-top: 12px;
font-size: 0.8rem;
color: rgba(255,255,255,0.45);
}
@media (max-width: 640px) {
body {
padding: 24px;
}
.socials,
form {
flex-direction: column;
}
.socials a {
border-right: none;
border-bottom: 1px solid rgba(255,255,255,0.14);
}
.socials a:last-child {
border-bottom: none;
}
button {
width: 100%;
}
}
</style>
</head>
<body>
<main class="page">
<img src="logo.png" alt="Da Nang Jam logo" class="logo" />
<div class="date">November 21–23, 2025</div>
<h1>72 hours to build something amazing</h1>
<p class="subtitle">
A game jam in Da Nang for developers, artists, designers, musicians,
writers, and curious people who want to create games together.
</p>
<nav class="socials" aria-label="Social media links">
<a href="https://instagram.com/danangjam" target="_blank">
<span>@danangjam</span>
</a>
<a href="https://discord.gg/YOURINVITE" target="_blank">
Discord
<span>Join the community</span>
</a>
<a href="https://facebook.com/danangjam" target="_blank">
<span>/danangjam</span>
</a>
</nav>
<section class="signup">
<h2>Stay in the loop</h2>
<p>Get updates about dates, venue, theme, prizes, and registration.</p>
<form action="#" method="post">
<input type="email" name="email" placeholder="Your email address" required />
<button type="submit">Follow updates</button>
</form>
<div class="note">No spam. Just jam.</div>
</section>
</main>
</body>
</html>