@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');



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

:root {
  --bg-main: #0c0a09;
  --bg-card: #14110f;
  --bg-card-hover: #1c1815;
  --bg-darker: #070605;
  --bg-glass: rgba(20, 17, 15, 0.9);

  --accent: #b3541e;
  --accent-light: #d97736;
  --accent-glow: rgba(179, 84, 30, 0.35);
  --accent-gold: #c8963e;
  --accent-gold-light: #e5b358;

  --border: rgba(179, 84, 30, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(200, 150, 62, 0.45);

  --text-main: #f5ede6;
  --text-muted: #a89f91;
  --text-dim: #6e675c;

  --font-brand: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-code: 'JetBrains Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 25px rgba(179, 84, 30, 0.25);
  --shadow-gold: 0 0 25px rgba(200, 150, 62, 0.2);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(179, 84, 30, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(200, 150, 62, 0.06) 0%, transparent 40%),
    linear-gradient(rgba(12, 10, 9, 0.96), rgba(12, 10, 9, 0.98)),
    url('/assets/img/htlogo.png');
  background-attachment: fixed;
  background-size: cover, cover, cover, 600px;
  background-position: center;
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: var(--accent-light); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--accent-gold-light); text-shadow: 0 0 8px var(--accent-glow); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-heading); border: none; outline: none; }
input, textarea, select { font-family: var(--font-body); }

.text-accent { color: var(--accent-light) !important; }
.text-gold { color: var(--accent-gold-light) !important; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: #3d2214; border-radius: 3px; border: 1px solid var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

::selection { background: var(--accent); color: #fff; }

/* === ANNOUNCEMENT STRIP === */
.announcement {
  background: linear-gradient(90deg, #2b1308 0%, #4a210d 50%, #2b1308 100%);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px;
  font-size: 0.85rem;
  color: var(--text-main);
}
.announcement-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.announcement a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-gold-light); font-weight: 700; text-transform: uppercase; font-size: 0.78rem;
  letter-spacing: 1px;
}
.announcement a:hover { color: #fff; }

/* === NAVBAR === */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 0 24px; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; text-decoration: none;
}
.brand-logo-img {
  height: 48px; width: auto; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
  transition: transform 0.25s ease;
}
.nav-logo:hover .brand-logo-img { transform: scale(1.04); }

.nav-links { display: flex; align-items: center; gap: 6px; flex: 1; }
.nav-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-sm);
  color: var(--text-muted); font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all 0.2s ease; border: 1px solid transparent;
  background: none;
}
.nav-link i { font-size: 0.9rem; opacity: 0.75; transition: opacity 0.2s; }
.nav-link:hover { color: var(--text-main); background: rgba(179, 84, 30, 0.1); border-color: var(--border); }
.nav-link:hover i { opacity: 1; color: var(--accent-light); }
.nav-link.active {
  color: var(--accent-gold-light); background: rgba(179, 84, 30, 0.15);
  border-color: var(--border-strong); text-shadow: 0 0 10px rgba(200, 150, 62, 0.3);
}
.nav-link.active i { opacity: 1; color: var(--accent-gold-light); }

/* Nav Dropdown */
.nav-dropdown-wrap { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-btn { cursor: pointer; }
.nav-caret { font-size: 0.7rem !important; transition: transform 0.2s ease; margin-left: 2px; }
.nav-dropdown-wrap:hover .nav-caret,
.nav-dropdown-btn[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 8px; min-width: 190px;
  z-index: 1100; box-shadow: var(--shadow-main);
  flex-direction: column; gap: 4px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown-wrap:hover .nav-dropdown-menu,
.nav-dropdown-menu.open { display: flex; }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 14px;
  border-radius: var(--radius-sm); color: var(--text-muted);
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all 0.15s ease;
}
.nav-dropdown-item i { font-size: 0.9rem; opacity: 0.75; width: 16px; text-align: center; }
.nav-dropdown-item:hover {
  background: rgba(179, 84, 30, 0.15); color: var(--text-main);
}
.nav-dropdown-item:hover i { opacity: 1; color: var(--accent-light); }
.nav-dropdown-item.active {
  color: var(--accent-gold-light); background: rgba(179, 84, 30, 0.2);
}
.nav-dropdown-item.active i { opacity: 1; color: var(--accent-gold-light); }

.mobile-nav-divider {
  padding: 10px 16px 4px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  border-top: 1px solid var(--border-subtle);
  margin-top: 6px;
}

.nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.btn-tebex {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #7d350f 100%);
  color: #fff; border: 1px solid var(--border-strong);
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4), var(--shadow-glow);
  transition: all 0.25s ease;
}
.btn-tebex:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(179, 84, 30, 0.5);
}

