<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-color: #050a14;
    color: white;
    margin: 0;
    padding: 0;
}

* {
    text-align: center;
    font-family: 'Poppins';
    font-weight: 100;
}

.img-container {
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.img-container img {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.img-container img.next {
    opacity: 1;
    z-index: 1;
}

.img-container img.prev {
    opacity: 1;
    z-index: 2;
}

.img-container img.fade-out {
    opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s linear;
    visibility: hidden;
}

/* DETAILS ITEM */
.more-item {
    position: fixed;
    z-index: 10;
    display: flex;
    width: 100%;
    background-color: #000000de;
    top: 0;
    bottom: 0;
}

.more-item-container {
    display: block;
    width: 100%;
    min-height: 10px;
    overflow-y: auto;
    margin: 30px auto;
}

.reviewItemContainer {
    display: block;
    width: 100%;
    height: 100%;
}

.more-item-content {
    width: 100%;
    display: block;
}

.item-display-images {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
}

.item-display-images-loading {
    width: 100%;
    display: flex;
    justify-content: center;
}

.more-item-img {
    width: 300px;
    display: flex;
    margin: 30px auto;
    box-shadow: 0 0 0 2px white;
    border-radius: 15px;
    overflow: hidden;
}

.more-item-img img {
    transition: .3s ease-in-out;
    width: 100%;
    display: flex;
    margin: auto;
}

.special-anim {
    transition: .3s ease-in-out;
    animation: 6s variantPreviewAnimation;
    animation-fill-mode: forwards;
}

@keyframes variantPreviewAnimation {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.more-item-img-leak {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    margin: auto;
}

#img-variant {
    width: 100px;
    margin: 10px;
}

.more-item-img-loading {
    width: 100%;
}

.more-item-img-loading img {
    width: 95%;
    border-radius: 15px;
    display: flex;
    margin: 50px auto;
    box-shadow: 0 0 0 2px white;
}

.item-display-images-loading .item-display-images-select {
    display: none;
}

.item-display-images-select {
    width: 100%;
    margin: 0 15px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.item-display-images-card {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    border-radius: 10px;
    /* box-shadow: 0 0 0 5px transparent; */
    overflow: hidden;
    transition: .3s;
    cursor: pointer;
}

.item-display-images-card-hover {
    box-shadow: 0 0 0 3px var(--itemReviewStyleHover);
}

.item-display-images-card:hover {
    box-shadow: 0 0 0 3px white;
}

.item-display-images-card img {
    width: 100%;
    display: flex;
    margin: auto;
}

.more-item-infos {
    width: 100%;
    margin-top: 80px;
}

.more-item-infos-audio {
    width: 100%;
    margin-top: 80px;
}

.more-item-header {
    width: 100%;
}

.more-item-title {
    text-transform: uppercase;
    font-size: 20px;
    font-family: var(--fontFamilyItemTitle);
}

.more-item-description {
    font-size: 15px;
    font-style: italic;
}

.more-item-type {
    font-size: 13px;
}

.more-item-rarity {
    font-size: 13px;
}

.more-item-rarity-title {
    color: var(--itemColorTitleValue);
}

.more-item-appearance {
    font-size: 13px;
}

.more-item-appearance-title {
    color: var(--itemColorTitleValue);
}

.more-item-source {
    font-size: 13px;
}

.more-item-source-title {
    color: var(--itemColorTitleValue);
}

.more-item-id {
    font-size: 13px;
}

.more-item-id-title {
    color: var(--itemColorTitleValue);
}

.more-item-since {
    font-size: 13px;
}

.more-item-since-title {
    color: var(--itemColorTitleValue);
}

audio {
    margin: 0 5px;
    width: 95%;
}

.more-item-set {
    display: block;
    width: 100%;
    margin-top: 50px;
}

.more-item-set-title {
    text-align: center;
    font-size: 15px;
    font-weight: 100;
    font-family: 'Oswald';
}

.more-item-set-container {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    box-sizing: border-box;
    max-height: 300px;
    overflow-y: auto;
}

.set-item {
    display: flex;
    margin: 5px;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 0 2px white;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.set-item a {
    width: 100%;
    height: 100%;
}

.set-item img {
    display: flex;
    width: 100%;
}

.more-item-spark {
    width: 90%;
    display: block;
    background-color: #1d1d1d;
    border-radius: 15px;
    margin: 0 20px;
}

.more-item-spark-title {
    text-align: left;
    font-size: 15px;
    margin: 10px;
    width: 100%;
}

.more-item-spark-type {
    font-size: 13px;
    font-family: 'Roboto Condensed';
}

.more-item-spark-author {
    font-size: 13px;
    font-family: 'Roboto Condensed';
}

.more-item-spark-year {
    font-size: 13px;
    font-family: 'Roboto Condensed';
}

.more-item-spark-duration {
    font-size: 13px;
    font-family: 'Roboto Condensed';
}

.more-item-spark-id {
    font-size: 13px;
    font-family: 'Roboto Condensed';
}

.more-item-spark-difficulty {
    display: inline-flex;
    justify-content: center;
    flex-flow: row wrap;
    width: 70%;
}

.spark-item-difficulty {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.spark-item-difficulty img {
    width: 30px;
    height: 30px;
}

.spark-pro {
    background-color: rgb(208, 180, 22);
    border-radius: 20px;
}

.spark-item-difficulty-p {
    text-align: center;
    width: 100%;
    margin: auto;
    font-size: 13px;
}

/* Version PC */
@media only screen and (min-width : 1220px) {

    .itemReview {
        min-height: 84vh;
    }

    /* DETAILS ITEM */
    .more-item {
        position: fixed;
        z-index: 10;
        display: flex;
        width: 100%;
        top: 0;
        bottom: 0;
        background-color: #000000de;
    }

    .more-item-container {
        display: flex;
        width: 70%;
        margin: auto;
        overflow-y: visible;
    }

    .reviewItemContainer {
        display: block;
        width: 100%;
        height: 100%;
        margin: auto;
    }

    .more-item-content {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
    }

    .more-item-content-loading {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .item-display-images {
        width: 100%;
        height: 100%;
        display: flex;
        flex-flow: row wrap;
    }

    .item-display-images-loading {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .more-item-img {
        width: 100%;
        margin: auto 30px;
        display: flex;
    }

    .more-item-img-leak {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        box-sizing: border-box;
        width: 100%;
        margin: auto;
    }

    #img-variant {
        width: 200px;
        margin: 10px;
    }

    .more-item-img img {
        width: 100%;
        display: flex;
        margin: auto;
    }

    .more-item-img-loading {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 0 0 2px white;
        overflow: hidden;
        display: flex;
        margin: auto 10px auto auto;
    }

    .more-item-img-loading img {
        width: 100%;
        display: flex;
        margin: auto;
    }

    .item-display-images-loading .item-display-images-select {
        display: none;
    }

    .item-display-images-select {
        width: 100%;
        margin: 10px 15px;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
    }

    .item-display-images-card {
        width: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 5px;
        border-radius: 10px;
        /* box-shadow: 0 0 0 5px transparent; */
        overflow: hidden;
        transition: .3s;
        cursor: pointer;
    }

    .item-display-images-card:hover {
        box-shadow: 0 0 0 3px white;
    }

    .item-display-images-card img {
        width: 100%;
        display: flex;
        margin: auto;
    }

    .more-item-infos {
        width: 100%;
        display: flex;
        margin: auto;
    }

    .more-item-infos-audio {
        width: 100%;
        margin-top: 80px;
        display: block;
        margin: auto 0;
    }

    .more-item-header {
        width: 100%;
    }

    .more-item-title {
        text-transform: uppercase;
        text-align: left;
        font-size: 22px;
        font-family: var(--fontFamilyItemTitle);
    }

    .more-item-description {
        font-size: 18px;
        font-style: italic;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-type {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-rarity {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-rarity-title {
        color: var(--itemColorTitleValue);
    }

    .more-item-appearance {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-appearance-title {
        color: var(--itemColorTitleValue);
    }

    .more-item-source-title {
        color: var(--itemColorTitleValue);
    }

    .more-item-source {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-id {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-id-title {
        color: var(--itemColorTitleValue);
    }

    .more-item-since {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-since-title {
        color: var(--itemColorTitleValue);
    }

    audio {
        display: flex;
        margin: auto auto auto 0;
        width: 70%;
    }

    .content-invisible {
        width: 100%;
        min-height: 1000px;
    }

    .more-item-set {
        display: block;
        width: 100%;
        margin-top: 0px;
    }

    .more-item-set-title {
        font-size: 15px;
        text-align: left;
    }

    .more-item-set-title-main {
        color: var(--itemColorTitleValue);
    }

    .more-item-set-container {
        display: flex;
        justify-content: unset;
        flex-flow: row wrap;
        box-sizing: border-box;
    }

    .set-item {
        display: flex;
        margin: 5px;
        width: 80px;
        height: 80px;
        box-shadow: 0 0 0 2px white;
        cursor: pointer;
        overflow: hidden;
        border-radius: 10px;
    }

    .set-item a {
        width: 100%;
        height: 100%;
    }

    .set-item img {
        width: 100%;
        display: flex;
        margin: auto;
    }

    .more-item-spark {
        width: 100%;
        display: block;
        background-color: #1d1d1d;
        border-radius: 15px;
        margin: 0;
    }

    .more-item-spark-title {
        text-align: left;
        font-size: 15px;
        margin: 10px;
        width: 100%;
    }

    .more-item-spark-type {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-spark-author {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-spark-year {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-spark-duration {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-spark-id {
        font-size: 14px;
        text-align: left;
        font-family: 'Roboto Condensed';
    }

    .more-item-spark-difficulty {
        display: inline-flex;
        justify-content: center;
        flex-flow: row wrap;
        width: 70%;
    }

    .spark-item-difficulty {
        width: 80px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px;
    }

    .spark-item-difficulty img {
        width: 30px;
        height: 30px;
    }

    .spark-item-difficulty-p {
        text-align: center;
        width: 100%;
        margin: auto;
        font-size: 13px;
    }
}</pre></body></html>