body {
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

#cinematic {
    position: fixed;
    inset: 0;
    background: #000;
}

#introCanvas {
    width: 100vw;
    height: 100vh;
    display: block;
}

#skipBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 10px 20px;
    background: #ff7a00;
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px #ff7a00;
    transition: 0.3s;
}

#skipBtn:hover {
    box-shadow: 0 0 25px #ff9a2b;
}