* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow: hidden;
}

.webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

.jitter {
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: jittery;
    z-index: -10;
}

.interface-wrapper {
    width: 100%;
    top: 64px;
    left: 64px;
}

.icon-control-container {
    height: 26.5px;
    width: 26.5px;
}

@media only screen and (max-width: 768px) {
    .interface-wrapper {
        width: 100%;
        top: 24px;
        left: 24px;
    }

    .icon-control-container {
        height: 19.5px;
        width: 19.5px;
    }
}

@keyframes jittery {
    10% {
        transform: translate(-0.1px, -0.15px) scale(1, 1);
    }

    20% {
        transform: translate(0.15px, 0.1px) scale(1, 1);
    }

    30% {
        transform: translate(-0.2px, -0.25px) scale(1, 1);
    }

    40% {
        transform: translate(0.05px, 0.1px) scale(1, 1);
    }

    50% {
        transform: translate(-0.025px, -0.05px) scale(1, 1);
    }

    60% {
        transform: translate(0px, 0.075px) scale(1, 1);
    }

    70% {
        transform: translate(-0.075px, -0.1px) scale(1, 1);
    }

    80% {
        transform: translate(0.075px, 0.125px) scale(1, 1);
    }

    90% {
        transform: translate(-0.125px, -0.075px) scale(1, 1);
    }

    100% {
        transform: translate(0.075px, 0.025px) scale(1, 1);
    }
}

.bottom-controls-container {
    position: fixed;
    bottom: 30px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10000;
    opacity: 1;
}

.bottom-controls-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.bottom-control-item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bottom-control-label {
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 14px;
    opacity: 0.95;
}

.bottom-control-value {
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 14px;
    opacity: 0.95;
}

/* Mobile responsive */
@media only screen and (max-width: 768px) {
    .bottom-controls-container {
        bottom: 16px;
        left: 16px;
        gap: 8px;
    }

    .bottom-controls-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .bottom-control-item {
        padding: 6px 12px;
        border-radius: 10px;
    }

    .bottom-control-label {
        font-size: 12px;
    }

    .bottom-control-value {
        font-size: 12px;
    }
}


/* Logo Container - Bottom Right */
.logo-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    z-index: 10000;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
    pointer-events: auto !important;
    transform-origin: center center;
    background: transparent;
    box-shadow: none;
}

.logo-container:hover {
    animation: rotate360Hover 0.6s ease;
}

@keyframes rotate360Hover {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Rotation animation when notification opens */
.logo-container.rotated {
    animation: rotate360 0.6s ease;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg) scale(1);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    display: block;
}

/* Notification Tooltip - positioned to the left of logo */
.notification-tooltip {
    position: fixed;
    bottom: 24px;
    right: 96px; /* 64px (logo width) + 24px (margin) + 8px (gap) */
    z-index: 10001;
    pointer-events: auto !important;
    animation: slideInRight 0.4s ease;
    will-change: transform;
}

