* {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    box-sizing: border-box;
}

/* Header/Auth Styles */
.header-auth {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 10px;
}

/* Landing Page Overlay */
.login-landing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(215deg, rgb(116, 84, 249) 0%, rgb(115, 17, 176) 85%);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login-landing.hidden {
    display: none;
}

.landing-content {
    background-color: rgba(38, 28, 92, 0.6);
    border: 3px solid rgba(29, 29, 27, 0.15);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 30px;
    max-width: 400px;
    width: 90%;
    backdrop-filter: blur(10px);
}

.landing-logo {
    width: 160px;
    height: 92px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.landing-title {
    color: rgb(92, 255, 182);
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: rgb(23, 5, 87) 2px 0px 0px;
}

/* Matching Extension Login Buttons */
.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 100px;
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px, rgba(255, 255, 255, 0.15) 0px 2px 0px 0px inset;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
}

.login-btn i {
    font-size: 20px;
}

.login-btn.twitch {
    background: linear-gradient(135deg, #9146FF 0%, #772CE8 100%);
}

.login-btn.twitch:hover {
    background: linear-gradient(135deg, #A366FF 0%, #8B47ED 100%);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 6px 12px, rgba(255, 255, 255, 0.2) 0px 2px 0px 0px inset;
}

.login-btn.discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}

.login-btn.discord:hover {
    background: linear-gradient(135deg, #7289da 0%, #5b6eae 100%);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 6px 12px, rgba(255, 255, 255, 0.2) 0px 2px 0px 0px inset;
}

.login-btn:active {
    transform: translateY(0);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    color: white;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.hidden {
    display: none !important;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(125, 99, 233);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(100, 80, 200);
}

.app-container {
    background-image: linear-gradient(215deg, rgb(116, 84, 249) 0%, rgb(115, 17, 176) 85%);
    width: 100%;
    height: 100vh;
}

.background-texture {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-image: url('https://garticphone.com/images/textura.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.main-content {
    width: 1082px;
    height: 698px;
    border: 4px solid rgba(29, 29, 27, 0.15);
    border-radius: 12px;
    box-shadow: rgba(255, 255, 255, 0.15) 0px 2px 0px 0px inset, rgba(255, 255, 255, 0.15) 0px 3px 0px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.75);
    overflow: hidden;
    min-height: 0;
}

.content-layout {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 18px;
    min-height: 0;
}

.logo {
    width: 160px;
    height: 92px;
    background-image: url('assets/logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-shrink: 0;
}

.app-layout {
    width: 100%;
    flex: 1;
    margin-top: 18px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 0;
}

.sidebar {
    width: 356px;
    background-color: rgba(38, 28, 92, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    min-height: 0;
}

.sidebar-title {
    margin: 13px 0 0;
    font-size: 22px;
    color: rgb(92, 255, 182);
    text-transform: uppercase;
    text-align: center;
    text-shadow: rgb(23, 5, 87) 3px 0px 0px, rgb(23, 5, 87) 2.83487px 0.981584px 0px, rgb(23, 5, 87) 2.35766px 1.85511px 0px, rgb(23, 5, 87) 1.62091px 2.52441px 0px, rgb(23, 5, 87) 0.705713px 2.91581px 0px, rgb(23, 5, 87) -0.287171px 2.98622px 0px, rgb(23, 5, 87) -1.24844px 2.72789px 0px, rgb(23, 5, 87) -2.07227px 2.16926px 0px, rgb(23, 5, 87) -2.66798px 1.37182px 0px, rgb(23, 5, 87) -2.96998px 0.42336px 0px, rgb(23, 5, 87) -2.94502px -0.571704px 0px, rgb(23, 5, 87) -2.59586px -1.50383px 0px, rgb(23, 5, 87) -1.96093px -2.27041px 0px, rgb(23, 5, 87) -1.11013px -2.78704px 0px, rgb(23, 5, 87) -0.137119px -2.99686px 0px, rgb(23, 5, 87) 0.850987px -2.87677px 0px, rgb(23, 5, 87) 1.74541px -2.43999px 0px, rgb(23, 5, 87) 2.44769px -1.73459px 0px, rgb(23, 5, 87) 2.88051px -0.838247px 0px;
}

.folder-list,
.folder-list-wrapper,
.folder-list-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.folder-scroll-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    width: 100%;
    padding-bottom: 10px;
    min-height: 0;
}

.folder {
    width: calc(100% - 20px);
    height: 58px;
    min-height: 58px;
    margin: 5px 10px;
    background-color: rgba(76, 46, 172, 0.6);
    border: 2px solid rgb(99, 75, 201);
    border-radius: 100px 25px 25px 100px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    user-select: none;
}

.folder:hover {
    background-color: rgba(99, 75, 201, 0.8);
}

.folder-icon-container {
    width: 46px;
    height: 46px;
    margin: 0 5px;
    border-radius: 50%;
    border: 2px solid rgb(60, 17, 152);
    display: flex;
    justify-content: center;
    align-items: center;
}

.folder-icon {
    font-size: 24px;
    color: rgb(122, 99, 218);
}

.folder-details {
    flex: 1;
    margin: 0 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.folder-name {
    color: rgb(122, 99, 218);
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.folder-count {
    width: 24px;
    height: 24px;
    margin: 0 10px;
    background-color: #e7e1ff;
    border: 2px solid rgb(99, 75, 201);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: rgb(122, 99, 218);
}

.folder.active {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    height: 62px;
    min-height: 62px;
    margin: 10px 10px 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 7px 0px;
}

.folder.active .folder-icon-container {
    border: 2px solid rgb(1, 36, 66);
    background-color: rgb(234, 241, 253);
}

.folder.active .folder-icon {
    color: #FFC000;
}

.folder.active .folder-name {
    color: rgb(48, 26, 107);
}

.folder.active .folder-count {
    background-color: rgb(118, 97, 201);
    border-color: rgb(118, 97, 201);
    color: white;
}

.gallery {
    flex: 1;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.gallery-header {
    display: flex;
    width: 100%;
}

.gallery-tabs {
    display: flex;
    flex-direction: row;
    height: 48px;
    width: 100%;
}

.gallery-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1.3vw, 19px);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    cursor: pointer;
    position: relative;
    padding: 0 8px;
    line-height: normal;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    background-color: rgba(38, 28, 92, 0.2);
    border-radius: 10px 10px 0 0;
}

.gallery-tab.active {
    font-size: clamp(16px, 1.5vw, 21px);
    background-color: rgba(38, 28, 92, 0.5);
    border-radius: 10px 10px 0px 0px;
    color: rgb(92, 255, 182);
    text-shadow: rgb(23, 5, 87) 3px 0px 0px, rgb(23, 5, 87) 2.83487px 0.981584px 0px, rgb(23, 5, 87) 2.35766px 1.85511px 0px, rgb(23, 5, 87) 1.62091px 2.52441px 0px, rgb(23, 5, 87) 0.705713px 2.91581px 0px, rgb(23, 5, 87) -0.287171px 2.98622px 0px, rgb(23, 5, 87) -1.24844px 2.72789px 0px, rgb(23, 5, 87) -2.07227px 2.16926px 0px, rgb(23, 5, 87) -2.66798px 1.37182px 0px, rgb(23, 5, 87) -2.96998px 0.42336px 0px, rgb(23, 5, 87) -2.94502px -0.571704px 0px, rgb(23, 5, 87) -2.59586px -1.50383px 0px, rgb(23, 5, 87) -1.96093px -2.27041px 0px, rgb(23, 5, 87) -1.11013px -2.78704px 0px, rgb(23, 5, 87) -0.137119px -2.99686px 0px, rgb(23, 5, 87) 0.850987px -2.87677px 0px, rgb(23, 5, 87) 1.74541px -2.43999px 0px, rgb(23, 5, 87) 2.44769px -1.73459px 0px, rgb(23, 5, 87) 2.88051px -0.838247px 0px;
    line-height: normal;
}

.gallery-title {
    flex: 1;
    margin: 13px 0 0;
    font-size: 22px;
    color: rgb(92, 255, 182);
    text-transform: uppercase;
    text-align: center;
    padding: 0 8px;
    text-shadow: rgb(23, 5, 87) 3px 0px 0px, rgb(23, 5, 87) 2.83487px 0.981584px 0px, rgb(23, 5, 87) 2.35766px 1.85511px 0px, rgb(23, 5, 87) 1.62091px 2.52441px 0px, rgb(23, 5, 87) 0.705713px 2.91581px 0px, rgb(23, 5, 87) -0.287171px 2.98622px 0px, rgb(23, 5, 87) -1.24844px 2.72789px 0px, rgb(23, 5, 87) -2.07227px 2.16926px 0px, rgb(23, 5, 87) -2.66798px 1.37182px 0px, rgb(23, 5, 87) -2.96998px 0.42336px 0px, rgb(23, 5, 87) -2.94502px -0.571704px 0px, rgb(23, 5, 87) -2.59586px -1.50383px 0px, rgb(23, 5, 87) -1.96093px -2.27041px 0px, rgb(23, 5, 87) -1.11013px -2.78704px 0px, rgb(23, 5, 87) -0.137119px -2.99686px 0px, rgb(23, 5, 87) 0.850987px -2.87677px 0px, rgb(23, 5, 87) 1.74541px -2.43999px 0px, rgb(23, 5, 87) 2.44769px -1.73459px 0px, rgb(23, 5, 87) 2.88051px -0.838247px 0px;
}

.gallery-content {
    flex: 1;
    background-color: rgba(38, 28, 92, 0.5);
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.gallery-container {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 0;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 20px;
    padding: 10px;
    width: 100%;
    overflow-y: auto;
    position: relative;
    min-height: 100%;
    padding-bottom: 20px;
}

.image-card {
    flex: 1 1 250px;
    max-width: 350px;
    aspect-ratio: 16 / 9;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    animation: fadeScale 0.4s ease-out forwards;
}

.image-card:hover {
    transform: scale(1.03);
    z-index: 10;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: 0 auto;
    width: 60%;
    max-width: 600px;
    height: 33vw;
    max-height: 400px;
    aspect-ratio: 16 / 9;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: zoom 0.3s;
}

.modal-caption {
    margin-top: 20px;
    text-align: center;
    color: rgb(92, 255, 182);
    font-size: 24px;
    text-transform: uppercase;
    text-shadow: rgb(23, 5, 87) 2px 0px 0px, rgb(23, 5, 87) 1.89px 0.65px 0px, rgb(23, 5, 87) 1.57px 1.24px 0px, rgb(23, 5, 87) 1.08px 1.68px 0px, rgb(23, 5, 87) 0.47px 1.94px 0px, rgb(23, 5, 87) -0.19px 1.99px 0px, rgb(23, 5, 87) -0.83px 1.82px 0px, rgb(23, 5, 87) -1.38px 1.45px 0px, rgb(23, 5, 87) -1.78px 0.91px 0px, rgb(23, 5, 87) -1.98px 0.28px 0px, rgb(23, 5, 87) -1.96px -0.38px 0px, rgb(23, 5, 87) -1.73px -1px 0px, rgb(23, 5, 87) -1.31px -1.51px 0px, rgb(23, 5, 87) -0.74px -1.86px 0px, rgb(23, 5, 87) -0.09px -2px 0px, rgb(23, 5, 87) 0.57px -1.92px 0px, rgb(23, 5, 87) 1.16px -1.63px 0px, rgb(23, 5, 87) 1.63px -1.16px 0px, rgb(23, 5, 87) 1.92px -0.56px 0px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    font-family: sans-serif;
    z-index: 1001;
}

.close-button:hover {
    color: #bbb;
    transform: scale(1.1);
}

@keyframes zoom {
    from {
        transform: scale(0.1);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .main-content {
        width: 100%;
        height: 100vh;
        border: none;
        border-radius: 0;
        transform: scale(1);
        margin: 0;
    }

    .content-layout {
        padding: 10px;
    }

    .app-layout {
        flex-direction: column;
        margin-top: 10px;
    }

    .sidebar {
        width: 100%;
        height: auto;
        max-height: 200px;
        margin-bottom: 10px;
    }

    .gallery {
        margin-left: 0;
        flex: 1;
    }

    .logo {
        width: 120px;
        height: 69px;
    }

    .sidebar-title {
        font-size: 18px;
    }

    .gallery-title {
        font-size: 18px;
    }

    .modal-content {
        width: 95%;
        max-width: 95%;
        height: 50vw;
        max-height: 500px;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .content-layout {
        padding: 5px;
    }

    .folder {
        height: 50px;
        min-height: 50px;
    }

    .folder-icon-container {
        width: 40px;
        height: 40px;
    }

    .folder-name {
        font-size: 14px;
    }

    .sidebar-title,
    .gallery-title {
        font-size: 16px;
    }

    .image-grid {
        gap: 10px;
        padding: 5px;
    }

    .image-card {
        aspect-ratio: 16 / 9;
        flex: 1 1 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Prompts View Mobile Styles */
    .style-10 {
        width: 100%;
        padding-right: 10px;
    }

    .style-15 {
        width: 100%;
        min-width: 0;
        height: auto;
        aspect-ratio: 460 / 257;
    }

    .style-16 {
        width: 100%;
        height: 100%;
    }

    .style-5 {
        max-width: calc(100vw - 90px);
    }
}

/* Prompts View Styles from example.html */
.style-0 {
    display: flex;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    overflow: hidden;
    -webkit-box-align: center;
    align-items: center;
    outline: rgb(0, 0, 0) none 0px;
    margin: 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    width: 100%;
}

.style-1 {
    align-self: stretch;
    margin: 0px 15px;
    direction: ltr;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-2 {
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    margin: 15px 0px;
    -webkit-box-pack: end;
    justify-content: flex-end;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-3 {
    margin-right: 10px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: end;
    align-items: flex-end;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: rgb(239, 208, 255);
    text-align: right;
    text-transform: uppercase;
    outline: rgb(239, 208, 255) none 0px;
    margin: 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-variant: normal;
    line-height: 13px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-5 {
    animation-delay: 0.25s;
    opacity: 0;
    animation-name: scale;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    padding: 10px;
    min-height: 26px;
    position: relative;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    max-width: 460px;
    background-color: rgb(255, 255, 255);
    margin: 5px 10px 0px 0px;
    border: 0.666667px solid rgb(194, 194, 194);
    border-radius: 5px 0px 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px 2px 2px 0px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: rgb(68, 68, 68);
    letter-spacing: -0.13px;
    text-align: center;
    line-height: 18px;
    word-break: break-word;
    outline: rgb(68, 68, 68) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-6 {
    margin: 10px 10px 9px;
    outline: rgb(68, 68, 68) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 700;
    font-variant: normal;
    text-transform: none;
    line-height: 23px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}




.style-7 {
    opacity: 0;
    animation-delay: 0.05s;
    animation-name: scale;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    margin: 0px 5px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    flex-shrink: 0;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgb(1, 36, 66);
    background-color: rgb(234, 241, 253);
    position: relative;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-8 {
    margin: 0px 0px 2px;
    width: 38px;
    height: 38px;
    min-height: 0;
    /* Removed background-image */
    background-color: #FFC000;
    /* Placeholder color */
    border-radius: 50%;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-9 {
    align-self: stretch;
    margin: 0px 15px;
    direction: ltr;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-10 {
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    margin: 15px 0px;
    width: 100%;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-11 {
    opacity: 0;
    animation-delay: 0.05s;
    animation-name: scale;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    margin: 0px 5px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    flex-shrink: 0;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgb(1, 36, 66);
    background-color: rgb(234, 241, 253);
    position: relative;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-8 {
    margin: 0px 0px 2px;
    width: 38px;
    height: 38px;
    min-height: 0;
    /* Removed background-image */
    background-color: #FFC000;
    /* Placeholder color */
    border-radius: 50%;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-12 {
    margin: 0px 0px 2px;
    width: 38px;
    height: 38px;
    min-height: 0;
    /* Removed background-image */
    background-color: #5CFFB6;
    /* Placeholder color */
    border-radius: 50%;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-6 {
    margin: 10px 10px 9px;
    outline: rgb(68, 68, 68) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 700;
    /* Force bold font */
    font-family: 'Nunito', sans-serif;
    color: rgb(68, 68, 68);
    font-variant: normal;
    text-transform: none;
    line-height: 23px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-13 {
    margin-left: 10px;
    display: flex;
    flex: 1;
    min-width: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-14 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: rgb(239, 208, 255);
    text-transform: uppercase;
    outline: rgb(239, 208, 255) none 0px;
    margin: 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-variant: normal;
    line-height: 13px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-15 {
    /* animation-delay overridden by JS */
    opacity: 0;
    /* Changed to 0 so it pops in */
    animation-name: scale;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    position: relative;
    width: 100%;
    max-width: 460px;
    min-width: 0;
    height: auto;
    aspect-ratio: 460 / 257;
    min-height: 42px;
    background-color: rgb(255, 255, 255);
    margin: 5px 0px 0px 10px;
    border: 0.666667px solid rgb(194, 194, 194);
    border-radius: 0px 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px 2px 2px 0px;
    padding: 2px;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    outline: rgb(0, 0, 0) none 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}




.style-16 {
    width: 100%;
    height: 100%;
    outline: rgb(0, 0, 0) none 0px;
    margin: 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-17 {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    outline: rgb(0, 0, 0) none 0px;
    margin: 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.style-18 {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    opacity: 1;
    outline: rgb(0, 0, 0) none 0px;
    margin: 0px;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    object-fit: contain;
}

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

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

@media (max-width: 480px) {

    /* Prompts View Mobile Styles */
    .style-10 {
        width: 100%;
        padding-right: 5px;
    }

    .style-15 {
        width: 100%;
        min-width: 0;
        height: auto;
        aspect-ratio: 460 / 257;
        margin-left: 5px;
    }

    .style-16 {
        width: 100%;
        height: 100%;
    }

    .style-5 {
        width: 100%;
        font-size: clamp(16px, 5vw, 22px);
        padding: 5px;
    }

    .style-6 {
        font-size: inherit !important;
        line-height: 1.2;
        font-weight: 900;
    }

    .style-2 {
        display: flex;
        justify-content: flex-end;
    }

    .style-13 {
        margin-left: 5px;
    }

    /* PFP mobile size adjustment if needed, but flex-shrink handles it */
    .style-7,
    .style-11 {
        width: 40px;
        min-width: 40px;
        height: 40px;
        min-height: 40px;
    }

    .style-8,
    .style-12 {
        width: 32px;
        height: 32px;
    }
}

/* Artists Section */
.artists-container {
    position: absolute;
    top: 20px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.artists-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px;
    line-height: 13px;
}

.artists-list {
    display: flex;
    flex-direction: row;
    margin-top: -8px;
}

.artist-group {
    display: flex;
    flex-direction: row;
}

.artist-link {
    text-decoration: none;
}

.artist-wrapper {
    position: relative;
    margin-left: 0px;
    width: clamp(42px, 5vw, 55px);
    height: clamp(42px, 5vw, 55px);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.artist-pfp {
    width: clamp(37px, 4.5vw, 50px);
    height: clamp(37px, 4.5vw, 50px);
    border-radius: 50%;
    background-size: cover;
    background-position: 50% 50%;
    border: 2px solid rgb(255, 255, 255);
    background-color: #333;
    flex-shrink: 0;
}

.artist-name {
    position: absolute;
    top: 100%;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: rgb(255, 255, 255);
    text-align: center;
    line-height: 20px;
    display: none;
    flex-direction: column;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 20;
}

.artist-wrapper:hover .artist-name {
    display: flex;
}

.gallery-item-title {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgb(92, 255, 182);
    text-shadow: rgb(23, 5, 87) 2px 0px 0px, rgb(23, 5, 87) 1.89px 0.65px 0px, rgb(23, 5, 87) 1.57px 1.24px 0px, rgb(23, 5, 87) 1.08px 1.68px 0px, rgb(23, 5, 87) 0.47px 1.94px 0px, rgb(23, 5, 87) -0.19px 1.99px 0px, rgb(23, 5, 87) -0.83px 1.82px 0px, rgb(23, 5, 87) -1.38px 1.45px 0px, rgb(23, 5, 87) -1.78px 0.91px 0px, rgb(23, 5, 87) -1.98px 0.28px 0px, rgb(23, 5, 87) -1.96px -0.38px 0px, rgb(23, 5, 87) -1.73px -1px 0px, rgb(23, 5, 87) -1.31px -1.51px 0px, rgb(23, 5, 87) -0.74px -1.86px 0px, rgb(23, 5, 87) -0.09px -2px 0px, rgb(23, 5, 87) 0.57px -1.92px 0px, rgb(23, 5, 87) 1.16px -1.63px 0px, rgb(23, 5, 87) 1.63px -1.16px 0px, rgb(23, 5, 87) 1.92px -0.56px 0px;
    z-index: 2;
}

@media (max-width: 480px) {
    .gallery-item-title {
        font-size: clamp(10px, 3.5vw, 14px);
    }

    .artists-container {
        transform: scale(1);
    }

    .artist-wrapper:not(:first-child) {
        margin-left: -15px;
    }
}