/*
Theme Name: Beybe Babe Cute
Theme URI: https://beybe-babe.com
Author: beybe-babe
Description: Fancy cute pink & white personal journal + drawings theme. Notebook aesthetic, chibi header, custom smileys. Est. 2004 vibes.
Version: 1.2
License: GNU General Public License v2 or later
Text Domain: beybe-babe-cute
*/

/* ========== GOOGLE FONTS (handwritten + clean) ========== */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Pacifico&family=Caveat:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --pink: #ff5ca8;
  --pink-dark: #e03d8a;
  --pink-soft: #ffd0e6;
  --pink-lighter: #fff0f6;
  --pink-border: #ff9ec9;
  --tape: #ff8ec5;
  --black: #1a1a1a;
  --gray: #444444;
  --line: #f0b8d0;
  --paper: #fffdfb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: var(--black);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
}

a:hover {
  color: var(--pink-dark);
}

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

/* ========== TOP BAR ========== */
.top-bar {
  background: linear-gradient(90deg, #ffe0ef, #ffd0e6, #ffe0ef);
  text-align: center;
  padding: 9px 15px;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--pink-dark);
  font-weight: 700;
  border-bottom: 2px solid var(--pink-border);
}

/* ========== HEADER ========== */
.site-header {
  text-align: center;
  padding: 28px 16px 12px;
  background: #fff;
  position: relative;
}

.header-image-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.header-image {
  max-width: 700px;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(255, 92, 168, 0.28);
  border: 4px solid #fff;
  outline: 2px solid var(--pink-soft);
}

.est-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 24px;
  letter-spacing: 0.6px;
  transform: rotate(7deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  border: 2px solid var(--pink);
}

.site-logo {
  font-family: 'Caveat', cursive !important;
  font-size: 4.4rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
  text-shadow: 3px 3px 0 var(--pink-soft);
  line-height: 1.15;
}

.site-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: var(--gray);
  margin-bottom: 18px;
}

.site-tagline span {
  color: var(--pink);
}

/* ========== NAV ========== */
.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 14px 0 22px;
  border-bottom: 3px dashed var(--pink-border);
  margin-bottom: 8px;
}

.main-nav a {
  color: var(--black);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 4px;
  border-bottom: 3px solid transparent;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.main-nav a::before {
  content: "♥ ";
  color: var(--pink);
  font-size: 12px;
  margin-right: 2px;
  display: inline-block;
  transform-origin: center;
  transition: transform 0.25s ease, color 0.2s ease;
}

.main-nav a:hover::before,
.main-nav .current-menu-item a::before,
.main-nav .current_page_item a::before {
  content: "♥ ";
  animation: heart-pop 0.55s ease;
  color: var(--pink-dark);
}

@keyframes heart-pop {
  0%   { transform: scale(1) rotate(0deg); }
  25%  { transform: scale(1.45) rotate(-12deg); }
  50%  { transform: scale(1.2) rotate(10deg); }
  75%  { transform: scale(1.35) rotate(-6deg); }
  100% { transform: scale(1.15) rotate(0deg); }
}

.main-nav a:hover,
.main-nav .current-menu-item a,
.main-nav .current_page_item a {
  color: var(--pink);
  border-bottom-color: var(--pink);
  background: var(--pink-lighter);
}

/* ========== LAYOUT ========== */
.site-content {
  max-width: 1080px;
  margin: 32px auto 50px;
  padding: 0 18px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
}

.main-col {
  min-width: 0;
}

/* ========== NOTEBOOK POST CARD (scrapbook feel) ========== */
.post-card {
  background: var(--paper);
  border: 2.5px solid var(--pink-border);
  border-radius: 20px;
  padding: 32px 28px 26px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 
    0 8px 24px rgba(255, 92, 168, 0.12),
    0 2px 0 rgba(255, 92, 168, 0.08);
  /* thicker notebook lines */
  background-image: repeating-linear-gradient(
    transparent,
    transparent 29px,
    var(--line) 30px
  );
  background-size: 100% 30px;
  line-height: 30px;
}

/* pink washi tape with bigger hearts */
.post-card::before,
.post-card::after {
  content: "♥ ♥";
  position: absolute;
  width: 92px;
  height: 28px;
  background:
    repeating-linear-gradient(90deg, #ff7eb9 0 14px, #ffb3d9 14px 28px);
  color: #fff;
  font-size: 16px;
  letter-spacing: 8px;
  line-height: 28px;
  text-align: center;
  font-weight: 700;
  opacity: 0.96;
  border-radius: 2px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
  overflow: hidden;
}

.post-card::before {
  top: -11px;
  left: 32px;
  transform: rotate(-9deg);
}

.post-card::after {
  top: -11px;
  right: 32px;
  transform: rotate(7deg);
}

.post-meta-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12.5px;
  color: var(--gray);
  letter-spacing: 0.3px;
  font-weight: 600;
}

.new-badge {
  background: var(--black);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 14px;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--pink);
}

