* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #1a1a1a;
  font-family: Arial, sans-serif;
  color: #fff;
}

a {
  text-decoration: none;
  color: #5f9bdf;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
  height: 100vh;
  background: linear-gradient(to bottom, #101820, #1e2a38);
}

.container img {
  max-width: 200px;
  margin: 10px;
}

h1 {
  font-size: 2rem;
  margin-top: 20px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Navigation */
.topnavbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  height: 60px;
  padding: 0 20px;
  margin: 0 0 18px;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: saturate(120%) blur(2px);
          backdrop-filter: saturate(120%) blur(2px);
  /* Optional brand block support (logo + name) */
  /* Links container (right side) */
  /* Right-aligned links */
  /* If a brand/logo is included and you want spacing between brand and links,
     add a helper class to the nav: <nav class="topnavbar with-brand"> */
}
.topnavbar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topnavbar .brand img {
  height: 44px;
  width: auto;
  border-radius: 0;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.topnavbar .brand .name {
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}
.topnavbar .links {
  display: flex;
  align-items: center;
  gap: 0; /* we control spacing via adjacent selector below */
}
.topnavbar > a, .topnavbar .links > a {
  color: #d7e9ff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 0.15s ease, background-color 0.15s ease, opacity 0.15s ease;
  opacity: 0.9;
}
.topnavbar > a + a, .topnavbar .links > a + a {
  margin-left: 10px;
}
.topnavbar > a:hover, .topnavbar .links > a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}
.topnavbar > a[aria-current=page], .topnavbar .links > a[aria-current=page] {
  color: #ffffff;
  font-weight: 600;
  position: relative;
}
.topnavbar > a[aria-current=page]::after, .topnavbar .links > a[aria-current=page]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -8px;
  height: 2px;
  background: #9ecbff;
  opacity: 0.9;
  border-radius: 2px;
}
.topnavbar.with-brand {
  justify-content: space-between;
}

/* Add top spacing so content doesn't tuck under fixed nav */
main {
  padding-top: 70px;
}

/* Flashes */
.flashes {
  margin: 10px 0 6px;
  text-align: left;
}

.flash {
  padding: 10px 12px;
  border-radius: 6px;
  margin: 6px 0;
}

.flash.success {
  background: rgba(60, 179, 113, 0.2);
  border: 1px solid #3cb371;
}

.flash.error {
  background: rgba(220, 20, 60, 0.2);
  border: 1px solid #dc143c;
}

.flash.info {
  background: rgba(70, 130, 180, 0.2);
  border: 1px solid #4682b4;
}

/* Forms */
form {
  margin: 14px 0;
  max-width: 820px;
  text-align: left;
}

form .error {
  color: #ffb3b3;
  font-size: 0.9rem;
  margin-top: 4px;
}

label {
  display: block;
  margin: 10px 0 4px;
}

input[type=text], input[type=email], input[type=url], input:not([type]), textarea, select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

button, .button {
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #243b55;
  color: #fff;
  cursor: pointer;
}

button:hover, .button:hover {
  filter: brightness(1.1);
}

/* Filters */
.filters {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}

.filters label {
  margin: 0;
}

/* Lists */
ul {
  list-style: disc;
  margin: 10px 0;
  max-width: 820px;
  text-align: left;
}

li {
  margin: 8px 0;
}

.muted {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Pagination */
.pagination {
  margin: 12px 0;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.pagination a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #9ecbff;
  text-decoration: none;
}

.pagination a.active {
  background: #1f2e3c;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Mod preview image */
.preview-image {
  margin: 12px auto;
  max-width: 820px;
}

.preview-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}


.card {
  margin: 0 10px 0 0;
}/*# sourceMappingURL=site.css.map */