@import url('https://fonts.googleapis.com/css2?family=Nosifer&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

body {
    margin: 0;
    overflow-x: hidden;

    font-family: sans-serif;
    color: white;

    --theme-color: #222222;
    --background-color: black;
    --border-radius: 0px;

    background: var(--background-color);
    user-select: none;
    -webkit-user-drag: none;
}

body::-webkit-scrollbar { 
    display: none;
}

.root {
    position: absolute;
    width: 100vw;
    height: 100%;
}

.input-wrapper {
    outline: none;
    background: var(--theme-color);
    margin: 10px;
    padding: 10px;
    
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
}

.input-inner-wrapper {
    display: flex;
}

.input-inner {
    display: flex;
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    align-items: center;
    width: 100%;
    border-radius: var(--border-radius);
}

.suggestion-wrapper {
    display: flex;
    outline: none;
    margin: 5px;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.custom-input-header {
    display: flex;
}

.emoji {
    width: 25px;
    margin: 5px;
}

.emoji:hover {
    filter: brightness(1.1);
}

.header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 0px 10px 10px rgb(65 0 0);
    height: 8%;
    background: linear-gradient(180deg, #ff0000 50%, #8b0000 90%);
    align-items: center;
    padding: 0 20px;
}

.header-logo {
    font-size: 65px;
    font-family: "Nosifer", sans-serif;
    color: #670000;
}

.layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.pfp {
    width: 180px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0px 0px 20px 1px rgb(255 0 0);
    margin-bottom: 20px;
    -webkit-user-drag: none;
}

.content {
    flex: 1;
}

.content h1 {
    margin: 0 0 10px 0;
    font-size: 50px;
}

.content p {
    margin: 0;
    opacity: 0.8;
}

.comments {
    width: 800px;
    height: 80vh;
    background: rgb(255, 255, 255, 0.01);
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 20px 1px rgb(255 0 0);

    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.comments-content {
    height: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    position: relative;
}

.column {
    display: flex;
    flex-direction: column;
}

iframe {
    margin: 20px;
    margin-top: 50px;
    outline: none;
    border: none;
    width: 90%;
    height: 400px;
    box-shadow: 0px 0px 20px 1px rgb(255 0 0);
}

.custom-header {
    padding: 20px 20px;
    background: black;
    margin: 0;
}

.part {
    position: absolute;
    pointer-events: none;
    overflow: visible;
    transform-origin: center center;
}

.torso-group.brandon-bayliff {
    scale: 2;
}

.torso-group.kathryne-tamez {
    scale: 2;
}

.head-group.kathryne-tamez {
    scale: 2;
}

.weapon {
    z-index: 30;
    pointer-events: auto;
    cursor: grab;
    user-select: none;
}

.weapon:active {
    cursor: grabbing;
}

.electrocuting {
    filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.9));
    animation: electric-shock 0.08s infinite;
}

@keyframes electric-shock {
    0% { filter: drop-shadow(0 0 18px rgba(0, 255, 255, 0.7)); }
    50% { filter: drop-shadow(0 0 30px rgba(0, 150, 255, 1)); }
    100% { filter: drop-shadow(0 0 22px rgba(0, 191, 255, 0.8)); }
}

.head-group { z-index: 10; }

.comment {
    margin: 10px 40px;
    background: rgb(255 0 0 / 10%);
    padding: 10px;
    align-items: center;
    display: flex;
}

.images-wrapper {
    margin: 10px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 10px;
}

.propaganda-item {
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    position: relative;
}

.propaganda-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.propaganda-item:hover {
    scale: 1.05;
}

.retard-of-the-day {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
}

.retard-of-the-day img {
    height: 400px;
    object-fit: cover;
    box-shadow: 0px 0px 20px 1px rgb(255 0 0);
}