.post-title {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.25;
}

.post-title a {
  color: var(--black);
}

.post-title a:hover {
  color: var(--pink);
}

.post-listening {
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 14px;
  font-weight: 500;
}

.post-listening strong {
  color: var(--pink-dark);
}

.post-thumbnail {
  margin: 16px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 3px dashed var(--pink);
  display: inline-block;
  max-width: 100%;
  box-shadow: 0 4px 14px rgba(255, 92, 168, 0.15);
}

.post-thumbnail img {
  border-radius: 13px;
}

.entry-content {
  margin-top: 6px;
  color: var(--black);
}

.entry-content p {
  margin-bottom: 0.95em;
}

.read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  border-bottom: 2px dashed var(--pink);
  padding-bottom: 1px;
}

.read-more:hover {
  color: var(--pink-dark);
  border-bottom-color: var(--pink-dark);
}

/* Character notes */
.character-notes {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--pink-lighter);
  border-radius: 14px;
  border-left: 5px solid var(--pink);
  font-size: 14.5px;
  border: 1.5px solid var(--pink-soft);
}

.character-notes h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--pink-dark);
  margin-bottom: 6px;
  font-weight: 800;
}

/* ========== DRAWING GRID ========== */
.drawing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.drawing-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 2.5px solid var(--pink-border);
  box-shadow: 0 6px 18px rgba(255, 92, 168, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.drawing-card:hover {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: 0 14px 30px rgba(255, 92, 168, 0.25);
  border-color: var(--pink);
}

.drawing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.drawing-card .caption {
  padding: 11px 13px;
  font-size: 13.5px;
  text-align: center;
  color: var(--gray);
  background: var(--pink-lighter);
  font-weight: 600;
}

/* ========== SIDEBAR ========== */
.sidebar {
  margin-top: 0;
  font-size: 14.5px;
}

.sidebar-card,
.sidebar .widget {
  background: #fff;
  border: 2px dashed var(--pink-border);
  border-radius: 16px;
  padding: 16px 16px 14px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(255, 92, 168, 0.08);
}

.sidebar h3,
.sidebar .widget h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.45rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--pink-dark);
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.2;
}

.sidebar p {
  margin: 0 0 8px;
  line-height: 1.45;
}

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

.sidebar li {
  margin: 0 0 6px;
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--pink-soft);
}

.sidebar li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar a {
  color: var(--ink);
  font-weight: 700;
}

.sidebar a:hover {
  color: var(--pink);
}

.sidebar-donate {
  text-align: center;
  background: var(--pink-lighter);
}

.sidebar-donate-btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  margin-top: 4px;
}

.sidebar input[type="search"],
.sidebar input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  border: 2px solid var(--pink-border);
  border-radius: 10px;
  font-size: 14px;
}

.sidebar input[type="submit"],
.sidebar .search-submit {
  margin-top: 8px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 14px;
  font-weight: 700;
  cursor: pointer;
}

/* ========== FOOTER ========== */
.site-footer {
  text-align: center;
  padding: 34px 20px 45px;
  font-size: 13.5px;
  color: var(--gray);
  border-top: 3px dashed var(--pink-border);
  margin-top: 20px;
  font-weight: 500;
}

.site-footer a {
  color: var(--pink);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--pink-dark);
}

.site-footer .heart {
  color: var(--pink);
  font-size: 1.1em;
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 24px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 13.5px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink-dark);
}