.btn-login {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); color: var(--text-muted);
  background: rgba(20, 17, 15, 0.8); font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  transition: all 0.2s ease;
}
.btn-login:hover {
  border-color: var(--accent-gold); color: var(--accent-gold-light);
  background: rgba(179, 84, 30, 0.12);
}

.nav-user { display: flex; align-items: center; gap: 12px; }
.user-avatar-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--border-strong); object-fit: cover;
  background: var(--bg-card); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading); font-size: 0.95rem; color: var(--accent-gold-light);
  cursor: pointer; transition: all 0.2s ease; overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.user-avatar-btn:hover { border-color: var(--accent-light); transform: scale(1.06); box-shadow: var(--shadow-glow); }
.user-points {
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700;
  color: var(--accent-gold-light); display: inline-flex; align-items: center; gap: 5px;
}

.hamburger { display: none; background: none; color: var(--text-main); font-size: 1.3rem; padding: 6px; }
/* === HERO === */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 24px 70px;
  border-bottom: 1px solid var(--border);
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(179, 84, 30, 0.2) 0%, transparent 70%),
    linear-gradient(180deg, rgba(12, 10, 9, 0.4) 0%, var(--bg-main) 100%);
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(179, 84, 30, 0.15); border: 1px solid var(--border-strong);
  padding: 6px 14px; border-radius: var(--radius-sm); margin-bottom: 20px;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--accent-gold-light);
}
.hero-title {
  font-family: var(--font-brand); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.1; letter-spacing: 1.5px;
  margin-bottom: 20px; color: var(--text-main);
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.hero-title .accent {
  background: linear-gradient(135deg, #d97736 0%, #c8963e 50%, #e5b358 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block;
}
.hero-desc {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 32px; max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #7d350f 100%);
  color: #fff; padding: 13px 28px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong); font-family: var(--font-heading);
  font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5), var(--shadow-glow);
  transition: all 0.25s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(179, 84, 30, 0.45);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(20, 17, 15, 0.6); border: 1px solid var(--border); color: var(--text-main);
  padding: 13px 26px; border-radius: var(--radius-sm); font-family: var(--font-heading);
  font-weight: 600; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  border-color: var(--accent-gold); color: var(--accent-gold-light);
  background: rgba(179, 84, 30, 0.15); transform: translateY(-2px);
}

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 16px; text-align: center;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stat-num {
  font-family: var(--font-brand); font-size: 1.8rem; font-weight: 900;
  color: var(--accent-gold-light);
}
.stat-label {
  color: var(--text-dim); font-family: var(--font-heading); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 2px;
}

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-showcase {
  position: relative; width: 100%; max-width: 380px;
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-main), var(--shadow-glow);
}
.hero-showcase-logo {
  width: 130px; height: 130px; margin: 0 auto 16px; display: block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.8));
}
.hero-showcase-title {
  font-family: var(--font-brand); font-size: 1.4rem; text-align: center;
  color: var(--text-main); margin-bottom: 4px; letter-spacing: 1px;
}
.hero-showcase-sub {
  color: var(--accent-gold); font-family: var(--font-heading); font-size: 0.9rem;
  text-align: center; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 22px;
}
.showcase-items { display: flex; flex-direction: column; gap: 10px; }
.showcase-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7, 6, 5, 0.7); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 10px 14px;
}
.showcase-item-name {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--text-main);
}
.showcase-item-name i { color: var(--accent-light); }
.showcase-item-price {
  font-family: var(--font-heading); font-weight: 700; color: var(--accent-gold-light); font-size: 0.95rem;
}
/* === SECTION UTILITIES === */
.section { padding: 80px 24px; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 40px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-gold); font-family: var(--font-heading); font-size: 0.85rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px;
}
.section-label i { font-size: 0.8rem; color: var(--accent-light); }
.section-title {
  font-family: var(--font-brand); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900; letter-spacing: 1px; color: var(--text-main); line-height: 1.2;
}
.section-desc { color: var(--text-muted); margin-top: 8px; font-size: 1rem; max-width: 650px; }

