::-webkit-scrollbar-thumb {
background-color: #FFC55A;  
border-radius: 0px;
}
  
::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}

:root {
  --ink:        #1a0e05;
  --leather:    #8B5E3C;
  --rust:       #9e3a1e;
  --gold:       #b8841f;
  --gold-lt:    #d4a84b;
  --parchment:  #f0e2c0;
  --parch-dark: #ddd0a8;
  --sand:       #c9b48a;
  --dark:       #2A1A0E;
  --glow-amber: #ffcc55;
}

* { box-sizing: border-box; }
* {
  cursor: url("https://thegreatpretender02.neocities.org/imgs/arrow.png"), auto;
  }


body {
  font-family: 'Special Elite', monospace;
  font-size: 14px;
  font-weight: bold;
  color: var(--ink);
  background: #060308;
  margin: 16px auto;
  width: 1210px;
}

#chattable {
    width: 650px;
    height: 300px;
    border: none;
}

/* ══════════════════════════════════
   BACKGROUND:
══════════════════════════════════ */
.bg-theme {
  position: fixed;
  top: 0;
  left: 0;
  width: 1000vw;
  height: 1000vh;
  z-index: -99;
  background-size: fill;
  background: url("https://64.media.tumblr.com/360317781eda520407521e8f9642caa3/tumblr_oomoxfXcS81vl8japo2_1280.pnj");
}

/* ══════════════════════════════════
   PANEL BASE:
══════════════════════════════════ */
article, section, footer, header, .panel {
  background-color: var(--parchment);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(139,94,60,0.07) 22px, rgba(139,94,60,0.07) 23px),
    repeating-linear-gradient(90deg, transparent, transparent 22px, rgba(139,94,60,0.04) 22px, rgba(139,94,60,0.04) 23px);
  border: 5px double var(--leather);
  outline: 2px solid var(--gold);
  outline-offset: -9px;
  border-radius: 16px;
  margin: 10px;
  padding: 14px;
  position: relative;
  box-shadow: 0 0 10px #ffdab2;
}

/* corner ornaments on every panel */
article::before, section::before, header::before, footer::before,
article::after,  section::after,  header::after,  footer::after {
  font-size: 10px; color: var(--gold); opacity: 0.65; position: absolute; line-height: 1;
}
article::before, section::before, header::before, footer::before { content:'✦'; top:6px; left:10px; }
article::after,  section::after,  header::after,  footer::after  { content:'✦'; top:6px; right:10px; }

/* ══════════════════════════════════
   FLOATING PAL
══════════════════════════════════ */
#floating-pal {
  position: fixed;
  bottom: 0; left: 66%;
  transform: translateX(-50%);
  z-index: 5;
}

/* ══════════════════════════════════
   HEADER / MASTHEAD
══════════════════════════════════ */
header {
  text-align: center;
  padding: 16px 20px 12px;
}

.masthead-eyebrow {
  font-family: 'Rye', serif;
  font-size: 15px;
  letter-spacing: 5px;
  color: var(--leather);
  margin-bottom: 4px;
}

.masthead-rule {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), var(--rust), var(--gold), transparent);
  margin: 6px auto;
  width: 80%;
  border-radius: 1px;
}

.glow-header {
  font-family: 'Rye', serif;
  font-weight: 400;
  font-size: 58px;
  color: var(--rust);
  line-height: 1;
  letter-spacing: 3px;
}

.masthead-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--leather);
  letter-spacing: 2px;
  margin-top: 4px;
}