/* ========== SINGLE ========== */
.single .post-title {
  font-size: 2.35rem;
}

/* ========== MOBILE IMPROVEMENTS ========== */
@media (max-width: 700px) {
  .site-content {
    padding: 0 14px;
    margin-top: 22px;
  }

  .site-logo {
    font-size: 3.8rem;
  }

  .site-tagline {
    font-size: 1.15rem;
  }

  .header-image {
    border-radius: 16px;
  }

  .est-badge {
    font-size: 10px;
    padding: 4px 9px;
    right: 0;
  }

  .main-nav {
    gap: 6px 14px;
    padding: 10px 0 16px;
  }

  .main-nav a {
    font-size: 13px;
    padding: 3px 2px;
  }

  .post-card {
    padding: 26px 18px 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    line-height: 28px;
    background-size: 100% 28px;
  }

  .post-card::before,
  .post-card::after {
    width: 72px;
    height: 24px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 6px;
  }

  .post-title {
    font-size: 1.7rem;
  }

  .drawing-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
  }

  .drawing-card img {
    height: 160px;
  }

  .top-bar {
    font-size: 10.5px;
    letter-spacing: 1px;
    padding: 8px 10px;
  }
}

@media (max-width: 420px) {
  .site-logo {
    font-size: 3.2rem;
  }

  .post-card {
    padding: 22px 15px 18px;
  }

  .main-nav {
    gap: 5px 10px;
  }
}

/* ========== VISITOR COUNTER (nostalgic) ========== */
.visitor-counter {
  text-align: center;
  margin: 0 auto 18px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.visitor-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: lowercase;
  color: #999;
  margin-bottom: 6px;
}

.visitor-digits {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 8px;
}

.visitor-digits .digit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 22px;
  background: #fffaf3;
  color: #e03d8a;
  font-size: 13px;
  font-weight: 800;
  border-radius: 4px;
  border: 1px solid #f0d9c6;
  box-shadow: none;
  font-family: 'Nunito', system-ui, sans-serif;
}

.visitor-links {
  font-size: 13px;
}

.visitor-links a {
  color: #ff5ca8;
  text-decoration: none;
  font-weight: 700;
}

.visitor-links a:hover {
  color: #e03d8a;
}

.visitor-dot {
  margin: 0 8px;
  color: #ff9ec9;
}

@media (max-width: 500px) {
  .visitor-digits .digit {
    width: 16px;
    height: 20px;
    font-size: 12px;
  }
}

.guestbook-page {
  max-width: 720px;
  margin: 0 auto 40px;
}

.guestbook-title {
  font-size: 2.3rem;
  margin-bottom: 4px;
}

.guestbook-intro {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 16px;
}

.guestbook-blurb {
  margin-bottom: 24px;
}

.guestbook-heading {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: #e03d8a;
  margin-bottom: 14px;
}

.guestbook-empty {
  color: #777;
  margin-bottom: 22px;
  background: #fff0f6;
  border: 1.5px dashed #ff9ec9;
  border-radius: 14px;
  padding: 14px 16px;
}

.guestbook-entries {
  margin-bottom: 30px;
}

.guestbook-entry {
  background: #fff0f6;
  border: 1.5px solid #ffd0e6;
  border-radius: 16px;
  padding: 14px 16px 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(255, 92, 168, 0.08);
}

.guestbook-entry-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.guestbook-author {
  font-weight: 800;
  color: #e03d8a;
}

.guestbook-date {
  font-size: 12px;
  color: #999;
  font-weight: 600;
}

.guestbook-entry-text {
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a;
}

.guestbook-form-wrap {
  background: #fff8fb;
  border: 2px dashed #ff9ec9;
  border-radius: 16px;
  padding: 18px 16px 10px;
}

.guestbook-form-wrap .comment-reply-title {
  display: none;
}

.guestbook-form-wrap #comments {
  box-shadow: none;
  border: none;
  padding: 0;
  margin-top: 6px;
  background: transparent;
}

.guestbook-form-wrap #comments::before,
.guestbook-form-wrap #comments::after {
  display: none;
}

.guestbook-closed {
  padding: 16px;
  background: #fff0f6;
  border: 2px dashed #ff9ec9;
  border-radius: 12px;
}

