@charset "UTF-8";
/* Core Variables */
/* Global Styles */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    line-height: 1.5;
    color: #2bca6d;
    background-color: #2e5339;
    font-family: "Press Start 2P", system-ui;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #171412;
    background-image: 
        linear-gradient(45deg, transparent 50%, rgba(43, 202, 109, 0.1) 50%),
        linear-gradient(-45deg, transparent 50%, rgba(43, 202, 109, 0.1) 50%);
    background-size: 20px 20px;
    background-position: 0 0, 0 0;
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #35d477;
}

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

a:hover {
    color: #27b964;
}

pre {
    background: #B8BAC8;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #B8BAC8;
    margin: 0;
    padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 3rem;
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Header Styles */
.header {
    background-color: #171412;
    color: #B8BAC8;
}

.header a {
    font-family: "Jacquard 12", system-ui;
    font-weight: 400;
    font-size: 1.5rem;
    color: #2bca6d;
}

.header .logo {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.header .padding {
    padding: 1rem 0;
}

.header i {
    color: #ff4d80;
    font-size: 1.5rem;
    filter: drop-shadow(1px 1px 0px #27b964);
    -webkit-filter: drop-shadow(1px 1px 0px #27b964);
}

.header i:hover {
    color: #FF37A6;
    animation: logorotate 1s ease 0s infinite alternate both;
    -webkit-animation: logorotate 1s ease 0s infinite alternate both;
}

.header i:nth-child(2) {
    z-index: 2;
    position: relative;
    left: -38px;
    top: 2px;
    font-size: 0.8em;
    animation: logospin 4s ease-in-out 0.5s infinite normal forwards;
    -webkit-animation: logospin 4s ease-in-out 0.5s infinite normal forwards;
    -moz-animation: logospin 4s ease-in-out 0.5s infinite normal forwards;
}

/* Footer Styles */
.footer {
    background-color: #171412;
    color: #B8BAC8;
}

#footer i {
    font-size: 1rem;
}

/* Main Content Styles */
#body {
    background-color: #171412;
    background-image: none;
}

#body > div.wrapper {
    position: relative;
    overflow: auto;
    background-color: #2e5339;
    min-height: 70vh;
    border: 4px double #B8BAC8;
    box-shadow: 0 0 0 2px #263c2a;
    background-image: repeating-radial-gradient(circle, #263c2a 0 2px, transparent 2px 16px);
    background-size: 24px 24px;
}

#body > div.wrapper::before {
    content: none;
}

#body > div.wrapper > * {
    z-index: 1;
}

div > a,
section > p {
    position: relative;
    z-index: 2;
}

/* Menu Styles */
.main-nav {
    padding: 4px;
    background-color: #171412;
    margin-bottom: 1rem;
}

.main-nav ul {
    text-align: center;
    letter-spacing: -1em;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    display: inline-block;
    letter-spacing: normal;
    position: relative;
}

.main-nav ul li a {
    position: relative;
    display: block;
    line-height: 45px;
    color: #fff;
    padding: 0 20px;
    white-space: nowrap;
}

.main-nav > ul > li > a {
    border-radius: 2px;
}

.main-nav ul li:hover > a {
    background-color: #35d477;
}

.main-nav ul li.selected > a {
    background-color: #fff;
    color: #27b964;
}

.main-nav ul li ul {
    position: absolute;
    background-color: #171412;
    min-width: 100%;
    text-align: left;
    z-index: 999;
    display: none;
}

.main-nav ul li ul li {
    display: block;
}

.main-nav ul li ul ul {
    left: 100%;
    top: 0;
}

.main-nav li:hover > ul {
    display: block;
}

.main-nav .has-children > a {
    padding-right: 30px;
}

.main-nav .has-children > a:after {
    font-family: FontAwesome;
    content: "";
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 0;
}

.main-nav .has-children .has-children > a:after {
    content: "";
}

/* Icon Styles */
i {
    color: #ff4d80;
    font-size: 1.5rem;
    filter: drop-shadow(2px 2px 2px #ff3e41);
    -webkit-filter: drop-shadow(2px 2px 2px #ff3e41);
}

/* Animations */
@keyframes logorotate {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0.1);
    }
}
@keyframes logospin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 0.875rem;
    }
}
@media (min-width: 769px) {
    body {
        min-height: 100%;
    }
}