/* Really Quite Listening Booth - Main Styles */

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'open-sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    /* font-family: "calluna",serif; */
    line-height: 1.4rem;
    position: relative;
}
body {
    background: #000;
}
.room-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.room-container.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    animation: roomFadeIn 0.8s ease forwards;
}
.room-container.fading-out {
    animation: roomFadeOut 1.2s ease forwards;
    pointer-events: none;
    visibility: visible;
    opacity: 1;
}
@keyframes roomFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes roomFadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}
#landingRoom {
    background-image: url('../assets/building-exterior.webp');
}
#recordPlayerRoom {
    background-image: url('../assets/seasons/standard/record-player-bg.webp');
}
#laptopRoom {
    background-image: url('../assets/seasons/standard/laptop-scene.webp');
}
#receptionRoom {
    background-image: url('../assets/seasons/standard/reception-bg.webp');
}
.reception-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 96px;
    height: 96px;
    background: radial-gradient(circle at top left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 1;
}
@media (min-width: 768px) {
    .reception-gradient-overlay {
        width: 120px;
        height: 120px;
    }
}
@media (min-width: 1400px) {
    .reception-gradient-overlay {
        width: 144px;
        height: 144px;
    }
}

button, a, .menu-button, .close-button, .secret-button {
    cursor: pointer !important;
}

.record-label-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
}