.guestbook-closed-title {
  margin: 0 0 8px;
  font-weight: 800;
  color: #e03d8a;
}

@media (max-width: 600px) {
  .guestbook-title {
    font-size: 1.8rem;
  }
  .guestbook-form-wrap {
    padding: 14px 12px 8px;
  }
}

img.beybe-smiley,
img.wp-smiley {
  display: inline !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  vertical-align: middle;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* ========== COPYRIGHT PAGE ========== */
.copyright-page {
  max-width: 720px;
  margin: 0 auto 40px;
}

.copyright-title {
  font-size: 2.3rem;
  margin-bottom: 4px;
  color: var(--pink);
}

.copyright-intro {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 18px;
}

.copyright-heading {
  font-family: 'Caveat', cursive;
  font-size: 1.45rem;
  color: #e03d8a;
  margin: 20px 0 8px;
}

.copyright-list {
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
}

.copyright-list li {
  margin-bottom: 8px;
  padding-left: 1.4em;
  position: relative;
}

.copyright-list li::before {
  content: "♥";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-size: 0.95em;
}

.copyright-body p {
  margin-bottom: 12px;
}

/* ========== DONATE ========== */
.donate-box {
  margin-top: 26px;
  padding: 18px 16px;
  background: #fff0f6;
  border: 2px dashed #ff9ec9;
  border-radius: 16px;
  text-align: center;
}

.donate-button {
  display: inline-block;
  background: #ff5ca8;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 2px solid #ff5ca8;
  box-shadow: 0 5px 0 #e03d8a, 0 8px 16px rgba(255, 92, 168, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.donate-button:hover {
  background: #ff79b8;
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 0 #e03d8a, 0 12px 20px rgba(255, 92, 168, 0.28);
}

.donate-button:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 2px 0 #e03d8a;
}

.donate-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.donate-buttons .donate-button {
  margin: 0;
}

.donate-note {
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}

.footer-donate a {
  color: #ff5ca8;
  font-weight: 700;
}

/* Hide guestbook/comment numbering */
.comment-list,
.comment-list ol,
.comment-list ul,
.comment-list .children {
  list-style: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.comment-list li,
.comment-list .comment {
  list-style: none !important;
}

.guestbook-page .comments-title {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: #e03d8a;
}

.est-under-logo {
  margin: 0 0 12px;
}

.est-under-logo a {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  padding: 4px 2px;
}

.est-under-logo a:hover {
  color: #ff5ca8;
  border-bottom-color: #ff5ca8;
}

.est-dot {
  margin: 0 8px;
  color: #ff9ec9;
  font-weight: 700;
}

@media (max-width: 700px) {
  .est-under-logo a {
    font-size: 13px;
  }
}


@media (max-width: 860px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .sidebar {
    margin-top: 8px;
  }
}






/* ========== ABOUT ========== */
.about-wrap {
  overflow: auto;
}

.about-page img.about-avatar,
.image-left {
  float: left;
  margin-right: 15px;
  margin-bottom: 8px;
  display: block !important;
  width: 200px !important;
  height: auto !important;
  object-fit: cover;
  border: 3px solid #111;
  border-radius: 4px;
}

.about-wrap p {
  margin: 0 0 12px;
}



/* ========== MAILING LIST ========== */
.mailing-list {
  background: #fff;
  border: 2px dashed #ff9ec9;
  text-align: center;
}

.mailing-list h3 {
  font-family: 'Caveat', cursive;
  color: #e03d8a;
  font-size: 1.5rem;
}

.mailing-list p {
  color: #444;
}

.mail-form input[type="email"] {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid #ff9ec9;
  border-radius: 16px;
  margin: 8px 0 10px;
  font-size: 14px;
  background: #fffaf3;
  color: #333;
}

.mail-form input[type="email"]:focus {
  outline: none;
  border-color: #ff5ca8;
  background: #fff;
}

.mail-form button {
  display: inline-block;
  background: #ff5ca8;
  color: #fff;
  border: 2px solid #ff5ca8;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 0 #e03d8a;
}

.mail-form button:hover {
  background: #ff79b8;
  transform: translateY(-1px);
}

.mail-thanks {
  color: #e03d8a;
  font-weight: 700;
  font-size: 13px;
}

.contact-form {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: #e03d8a;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px dashed #ff9ec9;
  border-radius: 14px;
  font-size: 14px;
  font-family: inherit;
  background: #fffaf3;
  color: #333;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-style: solid;
  border-color: #ff5ca8;
  background: #fff;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form button {
  justify-self: start;
  background: #ff5ca8;
  color: #fff;
  border: 2px solid #ff5ca8;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 0 #e03d8a;
}
.contact-form button:hover {
  background: #ff79b8;
}


/* ========== SIDEBAR PIXELS ========== */
.pixel-box {
  text-align: center;
}

.pixel-caption {
  font-size: 13px;
  color: #888;
  margin: 0 0 8px;
}

.pixel-gif {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  width: auto !important;
  height: auto !important;
  max-width: none;
  display: inline-block;
  margin: 0 auto;
}


.pixel-shelf {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 6px 4px;
}

.pixel-item {
  width: auto;
  text-align: center;
  line-height: 1;
}

.pixel-item span {
  display: block;
}

.pixel-box .pixel-gif {
  margin: 0;
  vertical-align: bottom;
}


/* ========== VECTOR PAGE ========== */
.vector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 100px);
  justify-content: start;
  gap: 16px;
  margin: 10px 0 8px;
}