/* === CARDS GRID === */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.post-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all 0.25s ease; cursor: pointer; display: flex; flex-direction: column;
}
.post-card:hover {
  border-color: var(--border-strong); transform: translateY(-4px);
  box-shadow: var(--shadow-main), var(--shadow-glow); background: var(--bg-card-hover);
}
.post-card-img { width: 100%; height: 180px; object-fit: cover; background: #191410; }
.post-card-img-placeholder {
  width: 100%; height: 180px; background: linear-gradient(135deg, #1f1610 0%, #100b08 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light); font-size: 2.5rem;
}
.post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: var(--radius-sm); font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.tag-article { background: rgba(179, 84, 30, 0.2); color: var(--accent-light); border: 1px solid var(--border); }
.tag-docs { background: rgba(200, 150, 62, 0.2); color: var(--accent-gold-light); border: 1px solid rgba(200, 150, 62, 0.3); }
.tag-forum { background: rgba(58, 134, 255, 0.15); color: #70a6ff; border: 1px solid rgba(58, 134, 255, 0.3); }
.tag-announcement { background: rgba(217, 119, 54, 0.25); color: #ffab73; border: 1px solid rgba(217, 119, 54, 0.4); }
.post-date { font-size: 0.8rem; color: var(--text-dim); }

.post-card-title {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700;
  line-height: 1.3; margin-bottom: 10px; color: var(--text-main); flex: 1;
}
.post-card-excerpt {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.55;
  margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border-subtle);
}
.post-card-author { display: flex; align-items: center; gap: 8px; }
.post-card-author-avatar {
  width: 28px; height: 28px; border-radius: 50%; background: var(--bg-darker);
  border: 1px solid var(--border); object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; color: var(--accent-gold);
}
.post-card-author-name { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.post-card-stats { display: flex; gap: 14px; }
.post-stat { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--text-dim); }
.post-stat i { color: var(--accent); }
.post-pinned { border-color: var(--border-strong); }
/* === USER PROFILE PAGE === */
.profile-page-wrap { max-width: 1050px; margin: 20px auto 0; padding: 20px 24px; }
.profile-banner-container {
  position: relative; height: 260px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden; background: linear-gradient(135deg, #2b1308 0%, #120904 100%);
  border: 1px solid var(--border-strong); border-bottom: none;
}
.profile-banner-img { width: 100%; height: 100%; object-fit: cover; }
.profile-banner-placeholder {
  width: 100%; height: 100%;
  background: 
    radial-gradient(circle at 70% 30%, rgba(179, 84, 30, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, #1c0e07 0%, #0d0704 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 3.5rem; opacity: 0.35;
}
.profile-banner-upload-btn {
  position: absolute; top: 16px; right: 16px;
  background: rgba(12, 10, 9, 0.85); border: 1px solid var(--border-strong);
  color: var(--text-main); padding: 8px 14px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(8px);
  cursor: pointer; transition: all 0.2s;
}
.profile-banner-upload-btn:hover { background: var(--accent); border-color: var(--accent-light); }

.profile-header-card {
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 0 32px 32px; margin-bottom: 36px;
  box-shadow: var(--shadow-main);
}
.profile-avatar-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: -55px; margin-bottom: 20px; flex-wrap: wrap; gap: 20px;
}
.profile-avatar-box {
  position: relative; width: 110px; height: 110px; border-radius: 50%;
  border: 4px solid var(--bg-card); background: #191410;
  box-shadow: 0 4px 20px rgba(0,0,0,0.8), var(--shadow-glow);
  overflow: hidden; flex-shrink: 0;
}
.profile-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.profile-avatar-initials {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-size: 2.2rem; font-weight: 900; color: var(--accent-gold-light);
  background: #21150e;
}
.profile-avatar-upload-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.7);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; color: #fff; font-size: 0.75rem; font-family: var(--font-heading);
  opacity: 0; transition: opacity 0.2s; cursor: pointer;
}
.profile-avatar-box:hover .profile-avatar-upload-overlay { opacity: 1; }

.profile-main-info { flex: 1; }
.profile-username {
  font-family: var(--font-brand); font-size: 2rem; font-weight: 900;
  color: var(--text-main); margin-bottom: 4px; letter-spacing: 1px;
}
.profile-badges-strip { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

.badge-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(179, 84, 30, 0.15); border: 1px solid var(--border-strong);
  padding: 5px 12px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-main);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.badge-chip i { font-size: 0.9rem; }

.profile-bio-box {
  background: var(--bg-darker); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 18px 22px; margin-top: 20px;
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.7;
}

.profile-stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px;
  margin-top: 24px;
}
.profile-stat-box {
  background: rgba(7, 6, 5, 0.6); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 14px; text-align: center;
}
.profile-stat-val {
  font-family: var(--font-brand); font-size: 1.6rem; font-weight: 900;
  color: var(--accent-gold-light);
}
.profile-stat-lbl {
  font-family: var(--font-heading); font-size: 0.8rem; text-transform: uppercase;
  color: var(--text-dim); letter-spacing: 1px; margin-top: 2px;
}
.profile-edit-bio-textarea {
  width: 100%; min-height: 120px; background: var(--bg-darker);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text-main); padding: 14px; font-size: 0.95rem; resize: vertical; outline: none;
}
.profile-edit-bio-textarea:focus { border-color: var(--accent-gold); }
/* === POST DETAIL PAGE === */
.post-page { max-width: 1280px; margin: 20px auto 0; padding: 40px 24px; display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.post-content-wrap { min-width: 0; }
.post-header { margin-bottom: 32px; }
.post-cover { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 32px; border: 1px solid var(--border); }
.post-title-h1 { font-family: var(--font-brand); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.15; margin-bottom: 20px; letter-spacing: 1px; }
.post-meta-bar { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 32px; }
.post-author { display: flex; align-items: center; gap: 12px; }
.post-author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--bg-darker); border: 1px solid var(--border-strong); }
.post-author-info { display: flex; flex-direction: column; }
.post-author-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--text-main); }
.post-author-role { font-family: var(--font-heading); font-size: 0.8rem; color: var(--accent-gold); text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }
.post-date-full { color: var(--text-muted); font-size: 0.875rem; }
.post-views { display: flex; align-items: center; gap: 6px; color: var(--text-dim); font-size: 0.875rem; }

