body {
    background: #0e0d10;
    color: bisque;
    font-family: inherit;
}

/* back button */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9999;
    color: bisque;
    font-size: 1.2rem;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(180,154,114,0.4);
    text-decoration: none;
    text-shadow: 0 0 8px rgba(180,154,114,0.6);
}

.back-button:hover {
    box-shadow: 0 0 10px rgba(180,154,114,0.5);
}

/* centers entire page */
.mmm-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin-top: 3rem;
    text-align: center;
}

/* title */
.mmm-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 18px rgba(180,154,114,0.6);
}

/* 12 signs → 6 per row */
.sign-grid {
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 1rem 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
}

/* sign button style */
.sign {
    padding: 12px 22px;
    border: 1px solid rgba(180,154,114,0.35);
    border-radius: 12px;
    background: rgba(0,0,0,0.35);
    cursor: pointer;
    text-align: center;
    transition: 0.2s;
}

.sign:hover {
    box-shadow: 0 0 12px rgba(180,154,114,0.5);
}

/* centers cassette */
#result-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* cassette container */
.cassette {
    width: 340px;
    padding: 1.2rem;
    border-radius: 16px;
    background: #1b1b1b;
    border: 1px solid rgba(180,154,114,0.35);
    box-shadow: 0 0 25px rgba(180,154,114,0.4);
    text-align: center;
    margin: 0 auto;
}

.label {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: bisque;
}

.window {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: #0d0d0d;
    border: 1px solid rgba(180,154,114,0.35);
    display: flex;
    justify-content: space-around;
}

.reel-left,
.reel-right {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #090909;
    box-shadow: 0 0 15px rgba(180,154,114,0.4);
}

.horoscope-text {
    font-size: 1.2rem;
    max-width: 340px;
    text-align: center;
    margin-top: 1rem;
    text-shadow: 0 0 8px rgba(180,154,114,0.45);
}
#result-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.horoscope-text {
    text-align: center;
    max-width: 340px;
    width: 100%;
}
.horoscope-text {
    margin: 0 auto;
}
