body {
    background-color: #FF5841;
}

.omikuji-container {
    padding: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.omikuji-title {
    font-size: 2em;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.omikuji-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

button {
    background-color: #fff;
    border: 2px solid #FF5841;
    color: #FF5841;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #FF5841;
    color: #fff;
}

.omikuji-grid {
    position: relative;
    width: 100%;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: center;
}

.omikuji-card-back {
    position: relative;
    width: 100%;
    max-width: 80px;
    height: auto;
    aspect-ratio: 100 / 150;
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
}

.omikuji-card-front {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.omikuji-result {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}