.post-body { font-size: 1.05rem; line-height: 1.85; color: #d4ccb8; }
.post-body h1, .post-body h2, .post-body h3 { font-family: var(--font-brand); margin: 2em 0 0.6em; color: var(--text-main); }
.post-body h2 { font-size: 1.6rem; border-left: 3px solid var(--accent); padding-left: 14px; }
.post-body h3 { font-size: 1.25rem; color: var(--accent-gold-light); }
.post-body p { margin-bottom: 1.3em; }
.post-body code { background: #26160c; color: #f4a261; padding: 3px 8px; border-radius: var(--radius-sm); font-family: var(--font-code); font-size: 0.9em; border: 1px solid rgba(179, 84, 30, 0.3); }
.post-body pre { background: var(--bg-darker); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; overflow-x: auto; margin: 1.6em 0; }
.post-body pre code { background: none; color: #e5b358; padding: 0; border: none; }
.post-body ul, .post-body ol { padding-left: 26px; margin-bottom: 1.3em; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote { border-left: 3px solid var(--accent-gold); padding: 14px 22px; background: rgba(179, 84, 30, 0.08); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 1.6em 0; color: var(--text-muted); font-style: italic; }

/* === SIDEBAR === */
.post-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 24px; }
.sidebar-card h3 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-gold); margin-bottom: 16px; }
.sidebar-tebex-card { border-color: var(--border-strong); text-align: center; }
.sidebar-tebex-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: linear-gradient(135deg, var(--accent) 0%, #7d350f 100%); color: #fff; padding: 12px; border-radius: var(--radius-sm); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; font-size: 0.95rem; margin-top: 14px; transition: all 0.2s; border: 1px solid var(--border-strong); }
.sidebar-tebex-btn:hover { background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%); color: #fff; transform: translateY(-1px); }

.like-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); padding: 10px 20px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; text-transform: uppercase;
  transition: all 0.2s;
}
.like-btn:hover, .like-btn.liked { border-color: var(--accent-light); color: var(--accent-light); background: rgba(179, 84, 30, 0.15); }
.like-count { font-family: var(--font-brand); font-size: 1.3rem; color: var(--text-main); font-weight: 700; }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.post-tag { background: var(--bg-darker); border: 1px solid var(--border-subtle); color: var(--text-muted); padding: 5px 12px; border-radius: var(--radius-sm); font-size: 0.8rem; font-family: var(--font-heading); cursor: pointer; transition: all 0.2s; }
.post-tag:hover { border-color: var(--accent); color: var(--accent-light); }

