/* 全体の背景とフォント */
body {
    background-color: #f0f2f5;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    color: #333;
    padding-top: 50px;
}

h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* ボタンのデザイン */
button {
    background-color: #ffffff;
    border: 2px solid #3498db;
    border-radius: 10px;
    color: #3498db;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    margin: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

button:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

/* ジャンケンの結果表示 */
#kekka {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    margin: 30px 0;
    min-height: 1.6em;
}

/* 統計情報のボックス */
#toukei {
    background-color: #ffffff;
    display: inline-block;
    padding: 15px 25px;
    border-radius: 15px;
    border-left: 5px solid #2ecc71;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: monospace;
    font-size: 1.1rem;
}

/* 煽りメッセージ（最重要！） */
#msg {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    /* 煽りっぽく少し揺らすアニメーション */
    animation: shake 0.5s infinite alternate;
}

@keyframes shake {
    0% { transform: rotate(-1deg); }
    100% { transform: rotate(1deg); }
}