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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #1b1b1b;
    color: #fff;
    min-height: 100vh;
}

.docs-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.docs-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #1b1b1b 0%, #2d2d2d 100%);
    border-bottom: 1px solid #333;
}

.docs-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.docs-subtitle {
    font-size: 16px;
    color: #89bf04;
    font-weight: 400;
}

.docs-content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

.docs-empty {
    text-align: center;
    color: #888;
    font-size: 16px;
}

.docs-versions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.version-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #2d2d2d;
    border: 1px solid #444;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: border-color 0.2s, background 0.2s;
}

.version-card:hover {
    border-color: #89bf04;
    background: #333;
}

.version-badge {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #89bf04;
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
}

.version-info {
    flex: 1;
}

.version-info h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.version-number {
    font-size: 13px;
    color: #89bf04;
    font-weight: 500;
}

.version-description {
    font-size: 14px;
    color: #aaa;
    margin-top: 8px;
    line-height: 1.4;
}

.version-arrow {
    flex-shrink: 0;
    font-size: 24px;
    color: #666;
    transition: color 0.2s;
}

.version-card:hover .version-arrow {
    color: #89bf04;
}

.docs-footer {
    text-align: center;
    padding: 24px 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 13px;
}

.back-link {
    color: #89bf04;
    text-decoration: none;
    font-size: 16px;
}

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