@import "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";

@font-face {
  font-family: "Good Timing Rg";
  src: url("/_a/font/good-timing-bd.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* ---------- Base ---------- */
body {
  background-color: #0e0b05;
  color: #f5e6b0;
  font-family: "DM Sans", sans-serif;
  text-align: center;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #e6d28a;
}

/* ---------- Navigation ---------- */
nav {
  background: #15110a;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,.6);
  border: 1px solid rgba(212,175,55,.25);
}

ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 10px;
}

li {
  margin: 15px 0;
}

/* ---------- Links ---------- */
a {
  color: #d4af37;
  text-decoration: none;
}

a:hover {
  color: #f5e6b0;
}

/* ---------- Buttons ---------- */
button {
  display: inline-block;
  text-decoration: none;
  color: rgba(255,255,255,.85);
  font-size: 1.2em;
  padding: 12px 22px;
  border: 2px solid rgba(212,175,55,.35);
  border-radius: 5px;
  transition: .25s ease;
  background: #1b150b;
}

button:hover {
  color: #0e0b05;
  background-color: #d4af37;
  border-color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,175,55,.25);
}

/* ---------- Flex Utilities ---------- */
.flex-horiz {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.flex-vert {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* ---------- Particles ---------- */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a140a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #d4af37,
    #c9a227
  );
  border-radius: 10px 0 0 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f5e6b0;
}

/* ---------- Status Circle ---------- */
.greenCircle {
  height: 15px;
  width: 15px;
  background-color: #d4af37;
  border-radius: 100%;
  box-shadow: 0 0 6px rgba(212,175,55,.6);
}

/* ---------- Branding ---------- */
#logo {
  width: 20%;
}

.title {
  font-family: "Good Timing Rg", "DM Sans", sans-serif;
  height: 50px;
  font-size: 50px;
  color: #e6d28a;
}

.accent {
  color: #d4af37;
}

/* ---------- Footer ---------- */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: rgba(245,230,176,.85);
  text-align: center;
  padding: 4px 0;
  background: linear-gradient(
    to top,
    rgba(14,11,5,.9),
    rgba(14,11,5,0)
  );
}

/* ---------- Grid ---------- */
.gridContainer {
  width: calc(100% - 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
  margin-left: 65px;
}

.gridContainer .item {
  padding: 10px;
  border-radius: 8px;
  background: rgba(212,175,55,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,.25);
}
