:root {
    --hell: #681919;
}

/*
 * Artist List
 */

#artists {
    margin: 0 auto;
    max-width: 2000px;
}

#artist-list, #preview-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}



.artist {
    background-color: var(--body-dark);
    display: inherit;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075),
                0 2px 2px rgba(0, 0, 0, 0.075),
                0 4px 4px rgba(0, 0, 0, 0.075),
                0 8px 8px rgba(0, 0, 0, 0.075),
                0 16px 16px rgba(0, 0, 0, 0.075);
}


.artist .image {
    width: 200px;
    position: relative;
}


.artist .image picture {
    width: 100%;
    position: relative;
}

.artist .image img,
.artist .image video {
    max-width: 200px;
    max-height: 300px;
    margin: 0;
    padding: 0;
    display: block;
    margin: auto;
}

.artist .name {
    text-align: center;
    font-size: 2em;
}

/* Large Screens (Desktop) */
@media (min-width: 1024px) {
    .artist {
        display: grid;
        width: 80%;
        min-height: 300px;
        column-gap: 2rem;
        grid-template-rows: minmax(0, min-content) minmax(0, 1fr) minmax(0, min-content);
    }

    .artist.left {
        grid-template-columns: 200px 1fr;
        grid-template-areas:
            "image    name"
            "image    info"
            "image    socials";
    }

    .artist.right {
        grid-template-columns: 1fr 200px;
        grid-template-areas:
            "name    image"
            "info    image"
            "socials image";
    }

    .artist .image {
        grid-area: image;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
    }

    .artist .name {
        grid-area: 1 / 1 / 2 / 3;
        text-align: center;
    }

    .artist .info {
        grid-area: info;
        font-size: 1.5rem;
    }

    .artist .socials {
        grid-area: 3 / 1 / 4 / 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: center;
        margin: 0 auto;
        width: max-content;
    }

    .artist .socials .link:nth-child(odd):last-child {
        grid-column: 1 / 3;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 1023px) {
    .artist {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 450px;
        max-width: 100%;
    }

    .artist .socials {
        margin: 2rem auto 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: min-content;
    }
}

.artist .info p {
    margin-top: 0;
}

.artist .socials .link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 1rem;
    gap: 0.5rem;
}

.artist .socials .link img { 
    max-width: 32px;
    max-height: 32px;
    display: block;
    -webkit-filter: drop-shadow(0 0 1px #888);
    filter: drop-shadow(0 0 1px #888);
}

.artist blockquote {
    margin: 0;
}

.artist blockquote p {
    padding: 1rem;
    background: var(--body-quote);
    border-radius: 5px;
}

.artist blockquote p::before {
    content: "\201C";
}

.artist blockquote p::after {
    content: "\201D";
}

#artists hr {
    width: 90%;
    border: 0;
    height: 1px;
    margin: 3em auto;
    display: block;
    clear: both;
    background-image: -webkit-linear-gradient(
        0deg,
        transparent,
        var(--claws-light),
        transparent
    );
}

.artist .info li {
    margin: 1rem 0;
}



/*
 * LunarBunnie
 */

@keyframes fade-in-out {
    0%   { opacity: 0; }
    50%  { opacity: 1; }
    100% { opacity: 0; }
}
#LunarBunnie .image .heart {
    position: absolute;
    opacity: 0;
    z-index: 5;
}
#LunarBunnie .image .heart:before {
    content: "💖";
}
#LunarBunnie .image .heart:nth-child(1) {
    font-size: 3rem;
    top: 0;
    left: -10px;
    transform: rotate(-35deg);
}
#LunarBunnie .image .heart:nth-child(2) {
    font-size: 2.5rem;
    top: 25%;
    right: -10px;
    transform: rotate(20deg);
    animation-delay: .15s;
}
#LunarBunnie .image .heart:nth-child(3) {
    font-size: 2rem;
    bottom: -6%;
    left: 25%;
    transform: rotate(-10deg);
    animation-delay: .25s;
}
#LunarBunnie .image:hover .heart {
    animation-name: fade-in-out;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}



/*
 * SharkySocks
 */

#SharkySocks .image #quill {
    position: relative;
}
#SharkySocks .image #dialogue {
    /*
    top: 1em;
    left: -0.5em;
    */
    right: 9rem;
    bottom: 16rem;
    opacity: 0;
    padding: 0.25em 1em;
    background-color: white;
    border-radius: 5px;
    color: black;
    user-select: none;
    width: 175px;
    max-width: 33vw;
    text-align: center;
    display: none;
}
#SharkySocks .image #dialogue:before {
    content: "";
    position: absolute;
    bottom: -0.8em;
    width: 0px;
    height: 0px;
    right: 0.5em;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid white;
    border-top: 0.5em solid white;
    border-bottom: 0.5em solid transparent;
}
#SharkySocks .image #sharkpics {
    position: relative;
    width: 200px;
    height: 300px;
    overflow: hidden;
}
#SharkySocks .image #sharkpics picture,
#SharkySocks .image #dialogue {
    transition: left 0.5s;
    position: absolute;
}
#SharkySocks .image #sharkpics #punk {
    left: 0;
}
#SharkySocks .image #sharkpics #portrait {
    left: -200px;
}
#SharkySocks .image:hover #sharkpics #punk {
    left: 200px;
}
#SharkySocks .image:hover #sharkpics #portrait {
    left: 0;
}
#SharkySocks .image:hover #dialogue {
    animation-duration: 0.5s;
    animation-name: test;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    display: block;
}