.masthead-meta {
  font-size: 15px;
  color: var(--leather);
  letter-spacing: 1px;
  margin-top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.masthead-meta .pipe { opacity: 0.5; }

/* ══════════════════════════════════
   SECTION HEADINGS
══════════════════════════════════ */
.panel-title {
  font-family: 'Rye', serif;
  font-size: 15px;
  color: var(--rust);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px dashed var(--sand);
  padding-bottom: 5px;
  margin-bottom: 8px;
}

/* ══════════════════════════════════
   NAV LINK BUTTONS
══════════════════════════════════ */
.linkbutton {
    display: block;
    padding: 8px 10px;
    margin: 5px 0;
    background-color: var(--leather);
    border: 2px solid var(--dark);
    text-align: center;
    text-decoration: none;
    color: var(--ink);
    font-family: 'Rye', serif;
    font-size: ;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
}
.linkbutton:hover {
  background-color: var(--rust);
  color: var(--parchment);
  box-shadow: 2px 2px 0 rgba(20,8,0,0.5), 0 0 10px rgba(94,207,207,0.2);
}

.button-overflow { overflow-y: auto; height: ; }
.awesome-peeps { overflow-y: auto; height: 205px; }
.fanlist { overflow-y: auto; height: 100px; }
.banners {overflow-y: auto; height: 250px;}
.updates { overflow-y: auto; height: 140px; font-family: 'Special Elite', monospace; font-size: ; line-height: 1.6; color: var(--ink); }
.updates hr { border: none; border-top: 1px dashed var(--sand); margin: 5px 0; }
.link-me {}

/* ══════════════════════════════════
   IFRAMES
══════════════════════════════════ */
.iframe-default {
  width: 100%;
  height: 385px;
  border: 3px solid var(--leather);
  background-color: var(--parch-dark);
}
.iframe-row  { display: flex; gap: 8px; }
.iframe-thin {
  height: 385px;
  border: 3px solid var(--leather);
  background-color: var(--parch-dark);
}

/* ══════════════════════════════════
   LAYOUT
══════════════════════════════════ */
.container { display: flex; align-items: flex-start; }
aside { width: 250px; flex-shrink: 0; }
main  { flex: 1; min-width: 0; }

/* ══════════════════════════════════
   SURPRISE IMAGES
══════════════════════════════════ */
#surprise-pet   { transform: translateX(22%) translateY(20%); }
#surprise-think { transform: translateX(21%) translateY(-5%); }

/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee-container { width:100%; overflow:hidden; }
.marquee-content   { display:inline-block; white-space:nowrap; animation:slide-left 15s linear infinite; }
.marquee-content:hover { animation-play-state: paused; }
.marquee-content img:hover { transform: scale(1.2); z-index:100; position:relative; }
@keyframes slide-left {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ══════════════════════════════════
   POLL
══════════════════════════════════ */
.poll-wrap {
  font-family: 'Special Elite', monospace;
  font-size: ;
  color: var(--ink);
}
.poll-wrap strong { font-family: 'Rye', serif; font-size: ; letter-spacing: 1px; color: var(--rust); }
.poll-wrap input[type="submit"] {
  background: var(--leather);
  color: var(--parchment);
  border: 2px solid var(--dark);
  font-family: 'Rye', serif;
  font-size: ;
  padding: 3px 8px;
  cursor: pointer;
  letter-spacing: 1px;
}
.poll-wrap input[type="submit"]:hover { background: var(--rust); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  text-align: center;
  font-size: 15px;
  color: var(--leather);
  padding: 12px 20px;
}
footer a { color: var(--rust); }

/* guestbook iframe positioning */
#guestbook {
  width: 52%;
  transform: translateX(37%) translateY(-13%);
}

/* ══════════════════════════════════
   MUSIC
══════════════════════════════════ */
.box{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--box-radius);
  background: var(--panel);
}

.box-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--panel-header);
}

.box-body{
  padding: 9px;
} 

.music-widget{
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
}

.music-cd{
  display: block;
  width: 32px;
  height: 32px;
}

.music-cd img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-info{
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.music-song{
  line-height: 1;
  color: var(--ink);
}


.music-link{
  display: block;
  margin-top: 0;
  padding-top: 4px;
  border-top: 1px dashed #dac8cd;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: lowercase;
  color: var(--ink);
}

.music-link:hover{
  padding-left: 3px;
  color: #6f5b5f;
}