body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.updated {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 30px;
}

h2 {
    margin-top: 30px;
    font-size: 20px;
    color: #f9fafb;
}

p {
    margin: 10px 0;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

a {
    text-decoration: none;
    color: white;
}

.email {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 14px;
    background: #1e293b;
    border-radius: 8px;
    text-decoration: none;
    color: #38bdf8;
    transition: 0.2s;
}

.email:hover {
    background: #334155;
}

.home-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    text-decoration: none;
    font-size: 18px;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 10px;
    transition: 0.2s;
}

.home-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}