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

* {
    box-sizing: border-box;
    font-family: 'Minecraftia', sans-serif !important;
}

body {
    background-image: url("imgs/background.png");
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    overflow-x: hidden;
}

.banner-box {
    width: 100%;
    max-width: 500px;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 100%);
}

.banner-title {
    position: absolute;
    bottom: 32px;
    left: 15px;
    z-index: 3;
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.outer-fade {
    width: 100%;
    max-width: 500px;
    height: 80px;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
    margin-bottom: -50px;
}

.import-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.import-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 0 12px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.panel {
    border: 12px solid transparent;
    border-image: url('imgs/panel_bg.png') 3 fill;
    image-rendering: pixelated;
    margin-bottom: 15px;
    background: rgba(13, 14, 18, 0.95);
    padding: 8px 0;
}

.panel-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 4px 10px 8px;
    opacity: 0.2;
}

.header {
    color: #b35cff;
    font-size: 0.6rem;
    padding: 2px 14px;
}

.since-row {
    font-size: 0.45rem;
    color: #b35cff;
    padding: 0 14px 4px;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-date {
    color: #999;
    font-size: 0.4rem;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 2px 14px;
}

.row span {
    font-size: 0.7rem;
    color: #AA9DC5;
}

.glow {
    color: #E0D7FF !important;
    text-shadow: 0 3px 5px #6416FF;
    font-size: 0.85rem !important;
}

.field {
    display: flex;
    flex-direction: column;
    margin: 0 14px 4px 14px;
    border-bottom: 1px solid #000;
}

.field label {
    display: flex;
    justify-content: space-between;
    font-size: 0.45rem;
    color: #AA9DC5;
}

input {
    background: none;
    border: none;
    color: #fff;
    text-align: right;
    font-size: 0.85rem;
    padding: 2px 0;
    outline: none;
    }
