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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    min-height: 100vh;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
}

.container {
    max-width: 750px;
    margin: 0 auto;
    flex: 1;
    width: 100%;
}

header {
    padding: 30px 0 40px 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
}

main {
    padding: 40px 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    color: #166534;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #bbf7d0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.info-section {
    margin-top: 30px;
}

.terminal-window {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.terminal-header {
    background: #323232;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-red {
    background: #ff5f56;
}

.btn-yellow {
    background: #ffbd2e;
}

.btn-green {
    background: #27c93f;
}

.terminal-title {
    color: #a0a0a0;
    font-size: 0.85rem;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
}

.terminal-body {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.log-line {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.log-time {
    color: #666;
}

.log-success {
    color: #27c93f;
    font-weight: bold;
}

.log-info {
    color: #61afef;
    font-weight: bold;
}

.log-text {
    color: #d4d4d4;
}

.log-cursor {
    color: #61afef;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.metric-card {
    padding: 18px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.metric-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
}

.metric-value.green {
    color: #27c93f;
}

.metric-value.red {
    color: #ff5f56;
}

footer {
    margin-top: 60px;
    padding-top: 24px;
    text-align: center;
    color: #6b7280;
    font-size: 0.88rem;
    width: 100%;
}

footer a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

footer a:hover {
    color: #000;
    text-decoration: underline;
}

.copyright {
    margin-top: 8px;
    opacity: 0.6;
}

@media (max-width: 600px) {
    .page-wrapper {
        padding: 20px 16px;
    }
    h1 {
        font-size: 2rem;
    }
    main {
        padding: 30px 0;
    }
    .terminal-body {
        font-size: 0.8rem;
        padding: 16px;
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