/* === COMMENTS === */
.comments-section { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border-subtle); }
.comments-title { font-family: var(--font-brand); font-size: 1.5rem; font-weight: 900; margin-bottom: 28px; }
.comment-form { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 24px; margin-bottom: 32px; }
.comment-textarea {
  width: 100%; min-height: 110px; background: var(--bg-darker);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text-main); padding: 14px; font-size: 0.95rem; resize: vertical; outline: none;
}
.comment-textarea:focus { border-color: var(--accent-gold); }
.comment-form-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.char-count { font-size: 0.8rem; color: var(--text-dim); }
.btn-comment {
  background: var(--accent); color: #fff; padding: 10px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; text-transform: uppercase;
  border: 1px solid var(--border-strong); transition: all 0.2s;
}
.btn-comment:hover { background: var(--accent-light); }

.comments-list { display: flex; flex-direction: column; gap: 20px; }
.comment-item { display: flex; gap: 14px; }
.comment-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-darker); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: var(--accent-gold); overflow: hidden;
}
.comment-body { flex: 1; }
.comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.comment-author { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; }
.comment-role { font-size: 0.7rem; padding: 2px 8px; border-radius: var(--radius-sm); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; }
.role-admin { background: rgba(179, 84, 30, 0.25); color: var(--accent-light); border: 1px solid var(--border); }
.role-moderator { background: rgba(200, 150, 62, 0.25); color: var(--accent-gold-light); border: 1px solid rgba(200, 150, 62, 0.3); }
.role-user { background: var(--bg-darker); color: var(--text-dim); }
.comment-time { font-size: 0.8rem; color: var(--text-dim); }
.comment-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.comment-actions { display: flex; gap: 14px; margin-top: 8px; }
.comment-action-btn { background: none; color: var(--text-dim); font-size: 0.85rem; font-family: var(--font-heading); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.comment-action-btn:hover, .comment-action-btn.liked { color: var(--accent-light); }
.comment-replies { margin-left: 48px; margin-top: 14px; display: flex; flex-direction: column; gap: 14px; }
/* === LEADERBOARD === */
.leaderboard-list { display: flex; flex-direction: column; gap: 10px; }
.lb-item {
  display: flex; align-items: center; gap: 16px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  padding: 14px 20px; transition: all 0.2s;
}
.lb-item:hover { border-color: var(--border-strong); background: var(--bg-card-hover); }
.lb-rank { font-family: var(--font-brand); font-size: 1.2rem; width: 36px; text-align: center; flex-shrink: 0; font-weight: 900; }
.lb-rank.gold { color: #f4d03f; }
.lb-rank.silver { color: #bdc3c7; }
.lb-rank.bronze { color: #cd7f32; }
.lb-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-darker); border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent-gold); overflow: hidden; }
.lb-user { flex: 1; }
.lb-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; }
.lb-role { font-size: 0.75rem; color: var(--text-dim); font-family: var(--font-heading); text-transform: uppercase; }
.lb-points { font-family: var(--font-heading); font-size: 1.1rem; color: var(--accent-gold-light); font-weight: 700; }