@keyframes test {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    40% {
        opacity: 0.5;
        transform: scale(1.15);
    }

    65% {
        opacity: 1;
        transform: scale(1.15);
    }

    80% {
        transform: scale(1);
    }

    90% {
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}



/*
 * Blockman3
 */

#Blockman3 .image {
    height: 300px;
}
#Blockman3 .image picture {
    position: absolute;
    top: 0;
    left: 0;
}
#Blockman3 .image #angy {
    display: none;
}
#Blockman3 .image:hover #stare {
    display: none;
}
#Blockman3 .image:hover #angy {
    display: block;
}



/*
 * Joooji
 */

#Joooji .image {
    height: 300px;
}
#Joooji .image #bling {
    width: 200px;
    height: 300px;
    display: none;
    background-size: contain;
}
#Joooji .image #bling picture {
    position: absolute;
    top: 0;
    left: 0;
}
#Joooji .image:hover #bling {
    display: block;
}



/*
 * Gobanire
 */

@media (resolution >= 2dppx),
       (-webkit-min-device-pixel-ratio: 2) {
    #marcelo {
        background-image: url(/images/profiles/marcelo-400.webp);
        background-size: contain;
    }
}
@media (resolution < 2dppx),
       not (-webkit-min-device-pixel-ratio: 2) {
    #marcelo {
        background-image: url(/images/profiles/marcelo-200.webp);
        background-size: contain;
    }
}



/*
 * Budge
 */

img[alt="Budge"] {
    transition: rotate 1s cubic-bezier(0.5, -0.4, 0.33, 1.25);
}

#Budge .image:hover img {
    rotate: 360deg;
}



/*
 * Shugariosa
 */

@keyframes shake {
    0.00%  { transform: translate(1px, 1px); }
    9.09%  { transform: translate(-2px, -2px); }
    18.18% { transform: translate(0px, 1px); }
    27.27% { transform: translate(1px, 1px); }
    36.36% { transform: translate(1px, -2px); }
    45.45% { transform: translate(-2px, 2px); }
    54.55% { transform: translate(1px, 0px); }
    63.64% { transform: translate(1px, 0px); }
    72.73% { transform: translate(-2px, -2px); }
    81.82% { transform: translate(2px, 2px); }
    90.91% { transform: translate(0px, -2px); }
    100%   { transform: translate(-1px, 1px); }
}

#Shugariosa .image:hover img {
    animation: shake 0.25s;
    animation-iteration-count: infinite;
}



/*
 * Imp
 */

@media (resolution >= 2dppx),
       (-webkit-min-device-pixel-ratio: 2) {
    #Imp .image:hover {
        background: url(/images/profiles/fire-256.webp) bottom/128px repeat-x;
    }
}
@media (resolution < 2dppx),
       not (-webkit-min-device-pixel-ratio: 2) {
    #Imp .image:hover {
        background: url(/images/profiles/fire-128.webp) bottom/128px repeat-x;
    }
}



/*
 * Sherlu
 */

#Sherlu .image #bye-sher {
    position: absolute;
    top: 0;
    left: 0;
}
#Sherlu .image .explode {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
#Sherlu .image:hover .explode {
    display: block;
}
#Sherlu .image:hover img[alt="Sherlu"] {
    visibility: hidden;
}



/*
 * feelinSynful
 */

#feelinSynful .image picture,
#feelinSynful .image picture img {
    z-index: 5;
}
#feelinSynful .image #syn-c,
#feelinSynful .image #syn-m {
    position: absolute;
    width: 189.5px;
    height: 300px;
    -webkit-mask-size: contain;
    mask-size: contain;
    z-index: 4;
    transition: left 0.5s;
    visibility: hidden;
}
#feelinSynful .image #syn-c {
    top: 0px;
    left: 5px;
    background-color: cyan;
}
#feelinSynful .image #syn-m {
    top: 0px;
    left: 5px;
    background-color: magenta;
}
@media (resolution >= 2dppx),
       (-webkit-min-device-pixel-ratio: 2) {
    #feelinSynful .image #syn-c,
    #feelinSynful .image #syn-m {
        -webkit-mask-image: url(/images/profiles/syn-400.webp);
        mask-image: url(/images/profiles/syn-400.webp);
    }
}
@media (resolution < 2dppx),
       not (-webkit-min-device-pixel-ratio: 2) {
    #feelinSynful .image #syn-c,
    #feelinSynful .image #syn-m {
        -webkit-mask-image: url(/images/profiles/syn-200.webp);
        mask-image: url(/images/profiles/syn-200.webp);
    }
}
#feelinSynful .image:hover #syn-c {
    animation-duration: 0.35s;
    animation-name: split_c;
    animation-fill-mode: forwards;
}
#feelinSynful .image:hover #syn-m {
    animation-duration: 0.35s;
    animation-name: split_m;
    animation-fill-mode: forwards;
}
@keyframes split_c {
    100% { visibility: visible; left: 10px; }
}
@keyframes split_m {
    100% { visibility: visible; left: 0; }
}




