/* ===== PAGE-SPECIFIC STYLES (Strange Device) ===== */

/* Title text */
.ominous {
    color: white;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 2px crimson;
}

/* Red title box */
.redbox {
    background-color: rgba(139, 0, 0, 0.9);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px crimson;
}

/* Image (centered properly) */
.container img {
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 800px;
    border-radius: 1px;
    display: block;
    margin: 0 auto;
}

/* BUTTON (centered and spaced correctly) */
.container .button {
    display: block;
    width: fit-content;
    margin: 15px auto 25px auto;
    padding: 12px 25px;
    background-color: crimson;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    transition: 0.2s ease;
}

.container .button:hover {
    background-color: darkred;
    box-shadow: 0 0 10px crimson;
}

/* AUDIO (forced onto its own line and centered) */
.container audio {
    display: block;
    margin: 15px auto;
}

/* Discoveries box */
.Recent {
    background-color: #b30000;
    color: white;
    padding: 15px;
    margin-top: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 0 10px #400000;
}

/* Center heading inside box */
.Recent h2 {
    text-align: center;
}