@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a202c;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

.btn-back-home {
    text-decoration: none;
    color: #1a202c;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-back-home:hover {
    background: #0066FF;
    color: #fff;
    border-color: #0066FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

/* Page Title Section */
.hero {
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    line-height: 1.1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.last-updated {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    font-family: 'Space Mono', monospace;
}

/* Content Layout */
.content {
    margin-bottom: 100px;
    font-family: 'Space Mono', monospace;
}

.content section {
    margin-bottom: 48px;
}

.content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
}

.content ul {
    margin-bottom: 24px;
    list-style-position: inside;
}

.content li {
    margin-bottom: 12px;
    color: #334155;
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    background: #f8fafc;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 30px;
}

.footer-links a {
    text-decoration: none;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
    font-family: 'Space Mono', monospace;
}

.footer-links a:hover {
    color: #0066FF;
}

.copyright {
    font-size: 12px;
    color: #94a3b8;
    font-family: 'Space Mono', monospace;
}

@media (max-width: 600px) {
    .container {
        width: 95%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}