/* Y2K chrome — red / black
   Glossy metal, gel edges, hyperlink navigation */

:root {
  --black: #0a0506;
  --black-2: #12080a;
  --panel: #1a0c10;
  --panel-2: #221014;
  --chrome-light: #ffb0bc;
  --chrome-mid: #e83a5a;
  --chrome-dark: #6b1528;
  --chrome-deep: #3a0a14;
  --text: #f0e4e8;
  --muted: #a88890;
  --link: #ff6b8a;
  --link-hover: #ffd0d8;
  --silver: #c8c0c4;
  --silver-dark: #5a5054;
}

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

body {
  font-family: Tahoma, "MS Sans Serif", "Microsoft Sans Serif", Verdana, Arial, sans-serif;
  background: var(--black);
  /* background-image:
    radial-gradient(ellipse at 50% 0%, #2a1018 0%, var(--black) 55%); */
  color: var(--text);
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.5;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 20px auto;
  /* padding: 0 10px; */
  /* chrome outer frame */
  border: 2px solid var(--chrome-dark);
  /* border-top-color: var(--chrome-light); */
  /* border-left-color: var(--chrome-mid); */
  /* border-right-color: var(--chrome-deep); */
  /* border-bottom-color: #1a0508; */
  background: var(--black-2);
  /* box-shadow:
    inset 0 1px 0 rgba(255, 180, 190, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.6),
    0 0 24px rgba(0, 0, 0, 0.8); */
}

/* ===== HEADER / BANNER + LOGO OVERLAP ===== */
header {
  padding: 0;
  background: transparent;
  border-bottom: 2px solid var(--chrome-dark);
  border-bottom-color: var(--chrome-deep);
  position: relative;
  overflow: hidden;
}

.banner-wrap {
  position: relative;
  width: 100%;
  height: 160px;          /* fixed banner area height */
  overflow: hidden;
  background: #100508;
}

.banner {
  position: absolute;
  inset: 0;
  line-height: 0;
  background: #100508;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;  /* keep right side visible when cropped */
  display: block;
}

#widget {
  max-width: 100%;
}

blockquote {
  display: block;
  margin: 12px 0;
  padding: 8px 12px;
  background: linear-gradient(180deg, #1a0c10 0%, #14080c 100%);
  border-left: 4px solid var(--chrome-mid);
  color: var(--muted);
  font-size: 13px;
}

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

.header-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;   /* logo on the left */
  padding: 0 16px;
  pointer-events: none;
}

.header-inner a {
  pointer-events: auto;
}

.logo-wrap {
  display: inline-block;
}

.logo-wrap img {
  max-width: 280px;
  width: auto;
  max-height: 120px;
  height: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7))
          drop-shadow(0 0 10px rgba(232, 58, 90, 0.4));
}

/* Mobile top bar removed */
.mobile-nav {
  display: none !important;
}

/* Top bar removed — hide desktop nav completely */
nav.desktop-nav {
  display: none !important;
}

