/* =========================
   PWE GLOBAL STYLES
   ========================= */

/* ===== Base ===== */
body, div, td, p {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 8pt;
  color: #bababa;
  line-height: 140%;
}

a:link, a:visited, a:hover, a:active {
  color: #bababa;
  text-decoration: underline;
}

body {
  margin: 0;
  background-color: #222222;
  background-image: url("https://i.imgur.com/qCApPCU.png");
  background-attachment: fixed;
}

/* =========================
   HEADER (image + overlay + ticker)
   ========================= */

.header-wrap {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.header-bg {
  width: 100%;
  display: block;
}

.header-link {
  position: absolute;
  top: 81px;
  right: 60px;
  width: 375px;
  height: 100px;
  z-index: 3;
  display: block;
}

.header-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ticker {
  position: absolute;
  left: 350px;
  right: 0;
  bottom: 1px;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(0,0,0,0);
  z-index: 2;
}

.ticker__track {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: ticker 16s linear infinite;
  color: #ffffff;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 9px;
  letter-spacing: 0.5px;
}

.ticker__item {
  display: inline-block;
  margin-right: 50px;
}

.ticker__date {
  font-weight: bold;
  color: #000;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* =========================
   NAVIGATION
   ========================= */

.nav-container {
  max-width: 950px;
  margin: 0 auto;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 10px;
  background: #111;
}

.nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.nav > li {
  position: relative;
}

.nav > li > a {
  display: block;
  padding: 15px 25px;
  color: #fff;
  text-decoration: none;
  border-right: 1px solid #333;
  transition: background 0.3s ease;
}

.nav > li:last-child > a {
  border-right: none;
}

.nav > li > a:hover {
  background: #eab325;
}

/* Dropdown */
.nav li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  background: #222;
  border-top: 2px solid #eab325;
  z-index: 999;
}

.nav li ul li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #333;
  white-space: nowrap;
}

.nav li ul li a:hover {
  background: #eab325;
}

.nav li:hover ul {
  display: block;
}

/* =========================
   SCROLL BOX (for page content)
   ========================= */

.scroll-box {
  height: 350px;          /* match your 240x350 image area */
  overflow-y: auto;
  padding: 8px;
  box-sizing: border-box;
  text-align: justify;
  color: #bababa;
}

/* Optional: scrollbar styling (Chrome/Edge) */
.scroll-box::-webkit-scrollbar {
  width: 6px;
}

.scroll-box::-webkit-scrollbar-track {
  background: #222;
}

.scroll-box::-webkit-scrollbar-thumb {
  background: #eab325;
  border-radius: 3px;
}