.label-div {
    position: absolute;
    inset: 0;
    /* top: 50%;
    left: 50%;
    width: 17vw;
    height: 17vw;
    margin-top: -8.5vw;
    margin-left: -8.5vw; */
    background: url('../assets/seasons/standard/record-label-1.webp') no-repeat center center;
    background-size: cover;
    /* animation: rotate 5s infinite linear; */
    transform: rotate3d(1, 0, 0, 25deg) rotate(120deg);
    /* opacity: 0.7; */
}
.overlay-div {
    position: absolute;
    inset: 0;
    /* top: 50%;
    left: 50%;
    width: 17vw;
    height: 17vw;
    margin-top: -8.5vw;
    margin-left: -8.5vw; */
    background: url('../assets/record-label-overlay.webp') no-repeat center center;
    background-size: cover;
}
.control-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
    display: flex;
    align-items: center;
}
.play-pause-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    transform: rotate(-12deg);
    display: flex;
    gap: 0px;
    align-items: center;
}
.play-pause-button svg {
    width: 50px;
    height: 50px;
    fill: rgba(134, 54, 63, 0.9);
    filter: blur(0px) drop-shadow(0px 1px 0px rgba(255,255,255,0.8)) drop-shadow(0px -1px 0px rgba(0,0,0,0.8));
}
.play-pause-button svg:first-child {
    width: 60px;
    height: 60px;
}
.play-pause-button svg:last-child {
    width: 45px;
    height: 45px;
}
.menu-button {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.menu-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 1px 0px rgba(0,0,0,0.3));
    opacity: 0.85;
}
.menu-button:hover {
    transform: scale(1.2);
    background-color: transparent;
}
.menu-button:hover img {
    opacity: 1;
}
.exit-button {
    position: absolute;
    top: 5px;
    left: 10px;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.exit-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 1px 0px rgba(0,0,0,0.3));
    opacity: 0.85;
}
.exit-button:hover {
    transform: scale(1.2);
    background-color: transparent;
}
.exit-button:hover img {
    opacity: 1;
}
#backgroundAudio {
    visibility: hidden;
    pointer-events: none;
}
.secret-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
    /* background-color: rgba(255,255,255,0.5); */
    background-color: transparent;
    transform: rotate(-36deg);
    border: 0;
}
.secret-button:hover, .secret-button:active {
    background-color: transparent;
}
.laptop-secret-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
    border: 0;
    display: none;
}
.laptop-secret-button:hover, .laptop-secret-button:active {
    opacity: 0.8;
}
#laptopRoom.active .laptop-secret-button {
    display: block;
}
.reception-button-interactive {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
    background-color: transparent;
    /* transform: rotate(36deg); */
    transform: skew(-60deg, 18deg);
    border: 0;
    display: none;
}
.reception-button-interactive:hover, .reception-button-interactive:active {
    opacity: 0.8;
}
#receptionRoom.active .reception-button-interactive {
    display: block;
}
.reception-clock {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
    background-image: url('../assets/reception-clock-face-lighter.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
    display: none;
    pointer-events: none;
}
#receptionRoom.active .reception-clock {
    display: block;
}
.clock-hour-hand {
    position: absolute;
    left: 50%;
    background-color: #d29495;
    transform: translateX(-50%) rotate(0deg);
    pointer-events: none;
    z-index: 2;
    /* Width, height, top, and transform-origin will be set dynamically */
}
.clock-minute-hand {
    position: absolute;
    left: 50%;
    background-color: #d29495;
    transform: translateX(-50%) rotate(0deg);
    pointer-events: none;
    z-index: 3;
    /* Width, height, top, and transform-origin will be set dynamically */
}
.clock-second-hand {
    position: absolute;
    left: 50%;
    background-color: #c17a7b;
    transform: translateX(-50%) rotate(0deg);
    pointer-events: none;
    z-index: 3;
    /* Width, height, top, and transform-origin will be set dynamically */
}
.clock-center-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #d29495;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 4;
    /* Width, height, and box-shadow will be set dynamically */
}
#laptopSecret1 {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
    /* background-color: rgba(255, 0, 0, 0.3); */
    background-color: transparent;
    transform: rotate(-10deg);
    border: 0;
}
#laptopSecret2 {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
    /* background-color: rgba(0, 255, 0, 0.3); */
    background-color: transparent;
    transform: skew(60deg, -20deg);
    border: 0;
}
#laptopSecret3 {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
    /* background-color: rgba(0, 0, 255, 0.3); */
    background-color: transparent;
    transform: rotate(10deg);
    border: 0;
}
#laptopScreen {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
    background-color: transparent;
    transform: perspective(600px) rotateX(-10deg);
    border: 0;
    overflow: hidden;
}
.laptop-screen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2f3130;
    z-index: 1;
}
.laptop-screen-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    z-index: 2;
    filter: blur(0.8px);
}
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0);
    color: white;
    display: none;
    z-index: 1000;
    flex-direction: column;
    overflow-y: auto;
    transition: background-color 2s ease;
}
.overlay-menu.active {
    display: flex;
    background-color: rgba(0, 0, 0, 0.8);
}
.overlay-menu.inactive {
    background-color: rgba(0, 0, 0, 0);
}
.overlay-menu .section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: rotateY(90deg);
    visibility: hidden;
}
.overlay-menu .section.show {
    animation: rotateInVertical 1s forwards;
}
.overlay-menu .section.hide {
    animation: rotateOutVertical 1s forwards;
}
.overlay-menu .section:nth-child(1) {
    background-color: rgba(231, 120, 127, 0.5);
}
.overlay-menu .section:nth-child(2) {
    background-color: rgba(255, 190, 105, 0.5);
}
.overlay-menu .section:nth-child(3) {
    background-color: rgba(101, 177, 165, 0.5);
}
@keyframes rotateInVertical {
    from {
        opacity: 0;
        transform: rotateX(90deg);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: rotateX(0deg);
        visibility: visible;
    }
}
@keyframes rotateOutVertical {
    from {
        opacity: 1;
        transform: rotateX(0deg);
        visibility: visible;
    }
    to {
        opacity: 0;
        transform: rotateX(90deg);
        visibility: hidden;
    }
}
@media (min-width: 768px) {
    .menu-button {
        font-size: 1.5vw;
        top: 3px;
        right: 15px;
        width: 75px;
        height: 75px;
        min-width: 75px;
        min-height: 75px;
    }
    .exit-button {
        top: 3px;
        left: 15px;
        width: 75px;
        height: 75px;
        min-width: 75px;
        min-height: 75px;
    }
    .overlay-menu {
        flex-direction: row;
    }
    .overlay-menu .section {
        transform: rotateY(90deg);
    }
    .overlay-menu .section.show {
        animation: rotateInHorizontal 1s forwards;
    }
    .overlay-menu .section.hide {
        animation: rotateOutHorizontal 1s forwards;
    }
    @keyframes rotateInHorizontal {
        from {
            opacity: 0;
            transform: rotateY(90deg);
            visibility: visible;
        }
        to {
            opacity: 1;
            transform: rotateY(0deg);
            visibility: visible;
        }
    }
    @keyframes rotateOutHorizontal {
        from {
            opacity: 1;
            transform: rotateY(0deg);
            visibility: visible;
        }
        to {
            opacity: 0;
            transform: rotateY(90deg);
            visibility: hidden;
        }
    }
}
@media (min-width: 1400px) {
    .menu-button {
        width: 95px;
        height: 95px;
        min-width: 95px;
        min-height: 95px;
    }
    .exit-button {
        width: 95px;
        height: 95px;
        min-width: 95px;
        min-height: 95px;
    }
}
.overlay-menu .section:hover {
    flex: 2;
}
.overlay-menu .section:not(:hover) {
    flex: 1;
}
.overlay-menu .section img {
    margin: 20px;
    width: 50%;
    border-radius: 5px;
    height: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.overlay-menu .section .lozenge-button {
    margin: 0 20px 20px 20px;
    padding: 8px 30px;
    border: none;
    /* border-radius: 5px; */
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: 'arial-narrow', 'open-sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: medium;
    /* font-family: "calluna",serif; */
}
.overlay-menu .section .lozenge-button:hover {
    transform: scale(1.2);
}
.overlay-menu .section:nth-child(1) .lozenge-button {
    background-color: rgba(231, 120, 127, 1.0);
}
.overlay-menu .section:nth-child(2) .lozenge-button {
    background-color: #e78448;
}
.overlay-menu .section:nth-child(3) .lozenge-button {
    background-color: rgba(101, 177, 165, 1.0);
}
.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    display: none;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: background-color 1s ease;
}
.exit-modal.active {
    display: flex;
}
.exit-modal.inactive {
    background-color: rgba(0, 0, 0, 0);
}
.exit-modal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: opacity 0.8s ease;
}
.exit-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}
.exit-modal .exit-content {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: rotateX(90deg);
    visibility: hidden;
    transition: all 0.3s ease;
}
.exit-modal.active .exit-content {
    animation: exitModalRotateIn 1s forwards;
}
.exit-modal .exit-content.hide {
    animation: exitModalRotateOut 1s forwards;
}
.exit-modal .exit-content svg {
    width: 80vw;
    height: 80vh;
    max-width: 600px;
    max-height: 600px;
    fill: white;
    stroke: white;
    stroke-width: 2;
}
.floor-plan-container {
    position: relative;
    width: 85vw;
    height: 85vh;
    max-width: 800px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floor-plan-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.floor-plan-button {
    position: absolute;
    cursor: pointer;
    transition: opacity 0.5s ease;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.floor-plan-button.visible {
    opacity: 1;
}
.room-label {
    color: white;
    font-family: 'arial-narrow', 'open-sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    pointer-events: none;
    transition: font-size 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.floor-plan-button:hover .room-label {
    font-size: 22px;
}
.room-subtext {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    opacity: 0.8;
}
.dev-studio-button .room-label {
    padding-top: 15px;
}
.room-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.room-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -300%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease 1s;
    pointer-events: none;
}
.room-indicator.active {
    opacity: 1;
}
.room-indicator.wrapped {
    transform: translate(-50%, -400%);
}
@media (min-width: 768px) {
    .room-indicator {
        width: 12px;
        height: 12px;
    }
}
.contact-tab {
    position: fixed;
    bottom: 0;
    right: 10px;
    z-index: 99999;
    background: #1C1C1C;
    color: #FFFFFF;
    padding: 8px 16px;
    font-family: 'open-sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
    transition: opacity 500ms, background-color 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    line-height: 1;
    opacity: 0.7;
    white-space: nowrap;
}
.contact-tab:hover {
    opacity: 1;
}
.floor-plan-button-disabled {
    cursor: default;
    pointer-events: none;
}
.floor-plan-button-disabled.visible {
    opacity: 1;
}
.floor-plan-button-disabled .room-label {
    opacity: 0.7;
}
.floor-plan-button-disabled:hover .room-label {
    font-size: 14px;
}
@media (max-width: 480px) {
    .room-label {
        font-size: 15px;
    }
    .floor-plan-button:hover .room-label {
        font-size: 18px;
    }
    .room-subtext {
        font-size: 12px;
    }
}
@media (min-width: 768px) {
    .room-label {
        font-size: 24px;
    }
    .floor-plan-button:hover .room-label {
        font-size: 28px;
    }
    .room-subtext {
        font-size: 18px;
    }
    .floor-plan-button-disabled:hover .room-label {
        font-size: 24px;
    }
}
.audio-control-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: none;
}
.audio-control-button.show {
    display: block;
}
.audio-control-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 1px 0px rgba(0,0,0,0.3));
    opacity: 0.85;
}
.audio-control-button:hover {
    transform: scale(1.2);
    background-color: transparent;
}
.audio-control-button:hover img {
    opacity: 1;
}
@media (min-width: 768px) {
    .audio-control-button {
        top: 10px;
        right: 15px;
        width: 65px;
        height: 65px;
        min-width: 65px;
        min-height: 65px;
    }
}
@media (min-width: 1400px) {
    .audio-control-button {
        width: 75px;
        height: 75px;
        min-width: 75px;
        min-height: 75px;
    }
}
@keyframes exitModalRotateIn {
    from {
        opacity: 0;
        transform: rotateX(90deg);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: rotateX(0deg);
        visibility: visible;
    }
}
@keyframes exitModalRotateOut {
    from {
        opacity: 1;
        transform: rotateX(0deg);
        visibility: visible;
    }
    to {
        opacity: 0;
        transform: rotateX(90deg);
        visibility: hidden;
    }
}
.exit-modal .close-button {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    min-width: 30px;
    min-height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    line-height: 0;
    transition: transform 0.3s ease;
    background-image: url('../assets/close-icon.webp');
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    filter: brightness(1.3) contrast(0.65);
}
.exit-modal.initial-load .close-button {
    display: none;
}
.overlay-menu .close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    min-width: 30px;
    min-height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    line-height: 0;
    transition: transform 0.3s ease;
    background-image: url('../assets/close-icon.webp');
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(1.3) contrast(0.65);
}
@media (min-width: 768px) {
    .exit-modal .close-button {
        top: 25px;
        left: 30px;
    }
    .overlay-menu .close-button {
        top: 25px;
        right: 30px;
    }
}
.close-button:hover {
    transform: scale(1.2);
    background-color: transparent;
}
.close-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@keyframes rotate {
    from {
        transform: rotate3d(1, 0, 0, 25deg) rotate(120deg);
    }
    to {
        transform: rotate3d(1, 0, 0, 25deg) rotate(480deg);
        /* transform: rotate3d(1, 0,0,360deg); */
    }
}
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #003642;
    margin: auto;
    padding: 30px 20px;
    /* border-radius: 5px; */
    border: 1px solid #000;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
    color: white;
    font-size: 13px;
}
.modal-content h2 {
    margin-top: 0;
    font-size: 20px
}
.modal-content p {
    margin-bottom: 20px;
    font-size: 14px;
}
.modal-content input[type="text"],
.modal-content input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    font-size: 16px;
}
.modal-content input[type="checkbox"] {
    margin-right: 10px;
}
.modal-content .hidden-field {
    display: none;
}
.modal-content .error {
    margin-top: 20px;
    color: red;
    display: none;
}
.modal-content #mc-error-response {
    margin-top: 20px;
    color: red;
}
.modal-content .thank-you {
    margin-top: 20px;
    font-size: 13px;
    color: #e6797e;
    display: none;
}
.modal-content #mce-success-response {
    margin-top: 20px;
    color: #e6797e;
}
.modal-content a {
    color: white;
    text-decoration: underline;
}
.modal-content a:hover {
    color: white;
    text-decoration: none;
}
.modal-content .button-wrapper {
    text-align: center;
    margin-top: 20px;
}
.modal-content button {
    display: inline-block;
    padding: 8px 30px;
    background-color: #e1be69;
    /* border-radius: 5px; */
    color: #003642;
    border: none;
    cursor: pointer;
    font-family: 'arial-narrow', 'open-sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    /* font-family: 'calluna', serif; */
    text-transform: uppercase;
    font-weight: 700;
    font-size: medium;
}
.modal-content button:hover {
    background-color: #e6797e;
}
.modal-content .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    background-color: transparent;
    /* color: white !important; */
    border: none;
    /* cursor: pointer; */
    /* font-size: 24px; */
    /* line-height: 0; */
    padding: 0;
}
.modal-content .close-modal:hover {
    transform: scale(1.2);
    background-color: transparent;
}
.modal-content .close-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Custom Alert Modal */
.custom-alert-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.custom-alert-modal.active {
    display: flex;
}
.custom-alert-content {
    background-color: #003642;
    margin: auto;
    padding: 30px;
    /* border-radius: 5px; */
    border: 1px solid #000;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
    color: white;
    font-family: 'open-sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    line-height: 1.4rem;
    /* font-family: 'calluna', serif; */
}
.custom-alert-message {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}
.custom-alert-button {
    display: inline-block;
    padding: 8px 30px;
    /* border-radius: 5px; */
    background-color: #e1be69;
    color: #003642;
    border: none;
    cursor: pointer;
    font-family: 'arial-narrow', 'open-sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    /* font-family: 'calluna', serif; */
    text-transform: uppercase;
    font-weight: 700;
    font-size: medium;
}
.custom-alert-button:hover {
    background-color: #e6797e;
}

