body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #111;
    color: #fff;
    margin: 0;
    padding: 0;
}

.splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #072238 0%, #89013b 100%);;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
}

.highlight {
    color: yellow;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.start-button {
    background: linear-gradient(135deg, #072238 0%, #89013b 100%);;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.start-button:hover {
    background: #072238;
}
