/* ===================================== */
/* HexMemory Server Pages Terminal Style */
/* ===================================== */

body {

    background-color: #000000;

    color: #00ff66;

    font-family: "Courier New", monospace;

    margin: 20px;

    line-height: 1.6;

}

/* タイトル */

h1 {

    font-family: "Orbitron", sans-serif;

    color: #00ff66;

    border-bottom: 2px solid #00ff66;

    padding-bottom: 10px;

    text-shadow: 0 0 10px #00ff66;

}

/* 見出し */

h2 {

    color: #00ff66;

    border-left: 4px solid #00ff66;

    padding-left: 10px;

}

/* サブタイトル */

h3 {

    color: #66ff99;

}

/* 通常文字 */

p {

    color: #00ff66;

    margin: 8px 0;

}

/* コマンド */

.command {

    color: #ffffff;

}

/* 成功 */

.success {

    color: #00ff66;

}

/* 警告 */

.warning {

    color: #ffcc00;

}

/* エラー */

.error {

    color: #ff4444;

}

/* パス表示 */

.path {

    color: #00ffff;

}

/* リンク */

a {

    color: #00ffff;

    text-decoration: none;

}

a:hover {

    color: #ffffff;

    text-shadow: 0 0 8px #00ffff;

}

/* 入力カーソル */

.cursor::after {

    content: "_";

    animation: blink 1s infinite;

}

@keyframes blink {

    0%, 50% {

        opacity: 1;

    }

    51%, 100% {

        opacity: 0;

    }

}