.notebook-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    display: none;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: background-color 1s ease;
}
.notebook-modal.active {
    display: flex;
    background-color: rgba(0, 0, 0, 0.85);
}
.notebook-modal.inactive {
    background-color: rgba(0, 0, 0, 0);
}
.notebook-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 80vh;
    background-color: #f4f1e8;
    background-image:
        repeating-linear-gradient(
            transparent,
            transparent 31px,
            #d4cfc0 31px,
            #d4cfc0 32px
        ),
        linear-gradient(to right, #e8e4d8 0, #f4f1e8 80px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: rotateX(90deg);
    visibility: hidden;
    transition: all 0.3s ease;
}
.notebook-modal.active .notebook-content {
    animation: notebookRotateIn 1s forwards;
}
.notebook-modal .notebook-content.hide {
    animation: notebookRotateOut 1s forwards;
}
@keyframes notebookRotateIn {
    from {
        opacity: 0;
        transform: rotateX(90deg);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: rotateX(0deg);
        visibility: visible;
    }
}
@keyframes notebookRotateOut {
    from {
        opacity: 1;
        transform: rotateX(0deg);
        visibility: visible;
    }
    to {
        opacity: 0;
        transform: rotateX(90deg);
        visibility: hidden;
    }
}
.notebook-modal .close-button {
    position: fixed;
    top: 20px;
    right: 30px;
    width: 45px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    min-width: 30px;
    min-height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    line-height: 0;
    transition: transform 0.3s ease;
    background-image: url('../assets/close-icon.webp');
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1001;
    filter: brightness(1.3) contrast(0.65);
}
.notebook-modal .close-button:hover {
    transform: scale(1.2);
}
@media (max-width: 767px) {
    .notebook-modal .close-button {
        top: 20px;
        right: 20px;
    }
}
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
.carousel-image.active {
    display: block;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}