.vector-card {
  display: block;
  background: #fff;
  border: 2.5px solid var(--pink-border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 16px rgba(255, 92, 168, 0.12);
}

.vector-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  border-color: var(--pink);
}

.vector-frame {
  display: block;
  background: #fff7fb;
  width: 100px;
  height: 100px;
}

.vector-frame img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}

.vector-card .caption {
  display: none;
}

@media (max-width: 500px) {
  .vector-grid {
    grid-template-columns: repeat(auto-fill, 100px);
    justify-content: center;
    gap: 10px;
  }
}


/* ========== ONLINE ========== */
.online-box {
  text-align: center;
}

.online-number {
  font-family: 'Caveat', cursive;
  font-size: 2.4rem;
  color: #ff5ca8;
  line-height: 1;
  margin: 4px 0 2px;
  font-weight: 700;
}

.online-label {
  font-size: 12px;
  color: #888;
  margin: 0;
}



/* ========== MEET THE CUTIES ========== */
.cuties-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.cutie-card {
  background: #fff7fb;
  border: 2px dashed #ff9ec9;
  border-radius: 16px;
  padding: 12px 12px 14px;
  text-align: center;
}

.cutie-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  image-rendering: auto;
  margin: 0 auto 10px;
  display: block;
  border-radius: 16px;
  padding: 0;
  background: #fff0f6;
  border: 2px solid #ffc1dc;
}

.cutie-card h3 {
  font-family: 'Caveat', cursive;
  color: #e03d8a;
  font-size: 1.7rem;
  margin: 4px 0 6px;
}

.cutie-tag {
  color: #ff9ec9 !important;
  font-weight: 700;
  font-size: 13px !important;
  margin-bottom: 8px !important;
}
.cutie-card p {
  color: #444;
  font-size: 14px;
  margin: 0;
  text-align: left;
}

@media (max-width: 600px) {
  .cuties-list {
    grid-template-columns: 1fr;
  }
}

.online-girl {
  margin: 6px auto 4px;
  display: block;
}

