/* ICG Official Stylesheet 
  Concept: Lightweight, Hacker-friendly, High-efficiency
*/

/* 全体の基本設定：目に優しいダークモード */
body {
    background-color: #000000;
    color: #00ff00; /* 昔のモニタのようなグリーン */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 10px;
    line-height: 1.2;
}

/* ヘッダー：ブランド名とカウンターを固定 */
header {
    border-bottom: 2px solid #00ff00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* ブランドロゴ（favicon）リンクの設定 */
header a {
    text-decoration: none;
    color: inherit;
}

header img {
    border: 1px solid #00ff00; /* ロゴを枠で囲んで強調 */
    vertical-align: middle;
}

/* テキスト配置 */
.center { text-align: center; }
.right { text-align: right; margin-right: 10px; }
.left { text-align: left; }

/* 働く・購入ボタン：クリックしやすく、でも無骨に */
button {
    background-color: #000000;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    margin: 5px;
    font-family: inherit;
}

/* マウスを乗せた時に色を反転させる（NirCmdのような操作感） */
button:hover {
    background-color: #00ff00;
    color: #000000;
}

/* 宇宙開発やリセットなどの重要な項目 */
h6 {
    color: #ff0000; /* 警告や高額商品は赤で表示 */
    margin: 20px 0 5px 0;
    font-size: 1.1em;
    text-decoration: underline;
}

/* JavaScriptが無効な時のメッセージ */
noscript {
    display: block;
    background-color: #ff0000;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

/* リセットボタン：誤クリックを防ぐために少し小さめに */
button[onclick="true_reset()"] {
    border-color: #ff0000;
    color: #ff0000;
    font-size: 0.8em;
}

button[onclick="true_reset()"]:hover {
    background-color: #ff0000;
    color: #fff;
}