
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-family: 'MysteryFont', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.header {
    text-align: center;
    padding-top: 10vh;
}

.title {
    font-size: 3em;
    color: #d4af37; /* Gold accent */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: 'MysteryFont', serif;
}

.tagline {
    font-size: 1.5em;
    color: #b3a125;
    margin-top: 0.5em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

.mystery-section {
    padding: 2em;
    text-align: center;
    color: #e0e0e0;
    font-size: 1.2em;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.mystery-text {
    color: #ccc;
    font-family: 'MysteryFont', serif;
    font-size: 1.2em;
    line-height: 1.5em;
}