.carousel-nav:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.carousel-prev {
    left: 10px;
}
.carousel-next {
    right: 10px;
}
.carousel-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
    font-size: 14px;
    font-weight: bold;
}
.screen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: none;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: background-color 1s ease;
}
.screen-modal.active {
    display: flex;
    background-color: rgba(0, 0, 0, 0.85);
}
.screen-modal.inactive {
    background-color: rgba(0, 0, 0, 0);
}
.screen-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background-color: #2a2a2a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.15) translateY(-10vh);
    visibility: hidden;
    transition: all 0.3s ease;
}
.screen-content.no-transition {
    transition: none;
}
.screen-modal.active .screen-content {
    animation: screenModalIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.screen-modal .screen-content.hide {
    animation: screenModalOut 0.4s ease-in forwards;
}
@keyframes screenModalIn {
    from {
        opacity: 0.3;
        transform: scale(0.15) translateY(-10vh);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
        visibility: visible;
    }
}
@keyframes screenModalOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
        visibility: visible;
    }
    to {
        opacity: 0.3;
        transform: scale(0.15) translateY(-10vh);
        visibility: hidden;
    }
}
/* Simplified animations for mobile devices */
@media (max-width: 767px) {
    .screen-content {
        transform: scale(1) translateY(0);
    }
    .screen-modal.active .screen-content {
        animation: screenModalInMobile 0.3s ease-out forwards;
    }
    .screen-modal .screen-content.hide {
        animation: screenModalOutMobile 0.3s ease-in forwards;
    }
    @keyframes screenModalInMobile {
        from {
            opacity: 0;
            transform: scale(1) translateY(0);
            visibility: visible;
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
            visibility: visible;
        }
    }
    @keyframes screenModalOutMobile {
        from {
            opacity: 1;
            transform: scale(1) translateY(0);
            visibility: visible;
        }
        to {
            opacity: 0;
            transform: scale(1) translateY(0);
            visibility: hidden;
        }
    }
}
.screen-modal .close-button {
    position: fixed;
    top: 20px;
    right: 30px;
    width: 45px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    min-width: 30px;
    min-height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    line-height: 0;
    transition: transform 0.3s ease;
    background-image: url('../assets/close-icon.webp');
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1001;
    filter: brightness(1.3) contrast(0.65);
}
.screen-modal .close-button:hover {
    transform: scale(1.2);
}
@media (max-width: 767px) {
    .screen-modal .close-button {
        top: 20px;
        right: 20px;
    }
}
.screen-iframe-container {
    flex: 1;
    width: 100%;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
    contain: layout style paint;
}
.screen-iframe {
    width: 100%;
    height: 100%;
    border: none;
    will-change: contents;
    contain: strict;
    transform: translateZ(0);
}
.laptop-login-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #2d2d2d;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 15px;
    box-sizing: border-box;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 32 24"><path d="M1 3h1v1h1v1h1v1h1v1h1v1h1v1h1v1h1v1h1v1h1v1h1v1h1v2H9v1h1v2h1v2h-1v1H8v-1H7v-2H6v-2H5v1H4v1H3v1H1" stroke="%23000" stroke-width="0.5"/><path fill="%2366ff99" d="M2 5h1v1h1v1h1v1h1v1h1v1h1v1h1v1h1v1h1v1h1v1H8v2h1v2h1v2H8v-2H7v-2H6v-1H5v1H4v1H3v1H2"/></svg>') 2 2, auto;
}
/* Subtle texture */
.laptop-login-screen::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(102,255,153,.02) 1px, rgba(102,255,153,.02) 2px);
    pointer-events: none;
    z-index: 1;
}
.laptop-login-screen.hidden {
    display: none;
}
.screen-iframe-container.hidden {
    display: none;
}
.mac-login-window {
    background: #3a3a3a;
    border: 2px solid #66ff99;
    box-shadow:
        3px 3px 0 rgba(0, 0, 0, 0.4),
        0 0 15px rgba(102, 255, 153, 0.2);
    padding: 0;
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2;
    margin: auto;
    box-sizing: border-box;
}
.mac-title-bar {
    background: #3a3a3a;
    border-bottom: 2px solid #66ff99;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mac-title-bar-lines {
    flex: 1;
    height: 12px;
    background: repeating-linear-gradient(
        90deg,
        #66ff99 0px,
        #66ff99 1px,
        transparent 1px,
        transparent 2px
    );
}
.mac-window-content {
    padding: 25px 20px 20px;
    text-align: center;
}
@media (max-width: 480px) {
    .laptop-login-screen {
        padding: 15px 10px;
    }
    .mac-login-window {
        max-width: 100%;
        width: calc(100% - 20px);
    }
    .mac-window-content {
        padding: 20px 15px 15px;
    }
    .mac-smile-icon {
        width: 40px !important;
        height: 40px !important;
        margin: 0 auto 12px !important;
    }
    .login-username {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }
}
@media (max-height: 600px) {
    .laptop-login-screen {
        padding: 10px;
    }
    .mac-smile-icon {
        width: 40px !important;
        height: 40px !important;
        margin: 0 auto 10px !important;
    }
    .mac-window-content {
        padding: 15px 20px 15px;
    }
    .login-username {
        margin-bottom: 15px !important;
    }
}
.login-profile-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 11;
    background: #3a3a3a;
}
.login-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-profile-image svg {
    display: block;
}
.login-username {
    color: #66ff99;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    font-family: Chicago, 'Arial', sans-serif;
    position: relative;
    z-index: 11;
    text-shadow: 0 0 8px rgba(102, 255, 153, 0.4);
}
.login-system-text {
    color: #999;
    font-size: 11px;
    font-family: Geneva, 'Arial', sans-serif;
    margin-bottom: 25px;
    position: relative;
    z-index: 11;
}
.login-form {
    position: relative;
    width: 100%;
    z-index: 11;
}
.login-input-wrapper {
    position: relative;
    width: 100%;
}
.login-password-input {
    width: 100%;
    padding: 6px 50px 6px 8px;
    border: 2px solid #66ff99;
    border-radius: 0;
    background-color: #2d2d2d;
    color: #e8e8e8;
    font-size: 14px;
    font-family: Geneva, 'Arial', sans-serif;
    outline: none;
    transition: none;
    box-sizing: border-box;
    box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.3);
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="3" height="20" viewBox="0 0 3 20"><rect fill="%2366ff99" x="0" y="0" width="3" height="20"/></svg>') 1.5 10, text;
}
.login-password-input::placeholder {
    color: #777;
    font-family: Geneva, 'Arial', sans-serif;
}
.login-password-input:focus {
    background-color: #2d2d2d;
    border-color: #66ff99;
    box-shadow:
        inset 2px 2px 0 rgba(0, 0, 0, 0.4),
        0 0 8px rgba(102, 255, 153, 0.3);
}
.login-submit-button {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: calc(100% - 6px);
    border-radius: 0;
    background-color: #2d2d2d;
    border: 2px solid #66ff99;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 32 24"><path d="M19 1h2v1h1v4h2v1h3v1h2v1h1v1h1v7h-1v3h-1v3H19v-3h-1v-2h-1v-2h-1v-2h-1v-1h-1v-3h3v1h1V2h1" stroke="%23000" stroke-width="0.5"/><path fill="%2366ff99" d="M21 2v9h1V7h2v4h1V8h2v4h1V9h1v1h1v7h-1v3h-1v2h-8v-2h-1v-2h-1v-2h-1v-2h-1v-1h-1v-2h2v1h1v1h1V2"/></svg>') 2 2, pointer !important;
    display: none;
    align-items: center;
    justify-content: center;
    transition: none;
    padding: 0;
    box-shadow:
        1px 1px 0 rgba(0, 0, 0, 0.4),
        inset 1px 1px 0 rgba(102, 255, 153, 0.1);
}
.login-submit-button.visible {
    display: flex;
}
.login-submit-button:hover {
    background-color: #66ff99;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 32 24"><path d="M19 1h2v1h1v4h2v1h3v1h2v1h1v1h1v7h-1v3h-1v3H19v-3h-1v-2h-1v-2h-1v-2h-1v-1h-1v-3h3v1h1V2h1" stroke="%23000" stroke-width="0.5"/><path fill="%2366ff99" d="M21 2v9h1V7h2v4h1V8h2v4h1V9h1v1h1v7h-1v3h-1v2h-8v-2h-1v-2h-1v-2h-1v-2h-1v-1h-1v-2h2v1h1v1h1V2"/></svg>') 2 2, pointer !important;
    border-color: #66ff99;
    box-shadow:
        1px 1px 0 rgba(0, 0, 0, 0.4),
        0 0 10px rgba(102, 255, 153, 0.5);
}
.login-submit-button:hover svg path {
    stroke: #2d2d2d;
}
.login-submit-button:active {
    box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) translateY(1px);
}
.login-submit-button svg {
    width: 14px;
    height: 14px;
}
.login-submit-button svg path {
    stroke: #66ff99;
    transition: stroke 0.15s;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}
