body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.dot {
    color: #007bff; /* A nice blue dot */
}

p {
    font-size: 1.2rem;
    color: #888;
}

/* A simple subtle animation */
.loader {
    margin-top: 30px;
    border: 3px solid #333;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}