/* =========================================
   status.css - 完全版（フォント指定なし）
   ========================================= */

/* 1. ページ全体の基盤 */
body.status-page {
    background-color: #fdfaf6 !important;
    margin: 0;
    padding: 0;
    font-family: sans-serif; /* OS標準フォント */
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 2. ヘッダー */
.status-header {
    text-align: center;
    margin-bottom: 50px;
}

.status-label {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
}

.status-title {
    font-size: 2.2rem;
    margin: 10px 0;
}

.status-update-date {
    color: #888;
    font-size: 0.85rem;
}

/* 3. グリッド & カード */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.status-card {
    background: #fff !important;
    border-radius: 12px !important;
    padding: 25px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
    border-top: 6px solid #ccc;
    transition: transform 0.2s;
}

.status-card:hover { transform: translateY(-3px); }

.status-card h3 { margin: 10px 0; font-size: 1.2rem; }

/* カードの個性 */
.border-orange { border-top-color: #e67e22 !important; }
.border-blue { border-top-color: #3498db !important; }
.border-green { border-top-color: #27ae60 !important; }
.highlight-bg { background-color: #f7fff9 !important; }

.card-icon { font-size: 2rem; }

.card-content ul { padding-left: 20px; margin-top: 15px; }
.card-content li { font-size: 0.85rem; margin-bottom: 5px; }

code {
    background: #eee;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: bold;
    color: #d35400;
}

/* 4. バナー & ボタン */
.guide-banner {
    background: #fff;
    border: 2px solid #e67e22;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
}

.guide-text h2 { color: #e67e22; margin-top: 0; }

.wiki-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.wiki-btn {
    text-decoration: none;
    background: #fff;
    color: #666;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.wiki-btn:hover { background: #eee; }

/* 5. ログエリア */
.log-container {
    background: #333;
    color: #eee;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.log-title { color: #e67e22; font-size: 0.75rem; margin-bottom: 10px; }
.log-body { margin: 0; font-size: 0.8rem; white-space: pre-wrap; }

/* 6. レスポンシブ */
@media (max-width: 600px) {
    .status-title { font-size: 1.8rem; }
    .status-grid { grid-template-columns: 1fr; }
}