@font-face {
    font-family: 'Weather';
    src: url('/fonts/MorisawaOtfRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* General Body Styles */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    overflow: hidden;
    perspective: 1000px;
    font-family: 'Weather', monospace;
}

/* Background Wrapper */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Content Container */
.container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 1;
}

/* Spinning Logo */
.spinning-logo {
    width: 300%;
    height: 300%;
    position: relative;
    top: -100%;
    left: -100%;
    transform-origin: center;
    transition: transform 0.1s linear;
    object-fit: contain;
}

.spinning-logo2 {
    width: 300%;
    height: 300%;
    position: relative;
    top: -50%;
    left: -50%;
    transform-origin: center;
    transition: transform 0.1s linear;
    object-fit: contain;
}

/* Diagnostic Panel */
.diagnostic-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #00ff00;
    padding: 20px;
    font-size: 14px;
    z-index: 2;
    font-family: 'Weather', monospace;
}

/* Diagnostic Lines */
.diagnostic-line {
    margin: 5px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Status Colors */
.status-success {
    color: #00ff00;
}

.status-fail {
    color: #ff0000;
}