.online-status {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  margin: 4px 0 6px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.status-you { background: #7dcc7d; box-shadow: 0 0 0 3px rgba(125,204,125,.25); }
.status-few { background: #ff5ca8; box-shadow: 0 0 0 3px rgba(255,92,168,.25); }
.status-busy { background: #ffb347; box-shadow: 0 0 0 3px rgba(255,179,71,.25); }


/* ========== CUTIE ANIMATIONS ========== */
@keyframes cutie-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes cutie-wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(3deg); }
}

.cutie-card:nth-child(1) .cutie-img { animation: cutie-float 3s ease-in-out infinite; }
.cutie-card:nth-child(2) .cutie-img { animation: cutie-wiggle 2.6s ease-in-out infinite; }
.cutie-card:nth-child(3) .cutie-img { animation: cutie-float 3.4s ease-in-out infinite; animation-delay: .4s; }
.cutie-card:nth-child(4) .cutie-img { animation: cutie-wiggle 3s ease-in-out infinite; animation-delay: .2s; }

.cutie-card:hover .cutie-img {
  animation: none;
  transform: scale(1.08) rotate(-3deg);
}

.cutie-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.cutie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(255, 92, 168, 0.2);
}


.drawings-back {
  margin: 8px 0 14px;
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}
.drawings-back a {
  color: #e03d8a;
  text-decoration: none;
}
.drawings-back a:hover {
  color: #ff5ca8;
}
.drawings-back .draw-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.drawings-back .draw-nav-off {
  color: #ffc1dc;
}

/* ========== DRAWINGS INDEX ========== */
.drawings-list {
  list-style: none !important;
  margin: 8px 0 0;
  padding: 0;
}
.drawings-list li {
  list-style: none !important;
}
.drawings-list li::marker,
.drawings-list li::before {
  content: none !important;
}

.drawings-list li {
  margin: 0 0 10px;
}

.drawings-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff7fb;
  border: 2px dashed #ff9ec9;
  border-radius: 16px;
  text-decoration: none;
  color: #333;
}

.drawings-list a:hover {
  background: #ffe6f3;
  border-color: #ff5ca8;
  color: #e03d8a;
}

.draw-heart {
  color: #ff5ca8;
  font-size: 18px;
  line-height: 1;
}

.draw-name {
  font-weight: 800;
}

.draw-note {
  color: #888;
  font-size: 13px;
  margin-left: auto;
}


.click-hint {
  text-align: center;
  color: #e03d8a;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
}


#beybe-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(40, 10, 24, 0.82);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#beybe-lightbox.is-open { display: flex; }
#beybe-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border: 4px solid #ffc1dc;
  border-radius: 16px;
  background: #fff;
}
#beybe-lightbox .lb-close,
#beybe-lightbox .lb-prev,
#beybe-lightbox .lb-next {
  position: absolute;
  background: #ff5ca8;
  color: #fff;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
#beybe-lightbox .lb-close { top: 12px; right: 16px; }
#beybe-lightbox .lb-prev { left: 12px; top: 50%; transform: translateY(-50%); font-size: 28px; }
#beybe-lightbox .lb-next { right: 12px; top: 50%; transform: translateY(-50%); font-size: 28px; }
#beybe-lightbox .lb-count {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 13px;
  margin: 0;
}



.smiley-grid,
.pixel-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.smiley-frame,
.pixel-page-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fff7fb;
  border: 2px dashed #ff9ec9;
  border-radius: 12px;
}
.smiley-frame img,
.pixel-page-frame img {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  width: auto;
  height: auto;
  max-width: 40px;
  max-height: 40px;
}
.pixel-page-frame {
  width: 72px;
  height: 72px;
}
.pixel-page-frame img {
  max-width: 56px;
  max-height: 56px;
}
.flag-frame {
  width: 56px;
  height: 56px;
}
.flag-frame img {
  max-width: 49px;
  max-height: 27px;
  width: auto;
  height: auto;
}
.pixel-group-title {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: #c2185b;
  margin: 22px 0 6px;
}
.atm-frame {
  width: 96px;
  height: 72px;
}
.atm-frame img {
  max-width: 80px;
  max-height: 48px;
}

.fan-grid {
  align-items: flex-start;
}
.fan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 140px;
  text-decoration: none;
}
.fan-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: #fff7fb;
  border: 2px dashed #ff9ec9;
  border-radius: 12px;
}
.fan-frame img {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  width: auto;
  height: auto;
  max-width: 72px;
  max-height: 72px;
}
.fan-tall {
  width: 120px;
  height: 180px;
}
.fan-tall img {
  max-width: 110px;
  max-height: 168px;
}
.fan-cap {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.3;
  color: #7a3a55;
  text-align: center;
}

.fan-legal {
  margin-top: 28px;
  padding: 14px 16px;
  border: 2px dashed #ff9ec9;
  border-radius: 16px;
  background: #fff7fb;
}
.fan-legal p {
  margin: 0 0 8px;
  color: #4a2a38;
  font-size: 15px;
}
.fan-legal p:last-child { margin-bottom: 0; }