.login-input-wrapper.shake {
    animation: shake 0.5s ease;
}
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
.mac-smile-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    position: relative;
}
.mac-loading-state {
    display: none;
}
.mac-loading-state.active {
    display: block;
}
.mac-loading-wheel {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    position: relative;
    animation: spin 1.5s linear infinite;
}
.mac-loading-wheel svg {
    display: block;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.mac-loading-text {
    color: #66ff99;
    font-size: 14px;
    font-family: Geneva, 'Arial', sans-serif;
    text-align: center;
    text-shadow: 0 0 8px rgba(102, 255, 153, 0.4);
}
.desktop-screen {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3a3a3a;
    z-index: 2;
}
.desktop-screen.active {
    display: block;
}
.desktop-top-bar {
    background: #2a2a2a;
    border-bottom: 2px solid #66ff99;
    padding: 8px 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.desktop-clock {
    color: #66ff99;
    font-size: 14px;
    font-family: Geneva, 'Arial', sans-serif;
    text-shadow: 0 0 8px rgba(102, 255, 153, 0.4);
}
.desktop-content {
    position: relative;
    width: 100%;
    height: calc(100% - 40px);
    padding: 20px;
}
.desktop-folder {
    position: absolute;
    width: 80px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}
.desktop-folder-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 5px;
    background: #66ff99;
    border: 2px solid #66ff99;
    box-shadow: 0 0 10px rgba(102, 255, 153, 0.3);
    position: relative;
}
.desktop-folder-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 30px;
    border: 2px solid #3a3a3a;
    border-top-width: 8px;
}
.desktop-folder-name {
    color: #66ff99;
    font-size: 12px;
    font-family: Geneva, 'Arial', sans-serif;
    text-shadow: 0 0 6px rgba(102, 255, 153, 0.4);
}
.desktop-window {
    position: absolute;
    background: #3a3a3a;
    border: 2px solid #66ff99;
    box-shadow:
        3px 3px 0 rgba(0, 0, 0, 0.4),
        0 0 15px rgba(102, 255, 153, 0.2);
    width: 45%;
    max-width: 380px;
    min-width: 250px;
    min-height: 150px;
    display: none;
    z-index: 10;
}
.desktop-window.active {
    display: block;
}
@media (max-width: 768px) {
    .desktop-window {
        width: 55%;
        max-width: 300px;
        min-width: 180px;
        min-height: 130px;
    }
}
@media (max-width: 480px) {
    .desktop-window {
        width: 60%;
        max-width: 220px;
        min-width: 140px;
        min-height: 100px;
    }
}
.desktop-window-title-bar {
    background: #2a2a2a;
    border-bottom: 2px solid #66ff99;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: move;
}
.desktop-window-close {
    width: 14px;
    height: 14px;
    background: #66ff99;
    border: 1px solid #66ff99;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}
.desktop-window-close::before,
.desktop-window-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 2px;
    background: #3a3a3a;
}
.desktop-window-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.desktop-window-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.desktop-window-title {
    color: #66ff99;
    font-size: 13px;
    font-family: Geneva, 'Arial', sans-serif;
    text-shadow: 0 0 6px rgba(102, 255, 153, 0.4);
}
.desktop-window-content {
    padding: 20px;
    min-height: 150px;
    background: #3a3a3a;
}
.desktop-exe {
    position: absolute;
    width: 80px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    bottom: 15%;
    right: 15%;
}
@media (max-width: 768px) {
    .desktop-exe {
        bottom: 20%;
        right: 20%;
    }
}
@media (max-width: 480px) {
    .desktop-exe {
        bottom: 25%;
        right: 15%;
    }
}
.desktop-exe-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 5px;
    position: relative;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}
