/* Dropdown */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 160px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #334155;
}

.dropdown-menu li a:hover {
    background: #f1f5f9;
}

/* show dropdown on hover */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Celebratory Calendar Hero */
.calendar-hero {
    text-align: center;
    padding: 20px 20px 80px;
    position: relative;
    background: linear-gradient(135deg, #4ab8fe, #fda085);
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
  }

  .calendar-hero h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
  }

  .calendar-hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }

  .hero-buttons a {
    display: inline-block;
    margin: 0 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .calendar-btn {
    background: #fff;
    color: #1e3a8a;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }

  .calendar-btn:hover {
    transform: translateY(-3px);
    opacity: 0.95;
  }

  .survey-btn {
    background: #ffd700;
    color: #1e3a8a;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }

  .survey-btn:hover {
    transform: translateY(-3px);
    opacity: 0.95;
  }

  .confetti span {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation-name: confetti-fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  @keyframes confetti-fall {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
  }

/* ===============================
   FAIRVERSE – PASTEL GLASS THEME
   =============================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family:'Inter', sans-serif;
  background: linear-gradient(180deg,#f7f9fc 0%,#eef2f7 100%);
  color:#1e293b;
  line-height:1.6;
  scroll-behavior:smooth;
}

/* --- Container --- */
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* ===============================
   FairVerse NAV
   =============================== */
.fairverse-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

/* --- Logo --- */
.nav-logo img {
  height: 40px;
  transition: transform 0.25s ease;
}
.nav-logo img:hover {
  transform: scale(1.05);
}

/* --- Menu --- */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  position: relative;
}
.nav-menu li {
  position: relative;
}
.nav-menu a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* --- Animated underline --- */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #4ab8fe, #fda085);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.nav-menu a:hover {
  color: #2563eb;
}

/* --- Mobile toggle --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #1e293b;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* --- Mobile menu --- */
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  overflow: hidden;
  animation: dropFade 0.35s ease forwards;
}
.mobile-nav a {
  width: 100%;
  padding: 14px 0;
  text-align: center;
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  transition: background 0.25s ease;
}
.mobile-nav a:hover {
  background: rgba(74,184,254,0.15);
}

/* --- Show on mobile --- */
@media (max-width: 850px) {
  .nav-menu {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-nav.active {
    display: flex;
  }
}

@keyframes dropFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* --- Banner --- */
.banner {
  position: relative;
  width: 100%;
  height: 120px;
  background: url('../assets/banner.png') center/cover no-repeat;
  border-radius: 16px;
  margin: 25px 0 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner::after {
  content:'';
  position:absolute;
  inset:0;
  background: rgba(255, 220, 180, 0.25); /* warm pastel sunlight tint */
  backdrop-filter: blur(6px);
}

.banner img {
  position:relative;
  z-index:2;
  max-width:140px;
  height:auto;
  display:block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

/* --- Layout --- */
.split-layout {
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:flex-start;
  margin-bottom:60px;
}

.news-section { flex:1.2; min-width:400px; }
.chat-section { flex:0.8; min-width:360px; }

/* ===============================
   GLASS PANELS (Pastel Edition)
   =============================== */
/* --- Deep, Realistic Glass Shadows --- */
.glass-panel {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(248, 249, 255, 0.18) 50%,
    rgba(255, 240, 245, 0.16) 100%
  );
  backdrop-filter: blur(25px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 18px 40px rgba(0, 0, 40, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate; /* ensures shadow appears correctly */
  z-index: 1;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.1) 60%
  );
  pointer-events: none;
  z-index: 0;
}

.glass-panel:hover {
  transform: translateY(-6px);
  box-shadow:
    0 25px 60px rgba(0, 0, 40, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.18);
}

/* ===============================
   NEWS SECTION
   =============================== */
.news-card {
  composes: glass-panel;
  margin-bottom: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(255, 160, 120, 0.05);
}

.news-image img {
  width:100%;
  height:180px;
  object-fit:cover;
  border-bottom:1px solid rgba(255,255,255,0.35);
  border-radius: 14px 14px 0 0;
}

.news-content {
  padding:20px 25px;
}

.news-title {
  font-size:1.25rem;
  font-weight:700;
  margin-bottom:10px;
  color:#1e3a8a;
}

.news-text {
  font-size:0.95rem;
  color:#334155;
  margin-bottom:20px;
}

.news-button {
  display:inline-block;
  background:linear-gradient(135deg,#4ab8fe,#fda085);
  border:none;
  color:white;
  padding:10px 20px;
  border-radius:10px;
  font-weight:600;
  transition:all .25s ease;
}

.news-button:hover { opacity:0.9; transform:translateY(-2px); }

/* ===============================
   CHAT SECTION
   =============================== */
.chat-section {
  composes: glass-panel;
  padding:25px;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(255, 160, 120, 0.05);
}

.chat-box {
  background: rgba(255,255,255,0.25);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.4);
  padding:15px;
  height:380px;
  overflow-y:auto;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.25);
}

.message {
  background: rgba(255,255,255,0.45);
  border-radius:10px;
  padding:10px 14px;
  margin-bottom:12px;
  font-size:0.95rem;
  color:#111827;
  box-shadow:0 2px 4px rgba(0,0,0,0.04);
}

.message.self {
  background: rgba(191,219,254,0.6);
  margin-left:auto;
}

.message.system {
  background: rgba(240,249,255,0.3);
  color: #1e40af;
  text-align:center;
  font-style:italic;
}

.chat-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  width: 100%;
  box-sizing: border-box;
}

.chat-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.3);
  color: #111827;
  min-width: 0; /* ✅ prevents input from stretching past parent */
}

