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

body {
    background-color: #1e1e1e;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.welcome-box {
    background-color: #2d2d2d;
    padding: 60px 80px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid #3d3d3d;
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.welcome-box:visited {
    color: inherit;
}

.welcome-box:hover {
    background-color: #353535;
    border-color: #4d4d4d;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

.welcome-box h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.build-info {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

/* Link styling - visited links look the same as unvisited */
a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:visited {
    color: #e0e0e0;
}

a:hover {
    color: #ffffff;
}

a:active {
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .welcome-box {
        padding: 40px 40px;
    }

    .welcome-box h1 {
        font-size: 2rem;
    }
}
