
/* 全体のスタイル */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* スロットマシンのスタイル */
.slot-machine {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.slot {
    font-size: 40px;
    margin: 10px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ボタンのスタイル */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

button:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

/* スピンボタンとクレジット表示のスタイル */
.controls {
    text-align: center;
    margin-bottom: 20px;
}

.credit {
    margin-bottom: 10px;
    font-size: 18px;
}

/* フッターのスタイル */
footer {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #555;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
/* 既存のスタイルに加え、以下のスタイルを追加してください */

.slot-machine {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.slots-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.slot {
    font-size: 2em;
    margin: 0 10px;
}

.controls {
    text-align: center;
    margin-bottom: 20px;
}

.credit {
    margin-bottom: 10px;
}

button {
    margin: 5px;
}

/* フッターのスタイル */
footer {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #555;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}