@font-face {
    font-family: 'Miracode';
    src: url('/Miracode.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    background-color: #0c0c0c;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

::selection {
    background: rgba(145, 145, 233, 0.25);
    color: #fff;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0c0c0c;
    color: #e0e0e0;
    font-family: 'Miracode', monospace;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    background-image: repeating-linear-gradient(
        0deg,
        #0c0c0c,
        #0c0c0c 3px,
        #0f0f0f 3px,
        #0f0f0f 6px
    );
}

body::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 20%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.surface-root { 
    position: relative;
    z-index: 10;
    background: rgba(13, 13, 13, 0.98); 
    padding: 60px 80px; 
    border-radius: 4px; 
    text-align: center; 
    border: 1px solid #1a1a1a; 
    box-shadow: 0 0 60px rgba(0,0,0,1);
}

h1 { 
    font-size: 3.8rem;
    margin: 0 0 10px 0;
    background: linear-gradient(to bottom, #dcdcfc 0%, #9191e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(145, 145, 233, 0.4));
    letter-spacing: -3px;
    font-weight: 700;
}

p { 
    color: #4a4a4a;
    font-size: 13px; 
    letter-spacing: 1px; 
    margin-bottom: 40px;
}

.input-field-01 { 
    padding: 14px; 
    width: 320px; 
    background-color: #0a0a0a !important;
    color: #dbdcff !important; 
    
    caret-color: #dbdcff; 
    
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 1px solid #222;
    border-radius: 2px; 
    margin-bottom: 25px;
    font-family: 'Miracode', monospace;
    font-weight: 500;
    text-align: center;
    font-size: 15px;
    box-shadow: none !important;
    outline: none;
}

.input-field-01:focus::placeholder {
    color: transparent;
}

.action-trigger { 
    padding: 12px 45px; 
    background: #b8c1ec; 
    color: #0a0a0a; 
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Miracode', monospace;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.action-trigger:hover { 
    background: #9191e9; 
    box-shadow: 0 0 20px rgba(145, 145, 233, 0.4);
}

.anchor-sys { 
    display: inline-block;
    margin-top: 15px;
    color: #4a4a4a; 
    text-decoration: underline; 
    font-size: 12px; 
    transition: color 0.3s;
}

.anchor-sys:hover { color: #9191e9; }

.node-status { 
    margin-top: 25px; 
    font-size: 13px; 
    color: #ff4444; 
    min-height: 1.5em;
}

table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { padding: 12px; text-align: left; border-bottom: 1px solid #333; }
th { background: #222; font-size: 14px; color: #888; }
code { background: transparent; padding: 0; border-radius: 0; color: #dbdcff; font-family: 'Miracode', monospace; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

input[type='number'] {
    appearance: textfield !important;
  -moz-appearance: textfield !important;
}

input[type='number']::-moz-focus-inner,
input[type='number']::-moz-selection {
  -moz-appearance: none !important;
}