.chat-form button {
  flex-shrink: 0;
  background: linear-gradient(135deg, #4ab8fe, #fda085);
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.chat-form button:hover {
  transform:translateY(-2px);
  opacity:0.9;
}

.chat-hint {
  font-size:0.8rem;
  color:#475569;
  text-align:center;
  margin-top:8px;
}

/* --- Footer --- */
footer {
  background:rgba(255,255,255,0.5);
  backdrop-filter:blur(8px);
  border-top:1px solid rgba(255,255,255,0.4);
  text-align:center;
  padding:30px;
  color:#475569;
  border-radius:12px 12px 0 0;
  font-size:0.9rem;
}

/* --- Responsive --- */
@media (max-width:900px){
  .split-layout{flex-direction:column;}
}


/* ===============================
   SUPPORT
   =============================== */

   .support-bar-btn {
  background: linear-gradient(135deg, #4ab8fe, #fda085);
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(77, 157, 255, 0.25);
}

.support-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(77, 157, 255, 0.35);
  opacity: 0.95;
}

.support-bar-btn {
  background: linear-gradient(135deg, #0084FF, #0044FF);
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(77, 157, 255, 0.25);
}

.support-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(77, 157, 255, 0.35);
  opacity: 0.95;
}


/* ===============================
   JOIN COMMUNITY THIN BAR
   =============================== */
.join-bar {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  padding: 14px 26px;
  margin: 30px auto 20px;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.join-bar:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.join-bar p {
  font-size: 1rem;
  color: #1e3a8a;
  font-weight: 500;
  margin: 0;
}

.join-bar-btn {
  background: linear-gradient(135deg, #4ab8fe, #fda085);
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(77, 157, 255, 0.25);
}

.join-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(77, 157, 255, 0.35);
  opacity: 0.95;
}

.join-bar-btn {
  background: linear-gradient(135deg, #4ab8fe, #fda085);
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(77, 157, 255, 0.25);
}

.join-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(77, 157, 255, 0.35);
  opacity: 0.95;
}

.yt-bar-btn {
  background: linear-gradient(135deg, #FF0000, #570000);
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(77, 157, 255, 0.25);
}

.yt-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(77, 157, 255, 0.35);
  opacity: 0.95;
}

.fb-bar-btn {
  background: linear-gradient(135deg, #0084FF, #0044FF);
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(77, 157, 255, 0.25);
}

.fb-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(77, 157, 255, 0.35);
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 700px) {
  .join-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ===============================
   SUPPORTED GAMES - ULTRA THIN STRIP
   =============================== */
.supported-ultra {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2px auto 30px; /* closer to join bar */
  padding: 0 10px;
}

.supported-ultra-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 6px 18px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.25s ease;
}

.supported-ultra-box:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.supported-label {
  font-size: 0.75rem;
  color: rgba(50, 50, 50, 0.45);
  margin-bottom: 4px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.games-ultra-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.games-ultra-grid img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.games-ultra-grid img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 700px) {
  .supported-ultra {
    margin: 10px auto 40px;
  }
  .games-ultra-grid img {
    width: 22px;
    height: 22px;
  }
  .supported-label {
    font-size: 0.7rem;
  }
}

/* ===============================
   MAIN CONTENT SPLIT LAYOUT
   =============================== */
.split-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Left Section (news) */
.news-section {
  flex: 1.2;
  min-width: 600px;
}

/* Right Sidebar */
.category-sidebar {
  flex: 0.5;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 10px 0;
}

/* Sidebar title */
.sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Individual cards */
.category-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 14px 20px;
  color: #1e3a8a;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: left;
}

.category-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(74,184,254,0.3), rgba(253,160,133,0.3));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-card .icon {
  font-size: 1.4rem;
}

/* Responsive — stacks nicely on smaller screens */
@media (max-width: 1000px) {
  .split-layout {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .news-section {
    min-width: 100%;
  }
  .category-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .category-card {
    width: 160px;
  }
}

.ad-slot{
  margin: 24px 0;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.6);
  border: 1px dashed rgba(0,0,0,.12);
  text-align: center;
}

.mod-broken{
  display:inline-block;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255, 86, 86, .10);
  color: rgba(120, 20, 20, .95);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.mod-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.mod-status.broken{
  background: rgba(255, 180, 80, .18);
  border: 1px solid rgba(255, 180, 80, .35);
  color: rgba(120, 80, 10, .95);
}

.status-icon{
  font-size:14px;
  line-height:1;
}

.mod-thumb{
  position: relative;
  overflow: hidden;
}

/* container so multiple badges align nicely */
.thumb-badges{
  position:absolute;
  top:10px;
  left:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  z-index:2;
}

.thumb-status{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.thumb-icon{
  font-size: 13px;
  line-height: 1;
}

/* color accents (subtle) */
.thumb-status.map{ color:#1e40af; }      /* blue-ish */
.thumb-status.broken{ color:#92400e; }   /* amber-ish */
.thumb-status.memberonly{ color:#4ab8fe; }   /* amber-ish */


.mod-thumb{
  position: relative;
  overflow: hidden;
}

/* ===============================
   BUG REPORT
   =============================== */

/* Icon button on thumbnail */
.mod-thumb{ position:relative; overflow:hidden; }

.thumb-action{
  position:absolute;
  top:10px;
  right:10px;
  z-index:3;

  width:34px;
  height:34px;
  border-radius:12px;

  display:grid;
  place-items:center;

  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  cursor:pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  transition: transform .12s ease, filter .2s ease;
  font-size:16px;
  line-height:1;
}
.thumb-action:hover{ transform: translateY(-1px); filter: brightness(1.02); }

/* Modal base */
.report-modal{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.35);
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:9999;
}
.report-modal.open{ display:flex; }

.report-box{
  width:min(520px, 94vw);
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.18);
  overflow:hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.report-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.report-close{
  border:none;
  background:transparent;
  font-size:18px;
  cursor:pointer;
  opacity:.75;
}

.report-form{ padding:16px; }

.report-readonly{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.70);
  font-weight:900;
  margin-bottom:12px;
}

.report-label{
  display:block;
  font-size:13px;
  font-weight:900;
  margin:10px 0 6px;
}

.report-form textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  padding:10px 12px;
  font-size:14px;
  outline:none;
  resize:vertical;
  background: rgba(255,255,255,.85);
}

.report-actions{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.report-btn{
  border:none;
  border-radius:14px;
  padding:10px 12px;
  font-weight:900;
  cursor:pointer;
  background: linear-gradient(135deg, #7c83ff, #7ee8c7);
  color:#fff;
}
.report-btn.ghost{
  background: rgba(0,0,0,.04);
  color: rgba(0,0,0,.78);
  border: 1px solid rgba(0,0,0,.10);
}

.report-success{
  display:none;
  margin-top:12px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(126, 232, 199, .25);
  border: 1px solid rgba(126, 232, 199, .45);
  color: #065f46;
  font-weight:900;
  font-size:14px;
}


/* favourite */

.mod-actions{display:flex; gap:8px; align-items:center; justify-content:flex-end;}

.fav-btn{
  width:42px;height:38px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.75);
  display:inline-flex;align-items:center;justify-content:center;
  cursor:pointer;
  font-weight:900;
  transition:.15s;
}

.fav-btn:hover{transform: translateY(-1px);}
.fav-btn.is-active{
  border-color: rgba(255,105,205,.55);
  box-shadow: 0 0 0 3px rgba(255,105,205,.12);
}

.fav-btn .heart{font-size:18px; line-height:1;}
.fav-btn .count{font-size:12px; opacity:.75; margin-left:6px; font-weight:800;}
.fav-btn[disabled]{opacity:.6; cursor:not-allowed;}


.avatar{
  width:72px;height:72px;border-radius:18px;
  background: rgba(0,0,0,.06);
  overflow:hidden;flex:0 0 auto;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
}
.avatar img{width:100%;height:100%;object-fit:cover;display:block;}



/* temp */

.site-notice{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  font-size:13px;
  font-weight:600;
  color:#0f172a;

  background: linear-gradient(
          135deg,
          rgba(124,131,255,.15),
          rgba(126,232,199,.15)
  );
  border-bottom:1px solid rgba(0,0,0,.08);
}

.site-notice .notice-icon{
  font-size:16px;
}
