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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    color: white;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.status-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.status-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 5px;
}

.status-label {
    font-size: 0.9em;
    opacity: 0.8;
    margin-bottom: 5px;
}

.status-value {
    font-size: 1.5em;
    font-weight: bold;
}

.status-value.success {
    color: #4ade80;
}

.section {
    margin: 30px 0;
}

.section h2 {
    margin-bottom: 15px;
    color: #667eea;
}

.features {
    list-style: none;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.nav-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s;
}

.nav-card:hover {
    transform: translateY(-5px);
}

.nav-card h3 {
    margin-bottom: 10px;
}

.content {
    margin: 20px 0;
}

.entry {
    background: #f9fafb;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.entry h3 {
    color: #667eea;
    margin-bottom: 10px;
}

pre {
    background: #1f2937;
    color: #f3f4f6;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    white-space: pre-wrap;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #6b7280;
}

a {
    color: #667eea;
}

h1 {
    color: #667eea;
    margin-bottom: 20px;
}

h2 {
    color: #667eea;
    margin: 30px 0 15px;
}
