* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide fullscreen notification */
::-webkit-full-screen-ancestor:not(iframe) {
    display: none !important;
}

::backdrop {
    background-color: #000080;
}

body {
    background-color: #000080;
    color: #C0C0C0;
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    cursor: none;
    overflow: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

.container {
    width: 100%;
    max-width: 800px;
}

.logo {
    color: #FFFF00;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.header {
    color: #00FFFF;
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #00FFFF;
    padding-bottom: 10px;
}

.info-box {
    background-color: #000040;
    border: 2px solid #C0C0C0;
    padding: 20px;
    margin-bottom: 30px;
}

.info-line {
    color: #FFFFFF;
    margin-bottom: 10px;
    font-size: 16px;
}

.value {
    color: #00FF00;
    font-weight: bold;
}

.status-section {
    text-align: center;
    margin-bottom: 30px;
}

.status-text {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background-color: #000040;
    border: 2px solid #C0C0C0;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #00FF00;
    width: 0%;
    transition: width 0.5s linear;
}

.percentage {
    color: #00FFFF;
    font-size: 24px;
    margin-top: 10px;
    font-weight: bold;
}

.warning-box {
    background-color: #8B0000;
    border: 3px solid #FF0000;
    padding: 20px;
    margin-bottom: 20px;
}

.warning-title {
    color: #FFFF00;
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    animation: blink 1s infinite;
}

.warning-text {
    color: #FFFFFF;
    text-align: center;
    line-height: 1.6;
    font-size: 14px;
}

.step-info {
    color: #00FFFF;
    font-size: 16px;
    text-align: center;
    font-style: italic;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}