/* いにしえのサイト - スタイルシート */

body {
    font-family: "MS Pゴシック", "MS PGothic", sans-serif;
    background-image: url('../images/bg_stars.svg');
    background-attachment: fixed;
    margin: 0;
    padding: 10px;
    scrollbar-face-color: #000066;
    scrollbar-highlight-color: #0000FF;
    scrollbar-shadow-color: #000033;
    scrollbar-3dlight-color: #000099;
    scrollbar-arrow-color: #00FFFF;
    scrollbar-track-color: #000000;
    scrollbar-darkshadow-color: #000000;
}

a:hover {
    background-color: #FFFF00;
    color: #000000;
    text-decoration: none;
}

table {
    border-collapse: collapse;
}

td {
    font-size: 12px;
}

blink {
    animation: blink 1s linear infinite;
}

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

/* カウンター風の数字 */
.counter {
    font-family: "Courier New", monospace;
    background-color: #000000;
    color: #00FF00;
    padding: 2px 5px;
    border: 1px solid #00FF00;
}

/* 虹色ライン風 */
.rainbow {
    background: linear-gradient(to right, 
        #FF0000, #FF7F00, #FFFF00, #00FF00, 
        #0000FF, #4B0082, #9400D3);
    height: 5px;
    width: 100%;
}

/* 点滅テキスト（IE対応） */
.blinking {
    text-decoration: blink;
}

/* ゲストブック・BBS用スタイル */
.bbs-entry {
    background-color: #000033;
    border: 1px dotted #00FF00;
    margin: 5px 0;
    padding: 5px;
}

.bbs-name {
    color: #00FFFF;
    font-weight: bold;
}

.bbs-date {
    color: #999999;
    font-size: 10px;
}

.bbs-message {
    color: #FFFFFF;
    margin-top: 5px;
}

/* フォーム要素 */
input[type="text"], textarea {
    background-color: #000033;
    color: #00FF00;
    border: 1px solid #00FF00;
    font-family: "MS Pゴシック", sans-serif;
    font-size: 12px;
}

input[type="submit"], input[type="button"] {
    background-color: #003300;
    color: #00FF00;
    border: 2px outset #00FF00;
    font-family: "MS Pゴシック", sans-serif;
    font-size: 12px;
    cursor: pointer;
}

input[type="submit"]:active, input[type="button"]:active {
    border: 2px inset #00FF00;
}

/* アクセスカウンター */
#counter {
    display: inline-block;
    background-color: #000000;
    color: #00FF00;
    font-family: "Courier New", monospace;
    font-size: 16px;
    padding: 2px 8px;
    border: 2px inset #333333;
}