/* === POST EDITOR === */
.editor-page { max-width: 900px; margin: 40px auto 0; padding: 40px 24px; }
.editor-title-input { width: 100%; background: none; border: none; font-family: var(--font-brand); font-size: 2rem; font-weight: 900; color: var(--text-main); outline: none; padding: 10px 0; border-bottom: 2px solid var(--border); margin-bottom: 20px; }
.editor-title-input:focus { border-bottom-color: var(--accent-gold); }
.editor-toolbar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px; }
.toolbar-btn { background: var(--bg-darker); border: 1px solid var(--border-subtle); color: var(--text-muted); padding: 6px 12px; border-radius: var(--radius-sm); font-size: 0.85rem; transition: all 0.15s; }
.toolbar-btn:hover { background: var(--accent); color: #fff; }
.toolbar-sep { width: 1px; background: var(--border); margin: 4px 2px; }
.editor-textarea { width: 100%; min-height: 400px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text-main); padding: 20px; font-size: 0.95rem; line-height: 1.7; resize: vertical; outline: none; font-family: var(--font-code); }
.editor-textarea:focus { border-color: var(--accent-gold); }
.editor-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin: 20px 0; }
.editor-select { width: 100%; background: var(--bg-darker); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-main); padding: 10px 14px; outline: none; font-family: var(--font-heading); font-size: 0.95rem; }
.editor-actions { display: flex; gap: 12px; justify-content: flex-end; }

/* === AUTH MODAL === */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s; backdrop-filter: blur(8px); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 36px; width: 100%; max-width: 440px; transform: translateY(20px); transition: transform 0.25s; box-shadow: var(--shadow-main), var(--shadow-glow); }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-title { font-family: var(--font-brand); font-size: 1.6rem; font-weight: 900; margin-bottom: 6px; }
.modal-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent-gold); margin-bottom: 8px; }
.form-input { width: 100%; background: var(--bg-darker); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-main); padding: 12px 16px; font-size: 0.95rem; transition: border-color 0.2s; outline: none; }
.form-input:focus { border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(179, 84, 30, 0.15); }
.form-error { background: rgba(179, 84, 30, 0.2); border: 1px solid var(--accent); color: #ffab73; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.85rem; margin-bottom: 16px; display: none; }
.form-error.show { display: block; }
.btn-full { width: 100%; padding: 14px; font-size: 1rem; }
.modal-switch { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--text-muted); }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; color: var(--text-muted); font-size: 1.2rem; padding: 8px; line-height: 1; }
.modal-close:hover { color: var(--text-main); }
.modal-wrapper { position: relative; }

/* === TRANSLATE WIDGET === */
.translate-wrap { position: relative; }
.translate-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); padding: 8px 14px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.translate-btn:hover { border-color: var(--accent-gold); color: var(--text-main); }
.translate-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 8px; min-width: 170px;
  z-index: 1100; box-shadow: var(--shadow-main);
  flex-direction: column; gap: 2px;
}
.translate-dropdown.open { display: flex; }
.lang-option {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px;
  border-radius: var(--radius-sm); background: none; border: none;
  color: var(--text-muted); font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; text-align: left; width: 100%; transition: all 0.15s;
}
.lang-option:hover { background: rgba(179, 84, 30, 0.15); color: var(--text-main); }
.lang-option.active { color: var(--accent-gold-light); background: rgba(179, 84, 30, 0.2); }
.translate-powered { font-size: 0.7rem; color: var(--text-dim); text-align: center; padding: 8px 4px 4px; border-top: 1px solid var(--border-subtle); margin-top: 4px; }

/* === HIDE GOOGLE TRANSLATE BANNER === */
.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate, #goog-gt-tt, .goog-te-balloon-frame, div#goog-gt-tt { display: none !important; visibility: hidden !important; height: 0 !important; opacity: 0 !important; }
body { top: 0 !important; position: static !important; }
iframe.goog-te-banner-frame { display: none !important; }
.skiptranslate { display: none !important; }

