/* -----------------------------
   Base knobs
------------------------------ */
:root{
  --page-width: 900px;
  --gap: 30px;
  --pad: 10px;

  /* lace gif controls */
  --lace-width: 40px;
  --lace-slice: 34;
  --radius: 16px;

  /* scroll box default height */
  --updates-height: 10em;

  /* right-column heart divider size */
  --right-heart-height: 14px;   /* 12–18px */
  --right-heart-tile: 160px;    /* 120–220px */
}

/* -----------------------------
   Avatar (spinning circle)
------------------------------ */
.avatar{
  width:80px;
  height:80px;
  border-radius:50%;
  object-fit:cover;
  border:3px dotted #fff;
  box-shadow:0 0 6px rgba(0,0,0,.6), 0 0 10px rgba(0,0,0,.35);
  animation: spin 6s linear infinite;
}
@keyframes spin{
  from{ transform: rotate(0deg); }
  to  { transform: rotate(360deg); }
}

/* -----------------------------
   Page layout
------------------------------ */
body{
  margin:0;
  background:#111 url("background_.jpg") center/cover no-repeat;
  color:#eee;
  font-family: Verdana, sans-serif;

  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.container{
  width:var(--page-width);
  margin:20px auto;
  display:grid;
  gap:var(--gap);
}

/* two independent columns */
.columns{
  display:grid;
  grid-template-columns: 3.5fr 6.5fr; /* 35% / 65% */
  gap: var(--gap);
  align-items:start;
}

.stack{
  display:flex;
  flex-direction:column;
  gap:var(--gap);
}

/* -----------------------------
   Lace box + glow
------------------------------ */
.box{
  background:#000;
  padding:var(--pad);

  border: var(--lace-width) solid transparent;
  border-radius: var(--radius);
  border-image-source: url("https://fluorescent-lights.neocities.org/frill-border.gif");
  border-image-slice: var(--lace-slice) fill;
  border-image-width: var(--lace-width);
  border-image-outset: 0;
  border-image-repeat: round;
  background-clip: padding-box;

  box-shadow:
    0 0 8px rgba(0,0,0,.7),
    0 0 12px rgba(255,170,190,.45),
    0 0 22px rgba(255,170,190,.35);
}

/* headings + default heart divider */
.box h2{
  margin:0 0 4px 0;
  font-size:10px;
  text-align:center;
  font-weight:bold;
}
.box h2::after{
  content:"";
  display:block;
  width:100%;
  height:18px;
  margin:4px auto 6px;
  background:url("https://foollovers.com/mat/line02/ib02-heart-line.gif") center no-repeat;
  background-size: contain; /* full width single line (default) */
}

/* hide hearts where needed */
.full-header h2::after,
.footer h2::after,
.no-hearts h2::after{
  display:none;
}

/* -----------------------------
   Header side profile card
------------------------------ */
.header-side h2{
  font-size:12px;
  margin:0;
}
.header-side .profile{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:nowrap;
}
.header-side .profile-text{
  font-size:11px;
  line-height:1.6;
  text-align:left;
  max-width:140px;
}

/* -----------------------------
   Full-width header image
------------------------------ */
.full-header img{
  max-width:100%;
  height:auto;
  display:block;
  margin:0 auto;
  border-radius:8px;
}

/* -----------------------------
   Responsive YouTube embed
------------------------------ */
.video-container{
  position:relative;
  padding-bottom:56.25%; /* 16:9 */
  height:0;
  overflow:hidden;
  max-width:100%;
  background:#000;
  border-radius:8px;
}
.video-container iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* -----------------------------
   Chat iframe
------------------------------ */
.chat-frame{
  width:100%;
  min-height:480px;
  border:0;
  display:block;
  background:transparent;
}

/* -----------------------------
   Scrollable “Recent Updates”
------------------------------ */
.scroll-box{
  overflow-y:auto;
  overflow-x:hidden;
  height: var(--updates-height);
  padding:1rem;

  /* hide scrollbars */
  scrollbar-width:none;          /* Firefox */
  -ms-overflow-style:none;       /* old Edge/IE */
}
.scroll-box::-webkit-scrollbar{
  width:0;
  height:0;
  background:transparent;
}
.scroll-box::-webkit-scrollbar-thumb{
  background:transparent;
}

/* -----------------------------
   Links 
------------------------------ */
.links-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;   /* two columns */
  gap:8px 14px;
  margin-top:6px;
}
.links-grid a{
  display:flex;                    /* icon + text */
  align-items:center;
  justify-content:center;
  gap:6px;
  font-size:11px;
  color:pink;
  text-decoration:underline;
  padding:4px 6px;
  border-radius:6px;
  background: rgba(255,255,255,0.04);
  border:1px dashed rgba(255,192,203,0.35);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.links-grid a img{
  width:14px;
  height:14px;
  object-fit:contain;
}
.links-grid a:hover{
  background: rgba(255,192,203,0.12);
  box-shadow: 0 0 8px rgba(255,170,190,.35);
  transform: translateY(-1px);
}

/* -----------------------------
   Smaller repeating hearts on RIGHT column ONLY
------------------------------ */
.col-right .box h2::after{
  height: var(--right-heart-height);
  margin: 4px auto 6px;
  background-image: url("https://foollovers.com/mat/line02/ib02-heart-line.gif");
  background-repeat: repeat-x;
  background-position: center;
  background-size: var(--right-heart-tile) var(--right-heart-height);
}

/* -----------------------------
   Responsive
------------------------------ */
@media (max-width:960px){
  :root{
    --page-width: 94vw;
    --lace-width: 26px;
    --lace-slice: 26;
  }
  .columns{ grid-template-columns:1fr; }
}
/* make right-column dividers less tall and keep proportions */
:root{
  --right-heart-height: 6px;   /* try 8–12px */
}

/* override the size so the image scales by height only (width auto) */
.col-right .box h2::after{
  height: var(--right-heart-height);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto var(--right-heart-height);  /* ← key change */
}
#glenplayer02 {
  position: relative;
  top: 3px;
  left: 4px;
  display: flex;           /* keep items side-by-side */
  align-items: center;     /* vertically align them */
  gap: 8px;                /* space between button and text */
  z-index: 99;
  text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  color: #fff;
}

.music-controls {
  display: flex;           /* keep play/pause inline */
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
} 
