/* 背景と全体設定 */
body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #300000, #111); /* ダークレッドとブラックのグラデーション */
    color: #ffd700; /* 文字色をゴールド */
    text-align: center;
}

/* コンテナ */
.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9); /* 半透明の黒背景 */
    box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.7);
    border-radius: 15px;
    border: 2px solid #ff4500; /* 赤の枠 */
}

/* 見出し（h1, h2, h3） */
h1 {
    color: #ffcc00; /* 明るいゴールド */
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 4px solid #ff4500;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2 {
    background: rgba(255, 0, 0, 0.8); /* 赤の背景 */
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

h3 {
    color: #ffcc00; /* ゴールド */
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

/* 各セクションの枠 */
.section {
    border: 2px solid #ff4500;
    padding: 20px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.8);
}

/* 段落 */
p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* リストの調整 */
ul {
    list-style-type: square;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.6;
}

/* テーブルのデザイン */
table {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: center;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(255, 69, 0, 0.9);
}

table, th, td {
    border: 2px solid #ffd700;
    padding: 12px;
    font-size: 18px;
}

th {
    background: #ff4500;
    color: white;
    font-weight: bold;
}

td {
    background: rgba(0, 0, 0, 0.8);
}

/* フッター */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    font-size: 16px;
    font-weight: bold;
}
.message-highlight {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffcc00;
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background: rgba(255, 69, 0, 0.2);
    border-radius: 5px;
}

