/* =========================
   RESTED XP - RPG THEME v2
   ========================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0f14;
  color: #e6e6e6;
}

/* HEADER */
header {
  padding: 15px;
  background: #0f1620;
  border-bottom: 2px solid #1f2a3a;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logotext {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* XP BAR */
.xpbar {
  width: 200px;
  height: 10px;
  background: #1c2a3a;
  border-radius: 5px;
  overflow: hidden;
}

.xpfill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00ff99, #00aaff);
  transition: width 0.3s ease;
}

/* NAV */
nav {
  margin-top: 10px;
}

nav a {
  color: #9ecbff;
  margin-right: 15px;
  text-decoration: none;
}

nav a:hover {
  color: white;
}

/* GAME UI GRID */
.game-ui {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 15px;
  padding: 15px;
}

/* PANELS */
.panel {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* CARDS */
.card {
  background: #111a24;
  border: 1px solid #1f2a3a;
  padding: 15px;
  border-radius: 10px;
}

/* BUTTONS */
button {
  background: #1f6feb;
  border: none;
  padding: 8px 12px;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 10px;
}

button:hover {
  background: #2f81f7;
}

/* LEFT PANEL */
.panel.left .card {
  border-left: 3px solid #00ff99;
}

/* CENTER PANEL */
.panel.center .card {
  border-left: 3px solid #00aaff;
}

/* RIGHT PANEL */
.panel.right .card {
  border-left: 3px solid #ffcc00;
}

/* LISTS */
ul {
  padding-left: 18px;
}

/* TAGS */
.tag {
  display: inline-block;
  padding: 3px 8px;
  margin: 3px;
  background: #1f2a3a;
  border-radius: 5px;
  font-size: 12px;
}

```css
/* ===========================
   QUEST PANEL
=========================== */

.quest-panel{
    background:#151515;
    border:2px solid #4CAF50;
    border-radius:12px;
    padding:20px;
    margin:20px 0;
    box-shadow:0 0 18px rgba(76,175,80,.25);
}

.quest-panel h2{
    text-align:center;
    color:#7CFC00;
    margin-bottom:15px;
}

.quest-box{
    background:#222;
    border-radius:10px;
    padding:18px;
}

.quest-box h3{
    color:#FFD54F;
    margin:8px 0;
}

.quest-box ul{
    margin-left:20px;
}

.quest-box li{
    margin:8px 0;
}

/* ===================================
   ABOUT PAGE
=================================== */

.about-page{
    max-width:1100px;
    margin:40px auto;
    padding:0 20px;
}

.about-card{
    background:#1b1b1b;
    border:1px solid #333;
    border-radius:16px;
    padding:40px;
    box-shadow:0 0 25px rgba(0,0,0,.4);
}

.about-card h1{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.about-card h2{
    margin-top:40px;
    color:#FFD54F;
    border-bottom:1px solid #333;
    padding-bottom:8px;
}

.about-card p{
    line-height:1.8;
    font-size:17px;
}

.about-card ul{
    margin-left:30px;
}

.about-card li{
    margin:10px 0;
}

.about-card hr{
    margin:35px 0;
    border:none;
    border-top:1px solid #333;
}

/* ===========================
   SYSTEM BOOT SCREEN
=========================== */

#systemBoot {
  max-width: 900px;
  margin: 50px auto;
  background: #111;
  border: 2px solid #44ff66;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 0 25px rgba(0,255,100,.25);
  text-align: center;
}

#systemBoot h1 {
  color: #FFD54F;
  letter-spacing: 3px;
}

#bootTitle {
  color: #44ff66;
  margin-bottom: 25px;
  letter-spacing: 3px;
}

.bootBar {
  width: 100%;
  height: 22px;
  background: #222;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}

#bootProgress {
  width: 0%;
  height: 100%;
  background: #44ff66;
  transition: width .25s linear;
}

#bootMessages {
  min-height: 150px;
  text-align: left;
  font-family: monospace;
  color: #9cffb2;
}

#bootMessages p {
  margin: 8px 0;
}

#enterButton {
  margin-top: 20px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid #44ff66;
  background: #111;
  color: #44ff66;
  cursor: pointer;
  font-weight: bold;
}

#enterButton:hover {
  background: #44ff66;
  color: #111;
}