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

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

.container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 40px;
    max-width: 600px;
    width: 100%;
}

h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.repo-info {
    background: #f7fafc;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #667eea;
}

.repo-info h2 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 22px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #4a5568;
    padding: 0 20px;
}

.info-value {
    color: #2d3748;
    /* text-align: right;    */
    /* max-width: 65%; */
    word-break: break-word;
}

.loading {
    text-align: center;
    color: #667eea;
    font-size: 18px;
    padding: 40px;
}

.error {
    background: #fed7d7;
    border-left: 4px solid #f56565;
    padding: 20px;
    border-radius: 8px;
    color: #742a2a;
}

.stars {
    color: #f6ad55;
}

.tech-stack {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.tech-stack h3 {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 16px;
}

.badge {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin: 4px;
}

.repo-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.build-badge img {
  height: 20px;
  border-radius: 0.25rem;
  transition: opacity 0.2s ease;
}

.build-badge img:hover {
  opacity: 0.8;
}