body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: rgba(255, 255, 255, 0.8);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    overflow: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(225, 154, 42, 0.6) 2px, transparent 2px),
        linear-gradient(to bottom, rgba(225, 154, 42, 0.6) 2px, transparent 2px);
    background-size: 180px 180px;
    background-position: center;
    filter: drop-shadow(0 0 6px rgba(255, 0, 20, 0.7));

    mask-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.9) 15%, rgba(0, 0, 0, 0.9) 85%, transparent),
                linear-gradient(to left, transparent, rgba(0, 0, 0, 0.9) 15%, rgba(0, 0, 0, 0.9) 85%, transparent);
    -webkit-mask-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.9) 15%, rgba(0, 0, 0, 0.9) 85%, transparent),
                        linear-gradient(to left, transparent, rgba(0, 0, 0, 0.9) 15%, rgba(0, 0, 0, 0.9) 85%, transparent);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-composite: intersect;
    -webkit-mask-composite: destination-in;
    z-index: -1;
}

.content {
    width: 1100px;
    max-height: 78vh;
    padding: 20px;
    background: rgb(0 0 0 / 85%);
    border: 1px solid #f89a2a;
    box-shadow: 0px 0px 30px rgba(100, 0, 20, 0.2);
    border-radius: 10px;
    z-index: 0;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.content::-webkit-scrollbar {
    display: none;
}

article h1 {
    color: #f89a2a;
    margin: 50px 0px 0px;
}

article h2 {
    font-size: 1em;
    margin-top: 30px;
    margin-bottom: 20px;
}

article p {
    font-size: 1em;
    line-height: 1.5;
}

.heading {
	font-size: 1.1em;
    color: #ffffff;
    font-weight: bold;
}

.highlight {
    color: #f89a2a;
}

.warning {
    color: #d20000;
}

a {
    color: #f89a2a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#explorer-data {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 40px;
    font-size: clamp(0.8em, 2vw, 1.2em);
    color: #ffffff;
    max-width: 100%;
    text-align: center;
    padding-top: 45px;
    padding-bottom: 40px;
}