body {
    margin: 0;
    padding: 0;
    background-color: black;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, sans-serif;
    gap: 2rem;
}

h1 {
    color: white;
    text-align: center;
    margin: 0;
}

.play-button {
    width: 100px;
    height: 40px;
    background: none;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 12px;
    letter-spacing: 2px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
