body {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('背景誹謗中傷.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #e0e0e0;
    font-family: sans-serif;
    line-height: 1.6;
    padding: 20px;
}
.container { max-width: 800px; margin: auto; }
h1 { color: #bb86fc; }
h2 { color: #03dac6; border-bottom: 1px solid #333; padding-bottom: 10px; margin-top: 40px; }
.conclusion {
    background: #1e1e1e;
    padding: 20px;
    border-left: 5px solid #bb86fc;
    margin-top: 40px;
}

/* ★ここから追加：警告エリアのスタイル★ */
.warning-section {
    margin-top: 50px;
    text-align: center;
 .warning-text {
    color: red !important; /* !important をつけると強制的に色が適用されます */
    font-size: 2rem;
    font-weight: 900;
padding: 20px;
    border: 2px solid red;
    background-color: rgba(255, 0, 0, 0.1);
}

.shout-button {
    background-color: #dc3545;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.shout-button:hover {
    background-color: #a71d2a;
}

.warning-display {
    margin-top: 20px;
}

.warning-text {
    color: red;
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px black;
    margin-bottom: 15px;
    animation: blink 0.5s infinite alternate; /* 点滅アニメーション */
}

.warning-image {
    max-width: 100%;
    height: auto;
    border: 5px solid yellow;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
}

.hidden {
    display: none;
}

/* 点滅のアニメーション定義 */
@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.5; }
}
/* ★ここまで追加★ */