*{
    padding: 0;
    margin: 0;
    font-family: 'Heebo', sans-serif;
    user-select: none;
    -webkit-user-select: none; /* 兼容 WebKit 浏览器 */
    -moz-user-select: none; /* 兼容 Firefox 浏览器 */
    -ms-user-select: none; /* 兼容 IE/Edge 浏览器 */
}
html, body {
    width: 100%;
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
button {
    cursor: pointer;
}
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px;
}
header button {
    border: none;
    background-color: transparent;
}
header button img {
    width: 48px;
    height: 48px;
}
main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#synopsisDiv {
    font-size: 24px;
}
#synopsisDiv img {
    position: absolute;
    width: 32px;
    height: 32px;
}
.points {
    box-sizing: border-box;
    padding: 10px;
    font-size: 24px;
}

#ticketDiv {
    display: none;
}
#refreshBtn {
    position: relative;
    top: 5px;
    border: none;
    background-color: transparent;
}
#refreshBtn img {
    width: 32px;
    height: 32px;
}

#mergeDiv {
    display: none;
    width: 256px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#mergeTextDiv {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
}
.buttons {
    display: flex;
    justify-content: space-between;
}
#mergeBtn, #unmergeBtn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}
#mergeBtn {
    background-color: #007BFF;
}
#mergeBtn:hover {
    background-color: #0056b3;
}
#unmergeBtn {
    background-color: #f44336;
}
#unmergeBtn:hover {
    background-color: #d32f2f;
}