body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.subtitle {
    color: #888;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
}

.divider {
    height: 2px;
    background-color: #333;
    width: 50px;
    margin: 2rem auto;
}

.status {
    color: #aaa;
    font-style: italic;
    margin-bottom: 2rem;
}

/* The Teal Pill Button Style */
.button {
    display: inline-block;
    padding: 15px 40px;         
    background-color: #26A69A;  /* Serene Teal */
    color: #ffffff;             
    text-decoration: none;
    border-radius: 50px;        /* Pill shape */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s, background-color 0.2s;
}

.button:hover {
    transform: translateY(-3px); /* Lifts up slightly */
    background-color: #4DB6AC;   /* Gets brighter */
    box-shadow: 0 6px 12px rgba(0,0,0,0.4); 
}