body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000;
}

#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cookie-bar {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: black;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: white;
    opacity: 0.85;
}

#cookie-bar button {
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    background-color: #5cfee0;
    color: black;
    border-radius: 5px;
    cursor: pointer;
}

#cookie-bar button:hover {
    background-color: #d2fdf5;
}

#customize-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: black;
    color: white;
    font-family: Arial, sans-serif;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

#customize-modal h3 {
    margin-bottom: 20px;
}

#customize-modal label {
    display: block;
    margin: 5px 0;
    font-size: 14px;
    color: white;
}

#customize-modal button {
    margin: 10px 10px 0 10px;
    padding: 10px 20px;
    border: none;
    background-color: #5cfee0;
    color: black;
    border-radius: 5px;
    cursor: pointer;
}

#customize-modal button:hover {
    background-color: #d2fdf5;
    border-color: #5cfee0;
}

