/* ===== BASE ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 20px;
  background-color: #0d0000;
  background-image: linear-gradient(180deg, #1a0008 0%, #0d0000 100%);
  color: #f5e6c8;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

/* ===== SITE WRAPPER ===== */
.site-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: #140008;
  border: 6px double #c41e3a;
  box-shadow: 0 0 40px rgba(196, 30, 58, 0.4);
}

/* ===== HEADER ===== */
.main-header {
  background: linear-gradient(90deg, #2a0010, #4a0018, #2a0010);
  border-bottom: 4px solid #c41e3a;
  padding: 25px 20px;
  text-align: center;
}

.header-banner h1 {
  margin: 0;
  font-size: 2.6em;
  color: #ffcc66;
  text-shadow: 0 0 12px #ff0066, 0 0 25px #c41e3a;
  letter-spacing: 2px;
}

.tagline {
  margin: 8px 0 0;
  color: #ffb3c6;
  font-size: 1.1em;
}

/* ===== MAIN LAYOUT ===== */
.main-layout {
  display: flex;
  gap: 0;
  min-height: 600px;
}

/* ===== SIDEBARS ===== */
.sidebar {
  width: 220px;
  padding: 15px;
  background: #1a000a;
}

.left-sidebar {
  border-right: 3px solid #c41e3a;
}

.right-sidebar {
  border-left: 3px solid #c41e3a;
}

/* ===== CONTENT ===== */
.content {
  flex: 1;
  padding: 20px;
  background: #120006;
}

/* ===== BOXES ===== */
.box {
  background: #1f000c;
  border: 3px solid #8b1a2e;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.box h2, .box h3 {
  margin-top: 0;
  color: #ffcc66;
  border-bottom: 2px solid #c41e3a;
  padding-bottom: 6px;
  font-size: 1.25em;
}

.welcome-box {
  border-color: #ff6699;
}

.highlight-box {
  background: linear-gradient(180deg, #2a0014, #1f000c);
  border-color: #ffcc66;
}

/* ===== NAVIGATION ===== */
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li {
  margin: 6px 0;
}

.nav-list a {
  display: block;
  padding: 7px 12px;
  color: #ffd6e0;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-list a:hover {
  background: #c41e3a;
  color: #fff;
  padding-left: 18px;
}

/* ===== UPDATES ===== */
.update-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95em;
}

.update-list li {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #5a1a2a;
}

/* ===== BUTTON ===== */
.button {
  display: inline-block;
  background: #c41e3a;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #ffcc66;
  transition: all 0.2s;
}

.button:hover {
  background: #ff3366;
  box-shadow: 0 0 15px #ff0066;
}

/* ===== FOOTER ===== */
.main-footer {
  text-align: center;
  padding: 18px;
  background: #0f0006;
  border-top: 4px solid #c41e3a;
  color: #c9a88a;
  font-size: 0.95em;
}

.tiny {
  font-size: 0.8em;
  opacity: 0.8;
}

.center {
  text-align: center;
}

.small {
  font-size: 0.95em;
}

/* ===== RESPONSIVE (basic) ===== */
@media (max-width: 900px) {
  .main-layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    border: none !important;
  }