/* Jesslair Stylesheet */

@font-face {
  font-family: 'Neuropol';
  src: url('fonts/Neuropol.otf') format('opentype');
}

@font-face {
  font-family: 'Outright';
  src: url('fonts/Outright.otf') format('opentype');
}

body {
  font-size: 1em;
  margin: 0;
  padding: 0;
  background-color: #3c3773;          /* fallback */
  background-image: url(images/marble.png);
  color: #000000;
  font-family: 'Share Tech Mono', monospace;
}

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

/* Layout containers */

#Content {
  background-color: transparent;
  width: 90%;
  padding: 0;
  margin-right: 5%;
  margin-left: 5%;
}

#Title {
  word-wrap: break-word;
  color: #ffa0f2;
  background-color: #1b7ac2;
  background-image: url(images/marble.png);
  padding: 30px 0 24px 0;
}

#GlobalTitle {
  width: 100%;
  margin-left: 0%;
  text-align: center;
  font-size: 7rem;
  margin-bottom: 0;
  margin-top: 0;
  font-family: 'Outright', sans-serif;
  text-shadow: 0 0 10px #d144a2, 0 0 30px #d45abe, 0 0 60px #c273ed, 0 0 100px #c273ed, 3px 3px 0px rgba(0,0,0,0.5);
  transform: translateZ(0);
}

#GlobalSubtitle {
  width: 100%;
  margin-left: 0%;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 32px;
  font-style: italic;
  font-family: 'Neuropol', sans-serif;
}

.overflow,
.BoxContent {
  overflow: auto;
}

/* Header */

#Header {
  font-family: 'Share Tech Mono', monospace;
  width: 100%;
  background-color: #1b7ac2;
  background-image: url(images/marble.png);
  color: #ffffff;
}

/* Boxes */

.Box {
  font-family: 'Share Tech Mono', monospace;
  background-color: #c0c0ec;
  color: #000000;
  width: 100%;
}

.BoxContents {
  background-color: #c0c0ec;
  color: #000000;
  width: 100%;
  padding: 16px 10px 10px 10px;
}

.BoxSideBar {
  width: 175px;
  height: 100%;
  background-color: #3c3773;
  color: #ffffff;
}

.BoxSideBar table {
  width: 175px;
  height: 100%;
}

.BoxSideBar table a,
.BoxSideBar table a:visited,
.BoxContents a,
.BoxContents a:visited {
  color: #ffffff !important;
  text-decoration: underline;
}

.BoxSideBar table a:hover,
.BoxContents a:hover {
  color: #ffa0f2 !important;
}

.BoxSideBar table th {
  background-color: #285577;
  color: #ffa0f2;
}

.BoxSideBarContents {
  height: 100%;
  padding: 5px;
}

.BoxTitle {
  text-align: left;
  background-color: #b3b5b4;
  color: #ffffff;
  padding: 5px;
}

.BoxTitle a,
.BoxTitle a:hover,
.BoxTitle a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Entry content */

.entry-content {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.HeaderNavMenu {
  background-color: transparent;
  margin: 0 0 0 5%;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.HeaderNavMenu li {
  display: inline-block;
  margin: 0 2px 0 0;
  padding: 5px 10px;
  color: #ffffff;
  background-color: #3c3773;
}

.HeaderNavMenu li#active {
  background-color: #b3b5b4;
  font-weight: bold;
}

.HeaderNavMenu li a {
  color: #ffffff;
  text-decoration: none;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Comment bars */

.CommentBarOne,
.CommentBarTwo,
.CommentBarScreened {
  width: 100%;
  margin-top: 1em;
  height: 100%;
}

.CommentBarOne {
  background-color: #dddddd;
  color: #000000;
}

.CommentBarTwo {
  background-color: #999999;
  color: #000000;
}

.CommentBarScreened {
  background-color: #f1f1f1;
  color: #000000;
}

/* Sparkle animation */

@keyframes sparkle {
  0%   { text-shadow: 0 0 4px #FFD700, 0 0 10px #FFD700; }
  25%  { text-shadow: 0 0 8px #FFF5A0, 0 0 20px #FFD700, 0 0 35px #FFC200; }
  50%  { text-shadow: 0 0 4px #FFFFFF, 0 0 15px #FFF5A0, 0 0 25px #FFD700; }
  75%  { text-shadow: 0 0 8px #FFD700, 0 0 20px #FFC200, 0 0 35px #FF9900; }
  100% { text-shadow: 0 0 4px #FFD700, 0 0 10px #FFD700; }
}

.blink-love {
  animation: sparkle 2s ease-in-out infinite;
  color: #FFD700;
  transform: translateZ(0);
}

.blink-time {
  animation: sparkle 2.8s ease-in-out infinite;
  color: #FFD700;
  transform: translateZ(0);
}

/* Tooltips */

.tooltip {
  position: relative;
  cursor: help;
}

.tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;

  /* drop below instead of above */
  top: 130%;
  left: 50%;
  transform: translateX(-50%);

  width: 280px;
  background-color: #3c3773;
  color: #ffa0f2;
  font-family: 'Share Tech Mono', monospace;
  font-style: normal;
  font-size: 0.75rem;
  padding: 10px 12px;
  border: 1px solid #ffa0f2;
  text-align: left;
  transition: opacity 0.3s;
  z-index: 100;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  color: #FFD700;
}

/* Artifact panels */

.artifact-panel-hidden {
  background-color: #3c3773;
  border: 1px dashed #3c3773;
  padding: 15px;
  margin-top: 20px;
  color: #000000;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9em;
  display: none;
}

/* Footer */

.footer {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  margin-top: 50px;
  padding-bottom: 20px;
  font-family: '6809 Chargen', monospace;
  letter-spacing: 1px;
}

/* Current Year sidebar widget */

#CurrentYear {
  width: 175px;
  background-color: #3c3773;
  color: #ffffff;
  padding: 5px;
}

#CurrentYear .cy-title {
  display: block;
  background-color: #285577;
  color: #ffa0f2;
  padding: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Share Tech Mono', monospace;
}

#CurrentYear .cy-number {
  font-family: 'Outright', sans-serif;
  font-size: 3.5em;
  color: #ffa0f2;
  text-align: center;
  display: block;
  text-shadow: 0 0 10px #d144a2, 0 0 20px #d45abe;
  line-height: 1;
  margin-bottom: 12px;
}

#CurrentYear .cy-months {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 4px 8px 4px;
}

#CurrentYear .cy-month {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7em;
  padding: 3px 5px;
  color: #b1b4b3; /* inactive months */
}

#CurrentYear .cy-month.has-entries {
  background-color: #524a9c;
  color: #ffffff;
  text-decoration: none;
}

