* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #0a0a0f;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 32px;
    color: #fff;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.description {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #818cf8;
    font-size: 15px;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 13px;
}

/* Subpages */
.page {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.page h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.page .updated {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    margin-bottom: 40px;
}

.page h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 12px;
}

.page p, .page li {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.page a {
    color: #818cf8;
    text-decoration: none;
}

.page a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 32px;
    color: #818cf8;
    text-decoration: none;
    font-size: 15px;
}

.back-link:hover {
    text-decoration: underline;
}
