body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('https://minecraft.net') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

/* Dark overlay to make text pop */
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.launcher-card {
    background: rgba(20, 20, 20, 0.9);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #3c3c3c;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 350px;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

p {
    color: #aaaaaa;
    margin-bottom: 30px;
}

button {
    background-color: #3c8527; /* Minecraft Green */
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 4px solid #2a5d1c;
    transition: all 0.2s ease;
    width: 100%;
}

button:hover {
    background-color: #47a02e;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(2px);
    border-bottom: 0px;
}