#CurrentYear .cy-month.has-entries a {
  color: #ffffff !important;
  text-decoration: none;
}

#CurrentYear .cy-month.has-entries a:hover {
  color: #ffa0f2 !important;
}

/* Archive entry list */

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

.entry-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 6px 0;
  border-bottom: 1px dotted #3c3773;
}

.entry-list li:last-child {
  border-bottom: none;
}

.entry-title {
  color: #ffffff !important;
  flex: 1;
  text-decoration: underline;
}

.entry-title:hover {
  color: #ffa0f2 !important;
  text-decoration: none;
}

/* Entry comments */

.EntryComments {
}

/* CONTAINER & PHOTO */
.nokia-real-widget {
  position: relative;
  display: inline-block;
  width: 260px;
  user-select: none;
}

.phone-bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(10px 15px 15px rgba(0,0,0,0.6));
  pointer-events: none;
}

/* THE SCREEN */
.working-screen {
  position: absolute;
  z-index: 1;

  top: 24%;
  left: 21%;
  width: 59%;
  height: 22%;

  /* Muted pale gray-green, like a real passive matrix LCD */
  background-color: #c8d4cc;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0, 0, 0, 0.07) 1px, rgba(0, 0, 0, 0.07) 2px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0) 90%);
  filter: brightness(1.05) contrast(1.05);

  box-shadow: 0 0 0 2px #c8d4cc;

  display: flex;
  flex-direction: column;
}

/* SCREEN INNER STYLES */
.working-screen .screen-title {
  background: transparent;
  font-family: 'Silkscreen', 'VT323', monospace;
  font-size: 13.5px;
  font-weight: bold;
  text-align: center;
  padding: 1px 6px;
  margin-top: 6px;
  margin-bottom: 2px;
  color: #000;
  border-top: none;
  border-bottom: none;
}

.working-screen .screen-list {
  list-style: none;
  padding: 0 4px;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Silkscreen', 'VT323', monospace;
  font-size: 13.5px;
  line-height: 1.1;
}

.working-screen .screen-list li {
  padding: 1px 4px;
  color: #000;
  font-weight: bold;
  text-shadow: none;
}

.working-screen .screen-list li.active {
  background: #1a52cc;
  color: #fff;
  font-weight: bold;
  text-shadow: none;
  border-radius: 0;
}

.working-screen .screen-softkey-bar {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  margin-top: auto;
  font-family: 'Silkscreen', 'VT323', monospace;
  font-size: 13.5px;
  color: #000;
  font-weight: bold;
  background: transparent;
  border-top: none;
}

/* THE INVISIBLE HITBOXES */
.hitbox {
  position: absolute;
  z-index: 3;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.01);
}

/* TWEAK THESE % ONLY to cover the physical buttons on your photo */
.d-pad-up { top: 51%; left: 42%; width: 16%; height: 5%; }
.d-pad-down { top: 58%; left: 42%; width: 16%; height: 5%; }
.left-softkey { top: 51%; left: 20%; width: 15%; height: 5%; }