body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff5e6;
    /* Warm doughy color */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #4a4a4a;
}

.container {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    border: 4px solid #ff9f43;
}

h1 {
    /* Fun, chunky font removed */
    color: #e67e22;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 0px #ffeaa7;
}

.troll-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transform: rotate(-2deg);
    border: 3px solid #eee;
}

.troll-img:hover {
    transform: rotate(2deg) scale(1.02);
    transition: transform 0.3s ease;
}

.intro {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.punchline {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d35400;
    margin: 1rem 0;
    font-style: italic;
}

.sub-text {
    font-size: 0.9rem;
    color: #999;
    transition: opacity 0.5s ease-in-out;
    min-height: 1.5em;
    /* Prevent layout shift */
}

.status-badge {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1.5rem;
    background-color: #ff9f43;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}