#tooltip {
  position: fixed;
  z-index: 99999;

  max-width: 200px;
  padding: 8px 10px;

    background: linear-gradient(180deg,#010101 70%, #090B0D 100%);

  border: 1px double rgba(92, 111, 145, 0.35);
  outline: 1px solid rgba(92, 111, 145, 0.25);
  outline-offset: -4px;


  color: #cfd6e6;
  font-size: 12px;
  line-height: 1.5;
  font-family: 'Shippori Mincho B1', serif;
  letter-spacing: 0.3px;

  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);

  transition: opacity 0.18s ease, transform 0.18s ease;
}

#tooltip.show {
  opacity: 1;
  transform: translateY(0);
}


html,
body {
    min-height: 100%;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -999;

    background-image: url("https://i.imgur.com/jdwPYB9.png");
    background-repeat: repeat-x;
    background-position: 0 100%;
    background-size: 800px;

    animation: para 70s linear infinite;
    pointer-events: none;
}


@keyframes para {
    from {
        background-position: 0 100%;
    }
    to {
        background-position: -800px 100%;
    }
}




body {
    margin: 0;
background: linear-gradient(to bottom, #010101 35%, #13171c 70%);  
}

.outer-wrapper {
    width: 845px;
    margin: 10px auto;
    padding: 10px;
}

.wrapper {
    display: flex;
    max-height: 2700px;

    color: #5c6f91;
    position: relative;
    z-index: 2;
}



.main-panel {
      font-family: 'Alice', serif;

    flex: 1;
    padding: 10px;
    box-shadow:

        inset 0 0 3 1px #010101,
        inset 0 0 0 2px #1a1d23;
            order: 1;

    overflow: hidden;
    position: relative;
}

.content {
    height: 100%;
    position: relative;
    overflow: visible;
    padding-right: 6px;
    
}




.header{
    position:relative;
    height:140px;
    width:595px;
    margin-bottom:5px;

    border:4px double #1a1d23;
    box-shadow:
        inset 0 0 0 2px #010101,
        inset 0 0 0 3px #1a1d23;

    overflow:hidden;
}

.header img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}


.entry-date {
    font-size: 10px;
    text-align: right;
    margin-bottom: 12px;
    color: #737c94;
    font-family: 'Eurostile', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}



.bg-float {
    position: fixed;
    inset: 0;
    background-image: url("https://i.imgur.com/zs0wJ0c.png");
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.02;
    pointer-events: none;
    z-index: -1;
    animation: bgScroll 70s linear infinite;
}

@keyframes bgScroll {
    from { background-position: 0 0; }
    to { background-position: 300px -1000px; }
}

p { line-height: 1.6; }

.post-nav {
    text-shadow: 0 0 6px #282b36;   

    margin-top: 1px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
background: linear-gradient(180deg,rgba(1, 1, 1, 1) 29%, rgba(19, 23, 28, 1) 100%);
    color: #cfd6e6;
    border: 1px double #1a1d23;
    box-shadow:
        inset 0 0 0 2px #010101,
        inset 0 0 0 3px #1a1d23;
        padding:10px;
        margin-top:4px;
                width:580px;

}

.post-nav a {
    text-decoration: underline;
    text-decoration-style: dotted;
  color: #5c6f91;
}

.post-nav a:hover {
    font-style: italic;

}

.post-nav .prev {
    opacity: 0.9;
}

.post-nav .return {
}

.post-nav .next {
    opacity: 0.9;
}
.entry-box {
    font-size:12px;
    background: linear-gradient(180deg,#010101 70%, #090B0D 100%);
  color: #5c6f91;
    border: 1px double #1a1d23;
    box-shadow:
        inset 0 0 0 2px #010101,
        inset 0 0 0 3px #1a1d23;
        padding:20px;
        width:560px;
}
.entry-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.entry-title {
    font-size: 18px;
    font-style: italic;
    color: #5c6f91;
    text-shadow: 0 0 6px rgba(140, 170, 255, 0.18);
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
      transition:color .5s ease,
               text-shadow .5s ease;
}

.entry-title:hover{
    color:#cfd6e6;

text-shadow:
    0 0 8px rgba(140,170,255,.4),
    0 0 16px rgba(140,170,255,.3),
    0 0 24px rgba(140,170,255,.2);}

.entry-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 6px;
    background: linear-gradient(to right, transparent, #5c6f91, transparent);
    opacity: 0.6;
}

.sidebar {
  margin-right:10px;
    width: 200px;
    padding: 10px;
    box-shadow:
        inset 0 0 3 1px #010101,
        inset 0 0 0 2px #1a1d23;
    display: flex;
    flex-direction: column;
    gap: 10px;
        order: 2;

}

.calendar {
    background: linear-gradient(180deg,#010101 70%, #090B0D 100%);
    border: 1px double #1a1d23;
    box-shadow:
        inset 0 0 0 2px #010101,
        inset 0 0 0 3px #1a1d23;
    padding: 10px;
    font-size: 11px;
    text-align: center;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'Eurostile', sans-serif;
}

.calendar-header button {
    background: none;
    border: none;
    color: #5c6f91;
    cursor: pointer;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.calendar-day {
    padding: 4px;
    opacity: 0.7;
}

.calendar-day.today {
    color: #cfd6e6;
    text-shadow: 0 0 6px rgba(140,170,255,0.3);
}

.blog-list {
    background: linear-gradient(180deg,#010101 70%, #090B0D 100%);
    border: 1px double #1a1d23;
    box-shadow:
        inset 0 0 0 2px #010101,
        inset 0 0 0 3px #1a1d23;
    padding: 10px;
    font-size: 11px;

    height: 200px;
    overflow-y: auto;
}
.blog-list::-webkit-scrollbar {
    width: 4px;
}

.blog-list::-webkit-scrollbar-track {
    background: #010101;
}

.blog-list::-webkit-scrollbar-thumb {
    background: #1f2630;
}

.blog-list::-webkit-scrollbar-thumb:hover {
    background: #5c6f91;
}
.lastfm-track {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dotted #1a1d23;
}

.lastfm-track:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.lastfm-song {
    color: #5c6f91;
    font-style: italic;
    margin-bottom: 2px;
}

.lastfm-artist {
    opacity: 0.7;
    font-size: 10px;
}

.lastfm-now {
    color: #cfd6e6;
    font-size: 9px;
    letter-spacing: 1px;
    opacity: 0.8;
}


.entry-title a{
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.entry-title a:hover{
    color: #cfd6e6;
    text-shadow:
        0 0 8px rgba(140,170,255,.4),
        0 0 16px rgba(140,170,255,.3),
        0 0 24px rgba(140,170,255,.2);
}

.blog-post a {
    color: #bfc8dc;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(92, 111, 145, .8);

    transition:
        color .25s ease,
        text-decoration-color .25s ease;
}

.blog-post a:hover {
    color: #ffffff;
    text-decoration-color: #cfd6e6;
}

.imagespace {
    border: 4px double;
}

.tooltip-author {
    display: block;
    margin-top: 6px;
font-size:17px;
  font-family: "Tangerine", cursive;
    color: #8fa2c4;
    text-align: right;
    letter-spacing: .5px;
}

.tangerine-regular {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

.tangerine-bold {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}


.tooltip-text {
    border-bottom: 1px dotted #5c6f91;
    color: #bfc8dc;

}