/* === TOAST === */
.toast-container { position: fixed; top: 90px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 14px 18px; min-width: 280px; max-width: 380px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-main); pointer-events: all; animation: slideIn 0.25s ease; }
.toast.success { border-color: var(--accent-gold); }
.toast.error { border-color: var(--accent); }
.toast-icon { font-size: 1.1rem; flex-shrink: 0; color: var(--accent-gold-light); }
.toast-text { flex: 1; font-size: 0.9rem; }
.toast-close { background: none; color: var(--text-dim); font-size: 1.1rem; padding: 0 0 0 8px; line-height: 1; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* === EMPTY STATE === */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-icon { font-size: 3rem; margin-bottom: 16px; color: var(--accent); opacity: 0.8; }
.empty-title { font-family: var(--font-brand); font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.empty-desc { color: var(--text-muted); font-size: 0.95rem; }

/* === FOOTER === */
footer {
  background: var(--bg-darker); border-top: 1px solid var(--border);
  padding: 60px 24px 32px; margin-top: 80px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-top: 14px; max-width: 320px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-gold-light); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.85rem; color: var(--text-dim); }
.footer-discord { display: inline-flex; align-items: center; gap: 8px; background: #5865F2; color: #fff; padding: 8px 18px; border-radius: var(--radius-sm); font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; transition: all 0.2s; }
.footer-discord:hover { background: #4752c4; color: #fff; }

/* === MOBILE === */
@media (max-width: 1024px) {
  .post-page { grid-template-columns: 1fr; }
  .post-sidebar { order: -1; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .editor-meta { grid-template-columns: 1fr; }
  .nav-right .btn-tebex span { display: none; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 16px; }
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  z-index: 999; padding: 16px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link { padding: 12px 16px; border-radius: var(--radius-sm); color: var(--text-muted); font-family: var(--font-heading); font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.mobile-nav-link:hover { background: rgba(179, 84, 30, 0.15); color: var(--text-main); }
/* === CUSTOM USER BADGES & TAGS STYLING === */
.custom-user-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 8px; border-radius: 4px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.4px; text-transform: uppercase;
}
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 22px; display: flex; flex-direction: column;
}
.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; gap: 12px; }
.review-author-row { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.review-rating {
  color: var(--accent-gold-light);
  font-size: 0.95rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.review-rating .star-empty {
  color: rgba(255, 255, 255, 0.2);
}
.review-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; color: var(--text-main); }
.review-content { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; flex: 1; }

.tag-manage-box { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; }
.tag-items-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.tag-manage-item {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 700;
}
.tag-del-btn { background: none; color: inherit; opacity: 0.7; padding: 0 0 0 6px; cursor: pointer; }
.tag-del-btn:hover { opacity: 1; }

/* === ADMIN TOP TABS (TAGS | REPORTS | ACTIVE NOW | MANAGE) === */
.admin-tabs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 6px;
  margin-bottom: 28px;
  overflow-x: auto;
}
.admin-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.admin-tab-btn:hover {
  background: rgba(179, 84, 30, 0.15);
  color: var(--text-main);
}
.admin-tab-btn.active {
  background: linear-gradient(135deg, var(--accent) 0%, #7d350f 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(179, 84, 30, 0.4);
}
.admin-tab-badge {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.75rem;
}

/* === POST CARD 3-DOTS ACTION MENU === */
.post-card { position: relative; }
.post-actions-wrap {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
}
.post-actions-btn {
  background: rgba(12, 10, 9, 0.85);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}
.post-actions-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  transform: scale(1.05);
}
.post-actions-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 6px;
  min-width: 140px;
  z-index: 100;
  box-shadow: var(--shadow-main);
  flex-direction: column;
  gap: 2px;
}
.post-actions-wrap:hover .post-actions-menu,
.post-actions-menu.open {
  display: flex;
}
.post-action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all 0.15s ease;
}
.post-action-item i { width: 14px; text-align: center; }
.post-action-item:hover {
  background: rgba(179, 84, 30, 0.15);
  color: var(--text-main);
}
.post-action-item.danger:hover {
  background: rgba(230, 57, 70, 0.2);
  color: #ff6b6b;
}

/* === LIST CONTROLS & FILTER BAR === */
.list-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.list-filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.list-select {
  background: var(--bg-darker);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}
.list-select:focus { border-color: var(--accent-gold); }

/* Color picker styling */
.color-picker-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  height: 44px;
}
.color-input-native {
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
}