.contact-thanks {
  margin: 16px 0 8px;
  padding: 18px 16px;
  border: 2px dashed #ff9ec9;
  border-radius: 16px;
  background: #fff7fb;
  text-align: center;
}
.contact-thanks-big {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  color: #e03d8a;
  margin: 0 0 8px;
}
.contact-thanks p { margin: 0 0 8px; color: #4a2a38; }

.blinkie-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 8px 12px;
  margin-top: 8px;
}
a.vector-card.blinkie-card {
  display: inline-flex;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}
a.vector-card.blinkie-card:hover {
  transform: none;
}
.blinkie-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 166px;
  height: 36px;
  background: #fff7fb;
  border: 2px dashed #ff9ec9;
  border-radius: 10px;
}
.blinkie-frame img {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  width: 150px !important;
  height: 20px !important;
  max-width: none;
}

.banner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
a.banner-card {
  display: inline-flex !important;
  width: auto !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.banner-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 52px;
  padding: 6px 8px;
  background: #fff7fb;
  border: 2px dashed #ff9ec9;
  border-radius: 10px;
}
.banner-frame img {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  height: 35px;
  width: auto;
  max-width: none;
}

.horoscope-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
a.horoscope-card {
  display: inline-flex !important;
  width: auto !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.horoscope-frame {
  display: block;
  width: 136px;
  height: 227px;
  background: #fff7fb;
  border: 2px dashed #ff9ec9;
  border-radius: 12px;
  overflow: hidden;
}
.horoscope-frame img {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  width: 136px;
  height: 227px;
}
.banner-frame img {
  height: auto;
  max-height: 84px;
}

.cutie-nav {
  font-size: 14px;
  margin: 8px 0 16px;
  color: #4a2a38;
}
.cutie-nav a { color: #e03d8a; }
.cutie-nav a:hover { color: #ff5ca8; }
.cutie-open { margin-top: 8px; }
.cutie-open a { color: #e03d8a; font-weight: 700; }
.cutie-poses {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 20px;
}
.cutie-pose {
  display: block;
  width: 160px;
  height: 160px;
  border: 2px dashed #ff9ec9;
  border-radius: 16px;
  background: #fff7fb;
  overflow: hidden;
}
.cutie-pose img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cutie-card h3 a {
  color: inherit;
  text-decoration: none;
}
.cutie-card h3 a:hover { color: #e03d8a; }

.cutie-gang {
  display: block;
  margin: 8px 0 10px;
  border: 2px dashed #ff9ec9;
  border-radius: 16px;
  overflow: hidden;
  background: #fff7fb;
}
.cutie-gang img {
  display: block;
  width: 100%;
  height: auto;
}

.mood-box { text-align: center; }
.mood-gif {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  margin: 6px auto;
  display: block;
}
.mood-text {
  font-family: "Caveat", cursive;
  font-size: 1.25rem;
  color: #4a2a38;
  margin: 6px 0 4px;
}
.mood-hint {
  font-size: 11px;
  color: #bb8899;
  margin: 0;
}
.gb-prompt {
  margin: 16px 0;
  padding: 14px 16px;
  background: #fff0f6;
  border: 2px dashed #ff9ec9;
  border-radius: 14px;
}
.gb-prompt-label {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e03d8a;
  margin: 0 0 4px;
}
.gb-prompt-q {
  font-family: "Caveat", cursive;
  font-size: 1.5rem;
  color: #3a2230;
  margin: 0 0 6px;
}
.gb-prompt-note {
  font-size: 13px;
  color: #7a5566;
  margin: 0;
}

.post-card.sticky {
  border-color: #ff5ca8;
  box-shadow: 0 6px 0 #ffd0e4;
}
.pin-badge {
  background: #ff5ca8 !important;
}

.cutie-gang-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 8px 0 10px;
}
@media (min-width: 700px) {
  .cutie-gang-row {
    grid-template-columns: 1fr 1fr;
  }
  .cutie-gang-row .cutie-gang:first-child {
    grid-column: 1 / -1;
  }
}