/*
 * MintyTempest
 */

#MintyTempest .image {
    overflow: hidden;
}
img[alt="MintyTempest"] {
    transition: transform 0.8s;
}
#MintyTempest .image:hover img {
    transform: translateY(180px) scale(4);
}



/*
 * ScruffyTheDeer
 */

img[alt="ScruffyTheDeer"] {
    transition: transform 0.3s;
}
#ScruffyTheDeer .image:hover img {
    transform: scaleX(-1);
}



/*
 * Marclan
 */

/* TODO */
#Marclan #cube {
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
}
#Marclan #cube:hover {
    animation: speen 5s infinite linear;
}
#Marclan #cube div {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(/images/profiles/marclan-400.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
#Marclan #cube div:nth-child(1) { transform: translateZ(100px); }
#Marclan #cube div:nth-child(2) { transform: rotateY(180deg) translateZ(100px); }
#Marclan #cube div:nth-child(3) { transform: rotateY(90deg)  translateZ(100px); }
#Marclan #cube div:nth-child(4) { transform: rotateY(-90deg) translateZ(100px); }
#Marclan #cube div:nth-child(5) { transform: rotateX(90deg)  translateZ(100px); }
#Marclan #cube div:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); }
@keyframes speen {
  from {
    transform: rotateX(0deg) rotateY(0deg);
  }
  
  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}



/*
 * Uromatsu
 */

/* TODO */
#Uromatsu {
    position: relative;
    overflow: hidden;
}
#Uromatsu #sneas {
    position: absolute;
    top: -100px;
    left: 50%;
    rotate: 180deg;
    transform: translateX(50%);
    transition: top 0.5s;
}
#Uromatsu #sneas img {
    display: block;
    margin: 0 auto;
    z-index: 5;
}
#Uromatsu .image img {
    z-index: 4;
}
#Uromatsu .image:hover ~ #sneas,
#Uromatsu #sneas:hover {
    top: 0;
}



/*
 * Neogeddon
 */

#Neogeddon .neo {
    transition: background-color 1s, box-shadow 1s, color 1s;
    position: relative;
    z-index: 5;
    border-radius: 5px;
}

#Neogeddon .image:hover ~ .neo {
    box-shadow: 0 0 1em 1em black;
    background-color: black;
    color: black;
}

.innerneo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/profiles/neogeddon.svg) center no-repeat;
    opacity: 0;
    transition: opacity 1s;
    z-index: 5;
}

#Neogeddon .image:hover ~ .neo .innerneo {
    opacity: 1;
}



/*
 * Vince
 */

.shamwow {
    max-height: 80vh;
    display: block;
    max-width: 80vw;
    border-radius: 5px;
}
.note {
    font-size: 1rem;
}



/*
 * UnluckyOni
 */

/* TODO */



/*
 * ToonDraw
 */

/* TODO */



/*
 * Trevas
 */

#Trevas .image img {
    transition: transform 1s;
}
#Trevas .image:hover img {
    transform: scale(0.1);
}



/*
 * Alphie
 */

#Alphie .info #distraction {
    width: 100%;
    position: relative;
}
#Alphie .info #distraction img {
    margin: 0 auto;
    display: block;
    user-select: none;
}
#Alphie .info #distraction #beautiful-drawing {
    position: relative;
    top: -3rem;
    transform: rotate(-10deg);
    width: 150px;
    height: 150px;
    margin: 0 auto;
}
#Alphie .info #distraction #poss {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075),
                0 2px 2px rgba(0, 0, 0, 0.075),
                0 4px 4px rgba(0, 0, 0, 0.075),
                0 8px 8px rgba(0, 0, 0, 0.075),
                0 16px 16px rgba(0, 0, 0, 0.075);
}
#Alphie .info #distraction .tape:nth-child(2) {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    rotate: 90deg;
}
#Alphie .info #distraction .tape:nth-child(3) {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
}



/*
 * Homekeys
 */

/* TODO */



/*
 * BiskyDraws
 */

/* TODO */

#BiskyDraws .image {
    height: 300px;
}
/*
#BiskyDraws .image #bisky {
    width: 200px;
    height: 300px;
    display: none;
    background-size: contain;
}
*/
#BiskyDraws .image #bisky {
    display: none;
}
#BiskyDraws .image picture {
    position: absolute;
    top: 0;
    left: 0;
}
#BiskyDraws .image:hover #bisky {
    display: block;
}



/*
.peek {
    position: relative;
}

.peek:hover {
    color: transparent;
}

.peek:hover:before {
    content: attr(data-peek);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--claws-light);
}
*/

