:root {
  --header-image: url('https://i.postimg.cc/xqrX5QVZ/Screenshot_2026_02_03_at_9_12_07_AM.png');
}

/* GLOBAL */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: #fceaff;
  background-color: #000;
  background-image: url('https://i.postimg.cc/LXYv9s4h/IMG_7643.jpg');
  background-attachment: fixed;
  background-size: 100%;
}

/* FONTS */
@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}
@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
  font-weight: bold;
}
@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
  font-style: italic;
}
@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
  font-weight: bold;
  font-style: italic;
}

/* LAYOUT */
#container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#header {
  height: 150px;
  background-image: var(--header-image);
  background-size: cover;
  background-position: center;
}

#navbar {
  width: 100%;
  padding: 2px;
  margin-bottom: 13px;
  background: linear-gradient(to bottom, #446036, #324A25);
  border-radius: 12px;
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
}

#navbar ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  padding: 0;
  margin: 5px;
}

#navbar li a {
  display: inline-block;
  padding: 2px 50px 2px;
  margin-top: 3px;
  margin-bottom: 3px;
  background: linear-gradient(to bottom, #324A25, #1C2D14);
  border-radius: 5px;
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 2px #E6CF9E,
    0 0 0 3.5px #31140C;
  color: #FFF7BA;
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
  filter: brightness(2);
}

#navbar li a:active {
  transform: translateY(1px);
  filter: brightness(0.95);
}

#flex {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

aside {
  width: 200px;
  padding: 20px;
  font-size: smaller;
  border-radius: 12px;
  background: linear-gradient(to bottom, #9C7258, #815A41, #744D34);
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
}

main {
  flex: 1;
  padding: 20px;
  font-size: smaller;
  border-radius: 12px;
  background: linear-gradient(to bottom, #446036, #324A25);
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
}

#leftSidebar { order: 1; }
main { order: 2; }
#rightSidebar { order: 3; }

footer {
  width: 100%;
  padding: 10px;
  margin-top: 40px;
  text-align: center;
  background: linear-gradient(to bottom, #446036, #324A25);
}

/* CONTENT */
h1, h2, h3 {
  color: #31140C;
  text-align: center;
}

.box {
  background: #000;
  border: 1px solid #fff;
  padding: 10px;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  #flex {
    flex-wrap: wrap;
  }

  aside,
  main {
    width: 100%;
  }

  main { order: 1; }
  #leftSidebar { order: 2; }
  #rightSidebar { order: 3; }

  #navbar ul {
    flex-wrap: wrap;
  }
}

/* OTHER STYLES (unchanged from your original CSS) */

@font-face {
  font-family: 'CutCrap';
  src: url('https://dreamerslost.neocities.org/texthome/Cut%20the%20crap.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.cutcrap {
  font-family: 'CutCrap', sans-serif;
  font-size: 2.5em;
  text-align: center;
}

/* Sidebar links */
#sideNav li a, #sideNav2 li a {
  display: block;
  padding: 12px 20px;
  margin-bottom: 10px;
  background: linear-gradient(to bottom, #446036, #324A25);
  border-radius: 12px;
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
  color: #FFF7BA;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

#sideNav li a:hover,
#sideNav2 li a:hover {
  filter: brightness(1.5);
}

#sideNav li a:active,
#sideNav2 li a:active {
  filter: brightness(0.95);
}

#sideNav ul,
#sideNav2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Image boxes, cards, popups, currency, etc. remain unchanged from your original CSS */
/* ... all other styles below remain as-is ... */