.scarecrow-icon {
    width: 100%;
    height: 100%;
    background-image: url('../assets/laptop-screens/scarecrow-attack-green-icon.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}
.desktop-exe-name {
    color: #66ff99;
    font-size: 11px;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 6px rgba(102, 255, 153, 0.4);
}
.desktop-image-file {
    position: relative;
    display: inline-block;
    margin: 10px;
    width: 60px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}
.desktop-image-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 5px;
    background: #66ff99;
    border: 2px solid #66ff99;
    box-shadow: 0 0 10px rgba(102, 255, 153, 0.3);
    position: relative;
    overflow: hidden;
}
.desktop-image-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #3a3a3a;
    border: 2px solid #66ff99;
}
.desktop-image-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid #66ff99;
    border-radius: 50%;
}
.desktop-image-name {
    color: #66ff99;
    font-size: 10px;
    font-family: Geneva, 'Arial', sans-serif;
    text-shadow: 0 0 6px rgba(102, 255, 153, 0.4);
    word-wrap: break-word;
}
.desktop-video-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 5px;
    background: #66ff99;
    border: 2px solid #66ff99;
    box-shadow: 0 0 10px rgba(102, 255, 153, 0.3);
    position: relative;
    overflow: hidden;
}
.desktop-video-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #3a3a3a;
    border: 2px solid #66ff99;
}
.desktop-video-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid #66ff99;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 3px;
}
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: none;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    transition: background-color 1s ease;
}
.image-modal.active {
    display: flex;
    background-color: rgba(0, 0, 0, 0.85);
}
.image-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-modal .close-button {
    position: fixed;
    top: 20px;
    right: 30px;
    width: 45px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    min-width: 30px;
    min-height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    line-height: 0;
    transition: transform 0.3s ease;
    background-image: url('../assets/close-icon.webp');
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2001;
    filter: brightness(1.3) contrast(0.65);
}
.image-modal .close-button:hover {
    transform: scale(1.2);
}
@media (max-width: 767px) {
    .image-modal .close-button {
        top: 20px;
        right: 20px;
    }
}
.modal-carousel-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
.modal-carousel-image.active {
    display: block;
}
.modal-carousel-video {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
.modal-carousel-video.active {
    display: block;
}
.modal-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}
.modal-carousel-nav:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.modal-carousel-prev {
    left: 10px;
}
.modal-carousel-next {
    right: 10px;
}
mux-player {
    display: none;
}
.vapour-container {
    position: absolute;
    /* background-color: rgba(255, 190, 105, 0.5); */
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center;
    transform: translate(-50%, -50%);
    opacity: 0;
    display: none;
}
#recordPlayerRoom.active .vapour-container {
    display: block;
}
.vapour{
    position: relative;
    display: flex;
    z-index: 1;
    /* padding: 0 20px; */
}
.vapour span{
    position: relative;
    bottom: 0; /*50px;*/
    display: block;
    /* margin: 0 2px 50px; */
    min-width: 0.7vw;/*8px;*/
    height: 5vw;/*120px;*/
    background: #fff;
    border-radius: 50%;
    animation: animate 5s linear infinite;
    animation-play-state: paused;
    filter: blur(8px);
    animation-delay: calc(var(--i) * -0.5s);
    opacity: 0;
}
#recordPlayerRoom.active .vapour span{
    animation-play-state: running;
}

@media screen and (max-width: 600px){
    .vapour span {
        min-width: 8px;
        width: 8px;
        height: 60px;
        filter: blur(8px);
    }
}

@keyframes animate {
    0%{
        transform: translateY(0) scaleX(1);
    }
    15%{
        opacity: 0.4;
    }
    50%{
        transform: translateY(-150px) scaleX(5);
    }
    95%{
        opacity: 0;
    }
    100%{
        transform: translateY(-300px) scaleX(10);
    }
}
