* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.4;
    padding: 20px;
}

#app {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc;
}

header h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.subtitle {
    font-size: 14px;
    color: #666666;
}

main {
    padding: 0;
}

.loading {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}

.projects-list {
    margin-top: 30px;
}

.project-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
}

.project-item:last-child {
    border-bottom: none;
}

.project-info {
    flex: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.project-name {
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    flex: 1;
}

.project-name:hover {
    text-decoration: underline;
}

.project-updated {
    font-size: 12px;
    color: #999999;
    white-space: nowrap;
    margin-left: 15px;
}

.project-description {
    color: #333333;
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 10px;
}

.project-tech {
    font-size: 12px;
    color: #666666;
}

.intro-section {
    margin-bottom: 30px;
}

.intro-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    font-size: 14px;
    color: #666666;
}

.stat {
    display: flex;
    align-items: center;
}

.stat-number {
    font-weight: bold;
    color: #000000;
    margin-right: 5px;
}

@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    .project-item {
        flex-direction: column;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .project-updated {
        margin-left: 0;
        font-size: 11px;
    }
    
    .stats {
        flex-direction: column;
        gap: 10px;
    }
}