@charset "utf-8";


:root {
  --page-width: 1120px;
  --ink: #eeeeee;
  --muted: #bcc2cc;
  --panel: rgba(8, 10, 14, 0.94);
  --panel-soft: rgba(19, 23, 31, 0.94);
  --accent: #6ff46e;
  --accent-blue: #6cfffc;
  --accent-red: #ef6670;
  --accent-gold: #f4e55f;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: #020000 url("../images2/tile.jpg") repeat;
  font: 16px/1.58 Baskerville, "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

a:visited {
  color: #acf8ff;
}

a:hover,
a:focus-visible {
  color: var(--accent-red);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  letter-spacing: 0.04em;
}

h2 {
  color: var(--accent-blue);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

h3 {
  color: #a7e362;
  font-size: 1.18rem;
}

h4 {
  color: #68ffb1;
  font-size: 1.05rem;
}

/* Shared modern layout */

.site-shell,
.header_resize,
.content_resize,
.fbg_resize,
.footer_resize,
.container {
  width: min(calc(100% - 28px), var(--page-width));
  margin-inline: auto;
}

.site-header {
  padding-top: 14px;
}

.site-banner,
.header_resize > img,
.header_resize > a > img {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-banner img,
.header_resize > img,
.header_resize > a > img {
  width: 100%;
  max-height: 230px;
  object-fit: cover;
}

.hero {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 44px);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.97), rgba(22, 9, 29, 0.88)),
    url("../images2/tile.jpg") repeat;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero p {
  max-width: 820px;
  margin-bottom: 0;
  color: #d8dbe2;
  font-size: clamp(1.03rem, 2vw, 1.23rem);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card,
.article,
.gadget,
.box {
  padding: clamp(18px, 3vw, 30px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Navigation: supports both .site-nav and legacy .menu_nav */

.site-nav,
.menu_nav {
  min-height: 0;
  margin-top: 12px;
  padding: 0;
  background: rgba(0, 0, 0, 0.78);
  border-block: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-nav ul,
.menu_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  width: min(calc(100% - 18px), var(--page-width));
  height: auto;
  margin: 0 auto;
  padding: 9px;
  float: none;
  list-style: none;
}

.site-nav li,
.menu_nav ul li {
  margin: 0;
  padding: 0;
  float: none;
  background: none;
}

.site-nav a,
.menu_nav ul li a {
  display: grid;
  min-width: 104px;
  min-height: 40px;
  width: auto;
  height: auto;
  place-items: center;
  margin: 0;
  padding: 0.4rem 0.85rem;
  color: #ffffff;
  background: #161922 url("../images2/bttna.jpg") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  font-family: Cambria, Georgia, serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms ease, filter 140ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.menu_nav ul li a:hover,
.menu_nav ul li.active a {
  color: #ffffff;
  background-image: url("../images2/bttnh.jpg");
  filter: brightness(1.15);
  transform: translateY(-2px);
}

.site-nav a:active,
.menu_nav ul li:active a {
  background-image: url("../images2/bttnp.jpg");
  box-shadow: none;
  transform: translateY(2px);
}

/* Legacy structure made responsive */

.main {
  width: 100%;
  margin: 0;
  padding: 0;
}

.clr {
  display: block;
  clear: both;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.content,
.content_resize {
  width: min(calc(100% - 28px), var(--page-width));
  margin: 22px auto;
  padding: 0;
  float: none;
  background: transparent;
}

.content_resize {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 22px;
  align-items: start;
}

.content .mainbar,
.content_resize .mainbar {
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 0;
  float: none;
}

.content .sidebar,
.content_resize .sidebar {
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 0;
  float: none;
}

.content .mainbar .article {
  margin: 0 0 22px;
  padding: clamp(18px, 3vw, 30px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.content .mainbar h2,
.content .sidebar h2 {
  margin: 0 0 0.8rem;
  padding: 0 0 0.55rem;
  color: var(--accent-blue);
  border-bottom: 1px solid var(--border);
}

.content .mainbar div.img,
.content .mainbar img,
.content .mainbar img.fl {
  max-width: 100%;
  margin: 0 1rem 1rem 0;
  padding: 0;
  float: none;
  background: transparent;
  border: 0;
}

.content .mainbar .post_content {
  width: auto;
  margin: 0;
  float: none;
}

.content .sidebar .gadget {
  margin: 0 0 18px;
  padding: 20px;
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

ul.sb_menu,
ul.ex_menu {
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

ul.sb_menu li,
ul.ex_menu li {
  width: auto;
  margin: 0;
  padding: 0.45rem 0;
}

ul.sb_menu li a,
ul.ex_menu li a {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: var(--accent);
  font-weight: 400;
  text-decoration: underline;
}

ul.sb_menu li a:hover,
ul.ex_menu li a:hover {
  color: var(--accent-red);
  font-weight: 400;
}

p.spec,
p.infopost {
  margin: 0 0 1rem;
  padding: 0;
}

p.infopost,
p.infopost a {
  color: var(--muted);
}

.content .mainbar a.rm {
  display: inline-block;
  min-height: 0;
  margin: 0.75rem 0 1rem;
  padding: 0.58rem 0.9rem;
  float: none;
  color: #ffffff;
  background: #202733 url("../images2/starcuswx.jpg") center / cover repeat-x;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.content p.pages {
  margin: 1.5rem 0 0;
  padding: 1rem 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.content p.pages span,
.content p.pages a {
  display: inline-block;
  margin: 0.15rem;
  padding: 0.48rem 0.7rem;
  color: var(--ink);
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
}

.content p.pages span,
.content p.pages a:hover {
  color: #071008;
  background: var(--accent);
}

.content p.pages small {
  float: none;
}

/* Footer content blocks */

.fbg {
  margin-top: 22px;
}

.fbg_resize {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 24px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fbg h2 {
  padding-bottom: 0.6rem;
  color: var(--accent-blue);
}

.fbg .col,
.fbg .c1,
.fbg .c2,
.fbg .c3 {
  width: auto;
  margin: 0;
  padding: 0;
  float: none;
}

.fbg .fbg_ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fbg .fbg_ul li {
  margin: 0;
  padding: 0.3rem 0;
}

.fbg .fbg_ul li a {
  display: inline;
  padding: 0;
  color: var(--accent);
  background: none;
}

.fbg p.contact_info {
  line-height: 1.65;
}

.fbg p.contact_info span {
  display: inline;
  width: auto;
  margin-right: 0.35rem;
  float: none;
  color: #ffffff;
}

.footer,
.site-footer {
  margin-top: 22px;
}

.footer_resize,
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 0 34px;
  color: #aeeed8;
  background: transparent;
  line-height: 1.5;
}

.footer_resize p,
.site-footer p {
  margin: 0;
  padding: 0;
  white-space: normal;
}

.footer_resize a,
.site-footer a {
  color: var(--accent);
}

.footer_resize .lf,
.footer_resize .rf {
  float: none;
}

/* Forms */
.release-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--panel-soft);
}

.release-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.release-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.release-buttons a {
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 5px;
  text-decoration: none;
}

.release-buttons a:hover,
.release-buttons a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol li {
  display: block;
  clear: both;
}

ol li label {
  display: block;
  margin: 0;
  padding: 1rem 0 0.35rem;
}

ol li input.text,
ol li textarea,
input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  color: #ffffff;
  background: #12151c;
  border: 1px solid var(--border);
  border-radius: 4px;
}

ol li input.text,
input,
select {
  min-height: 42px;
  padding: 0.55rem 0.65rem;
}

ol li textarea,
textarea {
  min-height: 150px;
  padding: 0.65rem;
  resize: vertical;
}

ol li .send {
  margin-top: 1rem;
}

.searchform {
  margin: 0;
  padding: 0;
  float: none;
}

/* Responsive adjustments */

@media (max-width: 860px) {
  .content_resize {
    grid-template-columns: 1fr;
  }

  .fbg_resize {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 610px) {
  .site-shell,
  .header_resize,
  .content,
  .content_resize,
  .fbg_resize,
  .footer_resize,
  .container {
    width: min(calc(100% - 18px), var(--page-width));
  }

  .site-nav li,
  .menu_nav ul li {
    flex: 1 1 42%;
  }

  .site-nav a,
  .menu_nav ul li a {
    min-width: 0;
  }

  .footer_resize,
  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}