* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
}

body {
    display: flex;
    justify-content: safe center;
}

::selection {
    background: #333;
    color: #fff;
}
.app-container {
    max-width: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.title {
    font-size: 1.4rem;
    text-indent: -1em;
}

header {
    margin: 40px;
}

.view-count {
    font-size: 3rem;
    color: #6750A4FF;
}

.view-wrapper {
    padding-bottom: 20px;
    display: block;
}

.intro {
    font-size: 0.8rem;
}

.other-stats-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.other-stats-wrapper>* {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% / 4);
    text-align: center;
}

.likes, .danmaku, .comments, .shares {
    font-size: 1.3rem;
    color: #755ABDFF;
}

.stats {
    padding: 20px;
}

.actions-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.more-info {
    margin: 40px 0;
}

.footnote-indicator {
    text-decoration: none;
    color: #d0bcff;
    font-size: 1rem;
}

.footnote-indicator:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.options {
    margin: 30px 0;
}