
body {
    background-color: #000;
    background-image: url("./wallpaper.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    cursor: crosshair;
    color: #00ffff;
    font-family: monospace;
    line-height: 1.6;
    text-shadow: 0 0 1px #00ffff, 0 0 2px #00ffff;
    margin: 0;
    padding: 24px 16px;

    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 999;
}

.main_title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 24px;
    font-family: monospace;
    color: #00ffff;
    text-shadow: 0 0 4px #00ffff, 0 0 8px #00ffff;
}

.main_title,
.page_layout {
    position: relative;
    z-index: 1;
}

.page_layout {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 24px;
}


.lateral_menu ul {
  list-style-type: none;
  padding-left: 0;
}

li a {
  display: block;
  padding: 8px 15px;
  border: 1px solid #00ffff;
  color: #00ffff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: monospace;
  transition: all 0.2s ease;
}

li a:hover {
  background-color: #00ffff;
  color: #000000;
  box-shadow: 0 0 15px #00ffff;
}

.lateral_menu {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 16px;
    position: sticky;
    top: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.lateral_menu a {
    display: block;
    padding: 5px;
    border: 1px solid #00ffff;
    margin-bottom: 5px;
    text-decoration: none;
    color: #00ffff;
    background: #000;
    transition: all 0.2s;
}

.lateral_menu a:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 10px #00ffff;
}

.main_content {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 20px;
    line-height: 1.6;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .page_layout {
        grid-template-columns: 1fr;
    }

    .lateral_menu {
        position: static;
    }
}

a {
    color: #9fd3ff;
}

#memino_badge {
    display: block;
    margin: 5px auto;
    width: 200px;
}

.badges_area {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  padding: 10px;
}

.badges_area img {
  border: 1px solid #333;
}