:root {
    --primary: #ff4757;
    --dark: #2f3542;
    --light: #f1f2f6;
}

body {
    margin:0;
    padding:0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #101010;
    color: var(--light);
    width: 100vw;
    overflow-x: hidden;
    line-height: 22px;
    
}

p {
    white-space: pre-line;
}


.signal {
    padding: 12px;
    margin: 16px;
    background-color: #212121;
    border-radius: 12px;
}



h2 {
    margin: 0px;
}

h3 {
    margin: 0px;
}

p {
    margin: 12px 0 0 0;
}

.grid {
    position: relative;
    width: 100%;
    background-color: #000;
}

.banner {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    margin-bottom: 12px;
}

.item {
    margin: 16px;
    display: block;
    position: absolute;
    width: calc(33% - 56px);
    height: auto;
    min-height: 100px;
    max-height: 100vh;
    z-index: 1;
    background: #1b1b1b;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
}


.item.muuri-item-dragging {
    z-index: 3;
}

.item.muuri-item-releasing {
    z-index: 2;
}

.item.muuri-item-hidden {
    z-index: 0;
}

.item-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
}


a {
    color: white;
    text-decoration: none;
}

.spacer {
    width: 16px;
}

.button {
    font-size: 0.9rem;
    padding: 6px 8px;
    align-items: center;
    display: flex;
    flex-direction: row;
}

.sbutton {
    font-size: 0.7rem;
    padding: 4px 6px;
    align-items: center;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    color: #000;
    border-radius: 6px;
}


a:hover.sbutton {
    color: #000;
    background-color: #ffffffad;
}

.menu {
    font-size: 1rem;
}

.button:hover {
    background-color: #1a1d24;
    border-radius: 6px;
}

.end {
    margin-left: auto;
}

.header {
    padding: 32px;
    display: flex;
    flex-direction: row;
    max-width: 100vw;
    align-items: center;
    background-color: #000;
}

.footer {
    padding: 32px 64px;
    max-width: 100vw;
    background-color: #101010;
    font-weight:300;
}

.footer .button {
    font-size: 0.9rem;
}

small {
    color: #797979;
}

#social a {
    background-color: white;
    padding: 4px;
    margin:4px;
    border-radius: 4px;
}

.logo {
    background-image: url("https://heyscenario.com/hs-horizontal.png");
    background-size: contain;        /* fills container, may crop */
    background-position: left;   /* keeps subject centered */
    background-repeat: no-repeat;
    min-width: 260px;
    height: 36px;
    aspect-ratio: 1 / 1;
}

#menu {
    margin-left: auto;
}

.ht {
    padding: 8px 16px;
    background-color: #000;
    font-weight: 300;
}

.badge {
    background-color: #2f3542;
    color: #a5a9ae;
    padding: 4px;
    border-radius: 4px;
    margin-left: 6px;
    font-size: 0.6rem;
    font-weight: 300;
}

.track {
    color: #a5a9ae;
    border-bottom: #a5a9ae 0.01em solid;
    padding: 12px 0px;
    font-size: 0.9rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.large {
    font-size:1rem; 
    justify-content: center;
    padding: 8px 12px;
    margin-top: 16px;
}

.modal-container {
    position: fixed; 
    top: 0; 
    left:0; 
    width: 100%; 
    height: 100%; 
    
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* darken */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari */

    opacity: 0; 
    transition: opacity 0.3s; 
    z-index:999; 
    overflow-x: hidden;
    overflow-y: scroll;
}

.modal {
    padding: 32px;
}

.modal-width {
    max-width: 400px;
}

.close-button {
    position: fixed; 
    right:32px; 
    top: 32px; 
    z-index:1000; 
    cursor: pointer;
}

.release-image {
    min-width:20%; 
    max-width:22%; 
    height:auto; 
    object-fit: contain; 
    margin-bottom: 12px; 
    border-radius: 12px; 
    aspect-ratio: 1/1
}

.button-image {
    width:18px; height:18px;
}

@media (max-width: 1024px) {
    .item {
        width: calc(100% - 56px);
    }

    .logo {
        background-image: url("https://heyscenario.com/hs-logo-header.png");
        background-size: contain; 
        background-position: center;
        aspect-ratio: 16 / 9;
        height: 33px;
        width: 33px;
        
    }

    .header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
        padding: 32px 0;
    }

    #social {
        display: none;
    }

    #menu {
        margin-left: 0;
    }

    .footer {
        padding: 16px;
        max-width: 100vw;
        background-color: #101010;
        font-weight:300;
    }

    .footer .row {
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }
  
    .end {
        margin-left: 0px;
    }

    .modal-width {
        width: 100%;
        
    }

    .modal {
        margin: 0;
        padding: 64px 0 0 0;
    }

    .close-button {
        right: 16px;
        top: 16px;
    }

    .release-image {
        min-width:23%; 
        max-width:25%; 
    }

    .track {
        font-size: 1rem;
    }

    .button-image {
        width:24px; height:24px;
    }
}