/* ===== LAYOUT ===== */
.layout {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.sidebar-right,
.sidebar-left,
.main {
  display: table-cell;
  vertical-align: top;
}

.sidebar-right {
  width: 176px;
  background: linear-gradient(180deg, #160a0e 0%, #100608 100%);
  border-left: 2px solid var(--chrome-deep);
  border-left-color: #2a0c14;
  padding: 12px 8px;
  box-shadow: inset 2px 0 8px rgba(0, 0, 0, 0.4);
}

.sidebar-left {
  width: 176px;
  background: linear-gradient(180deg, #160a0e 0%, #100608 100%);
  border-right: 2px solid var(--chrome-deep);
  border-right-color: #2a0c14;
  padding: 12px 8px;
  box-shadow: inset -2px 0 8px rgba(0, 0, 0, 0.4);
}

.main {
  padding: 14px 16px;
  background: linear-gradient(180deg, #140a0c 0%, #0e0608 100%);
}

/* Y2K chrome panels */
.box {
  background: linear-gradient(180deg, #241018 0%, #180c10 100%);
  border: 2px solid;
  border-color: var(--chrome-mid) var(--chrome-deep) var(--chrome-deep) var(--chrome-mid);
  margin-bottom: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 160, 175, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.4);
}

.box-header {
  background: linear-gradient(180deg, #c03050 0%, #8a1a30 45%, #6a1224 100%);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-bottom: 1px solid var(--chrome-deep);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 150, 160, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 180, 190, 0.35);
}

.box-body {
  padding: 10px;
}

.box-body p {
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}

.box-body p:last-child {
  margin-bottom: 0;
}

/* Hyperlinks only in sidebar */
.side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-list li {
  margin-bottom: 3px;
  line-height: 1.4;
}

.side-list a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 12px;
  border: none;
  background: none;
  padding: 0;
}

.side-list a:hover {
  color: var(--link-hover);
  text-shadow: 0 0 6px rgba(255, 120, 140, 0.5);
}

.badge-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.badge-links a {
  display: block;
  line-height: 0;
}

.badge-links a:hover {
  filter: brightness(1.12);
}

.badge-links img {
  width: 88px;
  height: 31px;
  display: block;
  border: 0;
}

/* Posts */
.post {
  background: linear-gradient(180deg, #1a0e12 0%, #140a0c 100%);
  border: 2px solid;
  border-color: #4a1a28 #0a0406 #0a0406 #3a1520;
  padding: 12px 14px;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 100, 120, 0.08);
}

.post h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.post .meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}

.post p {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 16px;
}

.post p:last-child {
  margin-bottom: 0;
}

.post a {
  color: var(--link);
  text-decoration: underline;
}

.post a:hover {
  color: var(--link-hover);
}

.post img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 8px 0;
}

.ul {
  list-style: disc;
  margin-left: 32px;
  margin-bottom: 8px;
  margin-block-start: 14px;
  margin-block-end: 14px;
}

/* Chrome gel button */
.btn {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(180deg, #e85070 0%, #c03050 40%, #8a1a30 100%);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 12px;
  border: 2px solid;
  border-color: var(--chrome-light) var(--chrome-deep) var(--chrome-deep) var(--chrome-mid);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 200, 210, 0.4),
    0 2px 3px rgba(0, 0, 0, 0.4);
}

.btn:hover {
  background: linear-gradient(180deg, #ff6a88 0%, #e04060 40%, #a02038 100%);
  filter: brightness(1.05);
}

.btn:active {
  border-color: var(--chrome-deep) var(--chrome-light) var(--chrome-mid) var(--chrome-deep);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.45);
  position: relative;
  top: 1px;
}

.ecrazeus-box {
  text-align: center;
}

.ecrazeus-box img {
  display: block;
  width: 100%;
  max-width: 148px;
  margin: 0 auto 8px;
  border: 2px solid;
  border-color: var(--chrome-deep) var(--chrome-mid) var(--chrome-mid) var(--chrome-deep);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.ecrazeus-box .release {
  font-size: 12px;
  color: var(--chrome-light);
  font-weight: bold;
  margin: 4px 0 8px;
  text-shadow: 0 0 8px rgba(232, 58, 90, 0.5);
}

.ecrazeus-box .btn {
  display: block;
  text-align: center;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 10px;
  background: linear-gradient(180deg, #100608 0%, #080304 100%);
  border-top: 2px solid var(--chrome-deep);
  font-size: 11px;
  color: var(--muted);
  box-shadow: inset 0 1px 0 rgba(255, 100, 120, 0.08);
}

footer a {
  color: var(--link);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  outline: 2px solid var(--chrome-deep);
  outline-offset: -2px;
}

tbody tr:nth-child(odd) {
  background: linear-gradient(180deg, #1a0c10 0%, #14080c 100%);
}

tbody tr:nth-child(even) {
  background: linear-gradient(180deg, #14080c 0%, #100608 100%);
}

tr th,
tr td {
  padding: 6px 10px;
  border: 1px solid var(--chrome-deep);
  font-size: 12px;
  color: var(--text);
}

h2 {
  font-size: 14px;
  color: var(--chrome-light);
  margin-bottom: 12px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--chrome-mid), transparent) 1;
  padding-bottom: 5px;
  text-shadow: 0 0 10px rgba(232, 58, 90, 0.35);
}

a {
  color: var(--link);
}

a:hover {
  color: var(--link-hover);
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--chrome-deep);
  font-size: 13px;
}

.pagination a {
  color: var(--link);
  font-weight: bold;
  text-decoration: underline;
}

.pagination a:hover {
  color: var(--link-hover);
}

.pagination .page-num {
  color: var(--muted);
  font-size: 12px;
}

/* ===== MOBILE ===== */
@media (max-width: 720px) {
  .page {
    border-left: none;
    border-right: none;
    margin: 0;
    padding: 0 6px;
  }

  .banner-wrap {
    height: 120px;
  }

  .logo-wrap img {
    max-width: 180px;
    max-height: 90px;
  }

  .layout {
    display: flex;
    flex-direction: column;
  }

  .sidebar-right,
  .sidebar-left,
  .main {
    display: block;
    width: 100%;
  }

  .main {
    order: 1;
    border-bottom: 2px solid var(--chrome-deep);
  }

  .sidebar-right {
    order: 2;
    border-left: none;
  }

  .sidebar-left {
    order: 3;
    border-right: none;
  }
}

/* Navigation category separators */
.side-list .nav-sep {
  list-style: none;
  margin: 8px 0 6px;
  padding: 0;
  border: none;
  height: 0;
  border-top: 1px solid var(--chrome-deep);
  border-bottom: 1px solid rgba(255, 140, 160, 0.15);
  pointer-events: none;
}

.side-sublist {
  list-style: revert;
  margin: 2px 0 2px 20px;
  padding: 0;
}

.side-list .nav-sep-label {
  list-style: none;
  margin: 10px 0 4px;
  padding: 0;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
