* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h1 {
    color: #4a5568;
    margin-bottom: 25px;
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: left;
}

.info-card h2 {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.info-card p {
    margin: 12px 0;
    font-size: 1.1rem;
    color: #2d3748;
}

.info-card strong {
    color: #4a5568;
    min-width: 180px;
    display: inline-block;
}

.links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(102, 126, 234, 0.6);
}

/* Status indicator */
.status-indicator {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: #f0fff4;
    border-radius: 10px;
    border: 2px solid #9ae6b4;
}

.status-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 10px;
}

.status-running {
    background-color: #c6f6d5;
    color: #22543d;
}

.status-error {
    background-color: #fed7d7;
    color: #742a2a;
}

/* Details grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.detail-item {
    background: #f7fafc;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.detail-item strong {
    display: block;
    color: #4a5568;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.detail-item .value {
    display: block;
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    word-break: break-all;
}

/* App header */
.app-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.app-icon {
    font-size: 3rem;
}

.app-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4a5568;
}

/* Special badges */
.version-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.commit-hash {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

/* Raw JSON link */
.raw-json {
    margin-top: 20px;
    text-align: center;
}

.raw-json a {
    color: #718096;
    text-decoration: none;
    font-size: 0.9rem;
}

.raw-json a:hover {
    color: #4a5568;
    text-decoration: underline;
}