@import url('../global.css');

.mentions-container {
    margin-left: 2.5em;
}

.mentions-container h2 {
    margin-top: 1.5em;
    color: white;
    text-decoration: underline;
    text-decoration-color: orange;
}

.mentions {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    font-weight: 700;
    font-size: 1.28571429em;
}

.mentions > * {
    color: rgba(255, 255, 255, .75);
}

.mentions > *:not(:last-child)::after {
    content: ",";
}

.mentions > a {
    text-decoration: underline;
}

.mentions > [data-title]::after {
    content: attr(data-title);
    margin-left: 5px;
    font-size: 70%;
    color: rgba(255, 255, 255, .5);
}

.mentions > .translator {
    display: flex;
    align-items: center;
}

.mentions > .translator > span {
    margin-left: 0.5em;
}

.dvselection {
    color: white;
    width: 100%;
    height: 10em;
    position: relative;
}

.dvselection > * {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.dvselection:hover {
    cursor: pointer;
}

.dvselection:hover .dvheader {
    opacity: 0;
}

.dvselection:hover .dvdescription {
    opacity: 1;
}

.dvselection:hover .dvheader.static {
    opacity: 0.6;
}

.dvheader {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2.5em;
    line-height: 2.5rem;
    opacity: 1;
}

.dvdescription {
    font-size: 1em;
    opacity: 0;
}

.dvheader, .dvdescription {
    transition: opacity 0.1s linear;
}

.wip {
    opacity: 0.5;
    position: relative;
}

.preview {
    position: relative;
}

.wip::before {
    content: 'Work In Progress';
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 1em;
    color: orange;
    font-weight: bold;
}

.preview::before {
    content: 'Preview';
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 1em;
    color: orange;
    font-weight: bold;
}

[data-author]::before {
    content: attr(data-author) "'s";
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 1em;
    color: orange;
    font-weight: bold;
}

[data-author].author-small::before {
    top: 2em;
}

.dvholder {
    position: relative;
}

.dvchild {
    position: absolute;
    left: 0;
    top: -1.5em;

    color: orange;
    font-size: 50%;
}

[data-tab="menu"] {
    padding-bottom: 2em !important;
}

img.drvcs {
    z-index: -1;
}

body {
    background: rgba(0, 0, 0, .65) url('../../res/backgrounds/request.webp');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

html {
    overscroll-behavior: none;
}

* {
    text-shadow: #000000 0 0 10px;
}

div.ui.huge.menu {
    background: none !important;
}