body {
    cursor: url("https://files.catbox.moe/k84yyu.gif"), auto;
    background-color: #000;
    background-image: url('https://files.catbox.moe/nicta5.jpeg');
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
  padding: 90px; padding-top:70px;
}

#main-container {
    overflow: hidden;
    box-shadow: 0 0 30px #fff;
    margin: auto;
    width: 1080px;
    padding: 15px;
    background-image: url('https://files.catbox.moe/n6uc9l.png');
    background-color: rgba(0,0,0,0.7); /* Fallback dark tint */
    border: ridge 5px #FFFAFB;
    outline: solid 4px black;
    border-radius: 60px 6px 60px 6px; /* Slightly toned down for better fit */
}

/* Header */
h1 {
    background-image: url('https://files.catbox.moe/od6j0u.png');
    color: #fff;
    text-shadow: 3px 3px #000;
    font-family: "DotGothic16", sans-serif;
    font-size: 32px;
    border: ridge 4px #FFFAFB;
    outline: solid 4px black;
    border-radius: 120px 6px 120px 6px;
    text-align: center;
    padding: 20px;
    margin: 0 0 25px 0;
}
/* Lace */
.lace {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  overflow:hidden;
  margin-top:30px;
  z-index:-2;
  }
  
/* Layout Wrapper */
#layout-wrapper {
    display: flex;
    gap: 20px;
}

/* Sidebar */
#sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inner-card {
    background: rgba(0, 0, 0, 0.5);
    border: ridge 3px #FFFAFB;
    outline: solid 2px black;
    padding: 15px;
    border-radius: 20px 5px;
    text-align: center;
}

.side-img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid #fff;
    filter: grayscale(0.6);
}

/* Navigation */
#menu a {
    display: block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #fff;
    font-family: "DotGothic16", sans-serif;
    border-radius: 5px 15px;
    transition: 0.3s;
}

#menu a:hover {
    background: #FFFAFB;
    color: #000;
    transform: scale(1.05);
}

/* Content Area */
#content {
    flex: 2.5;
}

.content-box {
    background: #000;
    border: ridge 4px #FFFAFB;
    outline: solid 3px black;
    padding: 20px;
    border-radius: 10px 40px;
    color: #fff;
    text-shadow: 1px 1px #000;
}

/* Utilities */
.dotgothic16-regular {
    font-family: "DotGothic16", sans-serif;
}

.hp-bar {
    width: 100%;
    height: 8px;
    background: #333;
    border: 1px solid #fff;
    margin-top: 10px;
}

.hp-fill {
    width: 20%;
    height: 100%;
    background: #000;
    box-shadow: 0 0 8px #000;
}

footer {
    margin-top: 25px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    #layout-wrapper { flex-direction: column; }
    #main-container { border-radius: 20px; }
}