@keyframes slideInRight {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Notification Card - styled like logo */
.liquid-glass-card {
    position: relative;
    width: 280px;
    max-width: calc(100vw - 120px);
    min-height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: default;
    overflow: hidden;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Remove liquid glass effects, keep simple like logo */
.liquid-glass-card::before {
    display: none;
}

.liquid-glass-card::after {
    display: none;
}

/* Content styling */
.card-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 16px 20px;
    color: white;
    box-sizing: border-box;
    overflow: hidden;
}

.card-content p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

/* Mobile responsive */
@media only screen and (max-width: 768px) {
    .logo-container {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .notification-tooltip {
        bottom: 16px;
        right: 72px; /* 48px (logo width) + 16px (margin) + 8px (gap) */
    }

    .liquid-glass-card {
        width: 220px;
        border-radius: 16px;
    }

    .card-content {
        padding: 12px 16px;
    }

    .card-content p {
        font-size: 12px;
    }
}


.mobile-warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto !important;
}

.mobile-warning-content {
    text-align: center;
    padding: 20px 30px;
    pointer-events: none;
    max-width: 520px;
}

.mobile-warning-text {
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.mobile-warning-text + .mobile-warning-text {
    margin-top: 10px;
}

.mobile-warning-text.subtle {
    opacity: 0.8;
}

.mobile-warning-logo {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 18px auto;
}

@media only screen and (max-width: 768px) {
    .mobile-warning-text {
        font-size: 16px;
    }

    .mobile-warning-content {
        padding: 16px 24px;
    }
}

@media only screen and (max-width: 480px) {
    .mobile-warning-content {
        padding: 16px 20px;
    }

    .mobile-warning-text {
        font-size: 14px;
    }

    .mobile-warning-logo {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }
}


/* DigitinexusOS Loader */
.loader {
  height: 50px;
  aspect-ratio: 2;
  border: 10px solid #000;
  box-sizing: border-box;
  background: 
    radial-gradient(farthest-side,#fff 98%,#0000) left/20px 20px,
    radial-gradient(farthest-side,#fff 98%,#0000) left/20px 20px,
    radial-gradient(farthest-side,#fff 98%,#0000) center/20px 20px,
    radial-gradient(farthest-side,#fff 98%,#0000) right/20px 20px,
    #000;
  background-repeat: no-repeat;
  filter: blur(4px) contrast(10);
  animation: l14 1s infinite;
}
@keyframes l14 {
  100%  {background-position:right,left,center,right}
}

h1,
h2,
h3,
h4,
h5,
p {
    /* font-family: ocr-a-std, monospace; */
    font-family: monospace;
    font-weight: 400;
    font-style: normal;
    color: white;
    /* mobile friendly font size */
    font-size: 16px;
}

/* if on mobile */
@media only screen and (max-width: 768px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    p {
        font-size: 10px;
    }
}

br {
    padding-top: 8px;
    padding-bottom: 8px;
    height: 16px;
}

.loading::after {
    display: inline-block;
    animation: dotty steps(1, end) 1s infinite;
    content: '';
}

@keyframes dotty {
    0% {
        content: '   ';
    }
    25% {
        content: '. ';
    }
    50% {
        content: '.. ';
    }
    75% {
        content: '...';
    }
    100% {
        content: '   ';
    }
}
.blinking-cursor {
    background-color: #fff;
    width: 0.8em;
    height: 0.15em;
    -webkit-animation: 0.65s blink step-end infinite;
    -moz-animation: 0.65s blink step-end infinite;
    -ms-animation: 0.65s blink step-end infinite;
    -o-animation: 0.65s blink step-end infinite;
    animation: 0.65s blink step-end infinite;
}

@keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-moz-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-webkit-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-ms-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-o-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

.bios-start-button {
    background-color: #000;
    border: 4px solid #fff;
    border-width: 4px 3px 4px 3px;
}

.bios-start-button p {
    box-sizing: border-box;
    padding: 8px;
}

.bios-start-button:hover p {
    background-color: #fff;
    cursor: pointer;
    color: #000;
}

.loading-screen-header {
    padding: 48px;
}

.loading-screen-body {
    padding-left: 48px;
    padding-right: 48px;
}

.loading-screen-footer {
    padding: 48px;
    padding-bottom: 64px;
}

.info-wrapper {
    top: 64px;
    left: 64px;
}

/* if on mobile make all loading screen elements have a padding of 16 */
@media only screen and (max-width: 768px) {
    .loading-screen-header {
        padding: 16px;
    }

    .info-wrapper {
        top: 16px;
        left: 16px;
    }

    .blinking-cursor {
        background-color: #fff;
        width: 0.4em;
        height: 0.08em;
        -webkit-animation: 0.65s blink step-end infinite;
        -moz-animation: 0.65s blink step-end infinite;
        -ms-animation: 0.65s blink step-end infinite;
        -o-animation: 0.65s blink step-end infinite;
        animation: 0.65s blink step-end infinite;
    }
    
    .loading-screen-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .loading-screen-footer {
        padding: 16px;
        padding-bottom: 32px;
    }
}


/*# sourceMappingURL=main.css.map*/