/* Base tokens and layout are defined in app-shell.css */

/* Tooltips - iOS Style */
.blocdash-app [data-tooltip] { position: relative; }
.blocdash-app [data-tooltip]::after { 
	content: attr(data-tooltip); 
	position: absolute; 
	bottom: 100%; 
	left: 50%; 
	transform: translateX(-50%) translateY(-4px); 
	margin-bottom: 8px; 
	background: rgba(0, 0, 0, 0.85); 
	color: #fff; 
	padding: 6px 12px; 
	border-radius: 999px; 
	font-size: 11px; 
	font-weight: 500;
	letter-spacing: 0.01em;
	white-space: nowrap; 
	opacity: 0; 
	visibility: hidden; 
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); 
	z-index: 50; 
	pointer-events: none;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	backdrop-filter: blur(4px);
}
.blocdash-app [data-tooltip]:hover::after { 
	opacity: 1; 
	visibility: visible; 
	transform: translateX(-50%) translateY(0); 
}
.blocdash-skeleton {
	background: #f0f0f0;
	background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	border-radius: 4px;
	animation: blocdash-skeleton-loading 1.5s infinite;
}

@keyframes blocdash-skeleton-loading {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.blocdash-skeleton-text { height: 1em; width: 100%; margin-bottom: 0.5em; }
.blocdash-skeleton-avatar { width: 48px; height: 48px; border-radius: 50%; }
.blocdash-skeleton-card { height: 200px; border-radius: 12px; }

.blocdash-skeleton-lines {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	flex: 1;
}

.blocdash-skeleton-text-lg { width: 80%; }
.blocdash-skeleton-text-md { width: 60%; }
.blocdash-skeleton-text-sm { width: 45%; }

.blocdash-notifications-popover {
	position: fixed;
	top: 5.5rem;
	right: 2rem;
	width: min(420px, 92vw);
	background: var(--blocdash-bg-surface);
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-lg);
	box-shadow: var(--blocdash-shadow-lg);
	overflow: hidden;
	z-index: 50;
	display: none;
	animation: blocdash_fade_in 0.2s ease;
}

.blocdash-notifications-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1rem;
	background: var(--blocdash-bg-surface-subtle);
	border-bottom: 1px solid var(--blocdash-border-subtle);
}

.blocdash-notifications-title {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.blocdash-notifications-header h3 {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blocdash-text-primary);
}

.blocdash-notifications-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 22px;
	padding: 0 0.45rem;
	border-radius: 999px;
	background: #111111;
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 700;
}

.blocdash-notifications-pill[data-count="0"] {
	background: var(--blocdash-border-subtle);
	color: var(--blocdash-text-secondary);
}

.blocdash-notifications-close {
	background: transparent;
	border: none;
	color: var(--blocdash-text-tertiary);
	font-size: 1.2rem;
	cursor: pointer;
}

.blocdash-notifications-close:hover {
	color: var(--blocdash-text-primary);
}

.blocdash-notifications-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--blocdash-border-subtle);
	background: #ffffff;
}

.blocdash-notifications-mark {
	background: var(--blocdash-bg-surface-subtle);
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: 999px;
	padding: 0.35rem 0.75rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blocdash-text-secondary);
	cursor: pointer;
}

.blocdash-notifications-mark:hover {
	color: var(--blocdash-text-primary);
	border-color: var(--blocdash-border-strong);
}

.blocdash-notifications-viewall {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--blocdash-text-primary);
	text-decoration: none;
}

.blocdash-notifications-viewall:hover {
	text-decoration: underline;
}

.blocdash-notifications-content {
	max-height: 380px;
	overflow-y: auto;
}

.blocdash-notifications-popover .blocdash-notifications-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.blocdash-notifications-popover .blocdash-notification-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 0.95rem 1rem;
	border-bottom: 1px solid var(--blocdash-border-subtle);
}

.blocdash-notifications-popover .blocdash-notification-item:last-child {
	border-bottom: none;
}

.blocdash-notifications-popover .blocdash-notification-icon {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--blocdash-bg-surface-subtle);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--blocdash-text-primary);
	flex-shrink: 0;
}

.blocdash-notifications-popover .blocdash-notification-icon svg {
	width: 18px;
	height: 18px;
}

.blocdash-notifications-popover .blocdash-notification-copy {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.blocdash-notifications-popover .blocdash-notification-link,
.blocdash-notifications-popover .blocdash-notification-text {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--blocdash-text-primary);
	text-decoration: none;
	line-height: 1.4;
	word-break: break-word;
}

.blocdash-notifications-popover .blocdash-notification-link:hover {
	text-decoration: underline;
}

.blocdash-notifications-popover .blocdash-notification-time {
	font-size: 0.75rem;
	color: var(--blocdash-text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.blocdash-notifications-popover .blocdash-notification-empty {
	padding: 1.5rem 1rem;
	text-align: center;
	color: var(--blocdash-text-tertiary);
	font-size: 0.85rem;
}

.blocdash-alerts-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.blocdash-alert-item {
	border-bottom: 1px solid var(--blocdash-border-subtle);
}

.blocdash-alert-item:last-child {
	border-bottom: none;
}

.blocdash-alert-link {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.9rem 1rem;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s ease;
}

.blocdash-alert-link:hover {
	background: var(--blocdash-bg-surface-subtle);
}

.blocdash-alert-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--blocdash-accent-color);
	margin-top: 0.45rem;
	flex-shrink: 0;
}

.blocdash-alert-body {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

.blocdash-alert-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--blocdash-text-primary);
	line-height: 1.35;
	word-break: break-word;
}

.blocdash-alert-time {
	font-size: 0.75rem;
	color: var(--blocdash-text-tertiary);
}

.blocdash-alerts-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1.5rem 1rem;
	color: var(--blocdash-text-tertiary);
	font-size: 0.85rem;
	text-align: center;
}

.blocdash-alerts-empty-icon {
	width: 28px;
	height: 28px;
	color: var(--blocdash-border-strong);
}

.blocdash-notifications-loading,
.blocdash-modal-loading {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem;
}

.blocdash-notification-skeleton {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* Refined Empty States */
.blocdash-empty-state {
	text-align: center;
	padding: 4rem 2rem;
	border: 1px dashed var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-lg);
	color: var(--blocdash-text-secondary);
	background: var(--blocdash-bg-surface-subtle);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.blocdash-empty-state-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 0.5rem;
	color: var(--blocdash-text-tertiary);
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--blocdash-shadow-sm);
}

.blocdash-empty-state-title {
	font-size: 1.25rem;
	color: var(--blocdash-text-primary);
	margin: 0;
}

.blocdash-empty-state-copy {
	font-size: 0.95rem;
	max-width: 400px;
	margin: 0;
}

.blocdash-empty-state h4 {
	font-size: 1.25rem;
	color: var(--blocdash-text-primary);
	margin: 0;
}

.blocdash-empty-state p {
	font-size: 0.95rem;
	max-width: 400px;
	margin: 0;
}

.blocdash-empty-state--compact {
	padding: 2rem 1.5rem;
	border-style: solid;
	background: #ffffff;
}

.blocdash-empty-state--compact .blocdash-empty-state-icon {
	width: 44px;
	height: 44px;
	box-shadow: none;
	background: var(--blocdash-bg-surface-subtle);
}

.blocdash-empty-state--compact .blocdash-empty-state-title {
	font-size: 1.05rem;
}

.blocdash-empty-state--compact .blocdash-empty-state-copy {
	font-size: 0.9rem;
}

.blocdash-empty-state--card {
	padding: 3rem 2rem;
}

.blocdash-empty-state--minimal {
	padding: 1.5rem 1rem;
	border: none;
	background: transparent;
	box-shadow: none;
}

.blocdash-empty-state--minimal .blocdash-empty-state-icon {
	width: 36px;
	height: 36px;
	background: var(--blocdash-bg-surface-subtle);
	box-shadow: none;
}

.blocdash-empty-state--minimal .blocdash-empty-state-title {
	font-size: 0.95rem;
}

.blocdash-empty-state--minimal .blocdash-empty-state-copy {
	font-size: 0.85rem;
}

/* Header + Tabs are defined in app-shell.css */

.blocdash-tab-pane { display: none; animation: blocdash_fade_in 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.blocdash-tab-pane.active { display: block; }

@keyframes blocdash_fade_in { 
	from { opacity: 0; transform: translateY(15px); } 
	to { opacity: 1; transform: translateY(0); } 
}

/* Buttons and inputs are defined in app-shell.css */

/* Badges */
.blocdash-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--blocdash-border-subtle);
	color: var(--blocdash-text-primary);
	font-size: 1.1rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: help;
	transition: all 0.2s;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.blocdash-badge:hover {
	transform: scale(1.15);
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	border-color: #000;
}

/* Modals */
.blocdash-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(8px);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	animation: blocdash_fade_in 0.3s ease;
}

.blocdash-modal {
	background: var(--blocdash-bg-surface);
	border-radius: var(--blocdash-radius-xl);
	width: 90%;
	max-width: 500px;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--blocdash-border-subtle);
	box-shadow: var(--blocdash-shadow-lg);
	animation: blocdash_modal_pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	overflow: hidden;
}

.blocdash-modal-header {
	padding: var(--blocdash-card-padding-header);
	border-bottom: 1px solid var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.blocdash-modal-header h3 {
	margin: 0;
	font-size: 1.2rem;
	color: var(--blocdash-text-primary);
}

/* Polls */
.blocdash-poll-vote-btn {
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	padding: 1rem 1.25rem;
	border-radius: var(--blocdash-radius-md);
	transition: all 0.2s ease;
	font-weight: 600;
	color: var(--blocdash-text-primary);
}

.blocdash-poll-vote-btn:hover {
	border-color: #000;
	background-color: #fafafa;
}

.blocdash-poll-bar span {
	background: #000;
	border-radius: 999px;
}

/* Responsive */
@media (min-width: 992px) { 
	.blocdash-announcements-grid { grid-template-columns: repeat(2, 1fr); } 
}

@media (max-width: 1024px) {
	.blocdash-announcements-grid {
		gap: 1.5rem;
	}

	.blocdash-announcement-content {
		padding: 1.25rem;
	}

	.blocdash-announcement-footer {
		padding: 0.85rem 1.25rem;
	}

	.blocdash-replies-section {
		padding: 1.25rem;
	}

	.blocdash-reply-content {
		padding: 1rem;
	}

	.blocdash-notifications-wrapper {
		padding: 0.25rem;
	}

	.blocdash-points-hero {
		padding: 1.5rem;
	}

	.blocdash-points-grid {
		gap: 1.25rem;
	}

	.blocdash-profile-card {
		padding: var(--blocdash-space-4);
		gap: var(--blocdash-space-4);
	}
}

/* Points */
.blocdash-points-display {
	background: #000;
	color: #fff;
	border-radius: var(--blocdash-radius-lg);
	box-shadow: var(--blocdash-shadow-lg);
}

.blocdash-points-number {
	background: none;
	-webkit-text-fill-color: initial;
	color: #fff;
}

/* Utility */
.blocdash-disabled-module {
	background: var(--blocdash-bg-surface-subtle);
	border: 1px dashed var(--blocdash-border-subtle);
	color: var(--blocdash-text-secondary);
	border-radius: var(--blocdash-radius-md);
}

.blocdash-login-message { 
	text-align: center; 
	padding: 3rem; 
	border: 1px dashed var(--blocdash-border-color); 
	border-radius: var(--blocdash-card-radius); 
}

.blocdash-disabled-module {
	padding: 1.25rem 1.5rem;
	border: 1px dashed var(--blocdash-border-color);
	border-radius: var(--blocdash-card-radius);
	background: #f6f6f6;
	color: var(--blocdash-text-secondary-color);
	text-align: center;
	margin-bottom: 1.5rem;
}

.blocdash-announcements-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: stretch;
}

.blocdash-announcement-card {
	display: flex;
	flex-direction: column;
	position: relative;
}

.blocdash-announcement-card.is-pinned {
	border-color: var(--blocdash-border-strong);
	box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08), var(--blocdash-shadow-md);
}

.blocdash-announcement-pin {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.75rem;
	background: var(--blocdash-accent-color);
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-bottom-left-radius: 14px;
	box-shadow: var(--blocdash-shadow-sm);
	z-index: 2;
}

.blocdash-announcement-pin-icon svg {
	width: 14px;
	height: 14px;
}

.blocdash-announcement-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0;
	border-bottom: none;
}

.blocdash-announcement-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
	display: block;
}

.blocdash-announcement-author-meta {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.blocdash-announcement-author {
	font-weight: 700;
	color: var(--blocdash-text-primary);
}

.blocdash-announcement-date {
	font-size: inherit;
	color: inherit;
}

.blocdash-announcement-actions {
	margin-left: auto;
	position: relative;
}

.blocdash-announcement-menu-trigger {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--blocdash-text-tertiary);
	cursor: pointer;
	transition: all 0.2s ease;
}

.blocdash-announcement-menu-trigger svg {
	width: 18px;
	height: 18px;
}

.blocdash-announcement-menu-trigger:hover {
	color: var(--blocdash-text-primary);
	border-color: var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
}

.blocdash-announcement-menu {
	position: absolute;
	right: 0;
	top: calc(100% + 0.35rem);
	min-width: 140px;
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: 12px;
	box-shadow: var(--blocdash-shadow-md);
	padding: 0.35rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all 0.2s ease;
	z-index: 20;
}

.blocdash-announcement-actions:hover .blocdash-announcement-menu,
.blocdash-announcement-actions:focus-within .blocdash-announcement-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.blocdash-pin-btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border: none;
	background: transparent;
	padding: 0.55rem 0.75rem;
	border-radius: 8px;
	color: var(--blocdash-text-secondary);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.blocdash-pin-btn:hover {
	background: var(--blocdash-bg-surface-subtle);
	color: var(--blocdash-text-primary);
}

.blocdash-announcement-menu-icon svg {
	width: 16px;
	height: 16px;
}

.blocdash-announcement-content {
	padding: 1.5rem;
	color: var(--blocdash-text-secondary);
	line-height: 1.7;
	font-size: 1rem;
	flex-grow: 1;
	text-align: left;
}

.blocdash-announcement-content p:last-child {
	margin-bottom: 0;
}

.blocdash-announcement-content a {
	color: var(--blocdash-text-primary);
	text-decoration: underline;
	text-decoration-color: var(--blocdash-border-subtle);
	font-weight: 500;
}

.blocdash-announcement-content a:hover {
	text-decoration-color: var(--blocdash-text-primary);
}

.blocdash-announcement-footer {
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--blocdash-border-subtle);
	background-color: var(--blocdash-bg-surface-subtle);
}

.blocdash-footer-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.blocdash-action-btn {
	cursor: pointer;
	background: none;
	border: 1px solid transparent;
	padding: 0.5rem 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--blocdash-text-secondary);
	font-size: 0.9rem;
	font-weight: 600;
	transition: all var(--blocdash-transition-speed) ease;
	border-radius: var(--blocdash-btn-radius);
	position: relative;
}

.blocdash-action-btn:hover {
	color: var(--blocdash-text-primary);
	background-color: rgba(17, 17, 17, 0.06);
}

.blocdash-action-icon svg {
	width: 20px;
	height: 20px;
	display: block;
	stroke-width: 1.5;
	transition: transform 0.2s ease;
}

.blocdash-action-btn:hover .blocdash-action-icon svg {
	transform: scale(1.05);
}

.blocdash-action-btn.liked,
.blocdash-action-btn.has-replies {
	color: var(--blocdash-text-primary);
	background-color: rgba(17, 17, 17, 0.08);
}

.blocdash-reply-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	background: var(--blocdash-accent-color);
	color: var(--blocdash-accent-text);
	font-size: 0.65rem;
	min-width: 18px;
	height: 18px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
	line-height: 1;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Button styles are defined in app-shell.css */

.blocdash-action-btn .count.first-like-animation { 
	animation: first_like_pop 0.6s ease-out; 
}

@keyframes first_like_pop { 
	0% { transform: scale(1); } 
	50% { transform: scale(1.5) rotate(10deg); color: var(--blocdash-text-primary-color); } 
	100% { transform: scale(1) rotate(0deg); } 
}

.blocdash-likers { display: flex; align-items: center; cursor: pointer; }
.blocdash-likers img { 
	width: 24px; 
	height: 24px; 
	border-radius: 50%; 
	border: 2px solid var(--blocdash-card-bg-color); 
	transition: transform 0.2s; 
}
.blocdash-likers img:hover { transform: scale(1.2); z-index: 1; }
.blocdash-likers img:not(:first-child) { margin-left: -10px; }

.blocdash-replies-section { 
	display: none;
	padding: 1.5rem;
	border-top: 1px solid var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
}

.blocdash-replies-list { 
	list-style: none;
	margin: 0 0 1.25rem 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.blocdash-reply-item { 
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	animation: blocdash_fade_in 0.5s;
}

.blocdash-replies-empty {
	text-align: center;
	color: var(--blocdash-text-tertiary);
	font-style: italic;
	padding: 1rem 0;
}

.blocdash-reply-avatar {
	flex-shrink: 0;
}

.blocdash-reply-avatar-img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--blocdash-border-subtle);
	box-shadow: var(--blocdash-shadow-sm);
	object-fit: cover;
	background: var(--blocdash-bg-surface-subtle);
	display: block;
}

.blocdash-reply-content {
	flex: 1;
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-md);
	border-top-left-radius: 8px;
	padding: 1.25rem;
	box-shadow: var(--blocdash-shadow-sm);
	position: relative;
}

.blocdash-reply-meta { 
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}

.blocdash-reply-meta-left {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.blocdash-reply-author {
	font-weight: 600;
	color: var(--blocdash-text-primary);
}

.blocdash-reply-date {
	font-size: 0.8rem;
	color: var(--blocdash-text-secondary);
}

.blocdash-reply-date::before {
	content: '|';
	margin: 0 0.5rem;
	color: var(--blocdash-border-subtle);
}

.blocdash-reply-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--blocdash-text-secondary);
}

.blocdash-first-commenter-badge { 
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--blocdash-text-primary);
	background-color: var(--blocdash-bg-surface-subtle);
	padding: 2px 8px;
	border-radius: 999px;
}

.blocdash-reply-delete-btn {
	border: none;
	background: none;
	color: var(--blocdash-text-tertiary);
	font-size: 0.75rem;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.blocdash-reply-delete-btn:hover {
	color: var(--blocdash-text-primary);
}

.blocdash-reply-delete-btn:focus-visible,
.blocdash-reply-item:hover .blocdash-reply-delete-btn {
	opacity: 1;
	pointer-events: auto;
}

.blocdash-reply-reactions {
	margin-top: 0.75rem;
}

.blocdash-reply-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

.blocdash-reply-textarea {
	width: 100%;
	min-height: 120px;
	resize: vertical;
}

.blocdash-load-more-replies-btn { 
	width: 100%;
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-btn-radius);
	padding: 0.75rem 1rem;
	font-weight: 600;
	color: var(--blocdash-text-secondary);
	cursor: pointer;
	transition: all 0.2s ease;
}

.blocdash-load-more-replies-btn:hover {
	border-color: var(--blocdash-border-strong);
	color: var(--blocdash-text-primary);
}

.blocdash-reply-submit {
	align-self: flex-end;
}

.blocdash-load-more-wrapper {
	text-align: center;
	margin-top: 2rem;
}

.blocdash-load-more-btn { 
	background-color: #ffffff;
	color: var(--blocdash-text-secondary);
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-btn-radius);
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--blocdash-transition-speed) ease;
}

.blocdash-load-more-btn:hover { 
	background-color: var(--blocdash-bg-surface-subtle);
	color: var(--blocdash-text-primary);
	border-color: var(--blocdash-border-strong);
}

.blocdash-load-more-btn:disabled { 
	opacity: 0.6;
	cursor: not-allowed; 
}

/* Comments Integration */
.blocdash-comments {
	margin: 2.5rem 0 !important;
	padding: 0 !important;
	border-radius: 0 !important;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	font-family: var(--blocdash-font-family) !important;
	color: var(--blocdash-text-primary) !important;
	text-align: left !important;
}

.blocdash-comments,
.blocdash-comments * {
	box-sizing: border-box !important;
}

.blocdash-comments > ol,
.blocdash-comments > ul,
.blocdash-comments .comment-list,
.blocdash-comments .children {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.blocdash-comments .comment-list > li::before,
.blocdash-comments .comment-list > li::after,
.blocdash-comments .children > li::before,
.blocdash-comments .children > li::after {
	content: none !important;
}

.blocdash-comments-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.85rem;
	margin-bottom: 1.35rem;
	border-bottom: 1px solid var(--blocdash-border-subtle);
}

.blocdash-comments-header h3 {
	margin: 0;
	font-size: 1.2rem;
}

.blocdash-comments-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	padding: 0.2rem 0.75rem;
	border-radius: 999px;
	border: 1px solid var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--blocdash-text-secondary);
}

.blocdash-comments .comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.blocdash-comments .comment-list {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
}

.blocdash-comments .comment-list > li,
.blocdash-comments .children > li {
	width: 100% !important;
	float: none !important;
	clear: both !important;
	display: block !important;
	position: relative !important;
}

.blocdash-comments .blocdash-reply-item {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
}

.blocdash-comments .comment-list > li {
	margin: 0 !important;
	padding: 1.5rem 0 !important;
	border-bottom: 1px solid var(--blocdash-border-subtle);
	background: transparent !important;
}

.blocdash-comment-body {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: flex-start;
	gap: 1rem;
	flex-wrap: nowrap;
	width: 100%;
	max-width: 100%;
}

.blocdash-comments .blocdash-comment-body {
	display: grid !important;
	grid-template-columns: 48px minmax(0, 1fr) !important;
	align-items: flex-start !important;
	gap: 1rem !important;
	width: 100% !important;
	max-width: 100% !important;
}

.blocdash-comment-body .blocdash-reply-content {
	min-width: 0;
	width: 100%;
}

.blocdash-comments .blocdash-reply-content {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	border-radius: 0;
	min-width: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
}

.blocdash-comments .comment-list > li:last-child {
	border-bottom: none;
}

.blocdash-comment-badges-inline {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.blocdash-comment-badge {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 2px 6px;
	border-radius: 999px;
	border: 1px solid var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
	color: var(--blocdash-text-secondary);
}

.blocdash-comments .children {
	list-style: none;
	margin: 1.75rem 0 0 2.75rem;
	padding: 0 0 0 2rem;
	border-left: 1px dashed var(--blocdash-border-subtle);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.blocdash-comments .children {
	margin-left: 2.75rem !important;
	padding-left: 2rem !important;
	border-left: 1px dashed var(--blocdash-border-subtle) !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 1.5rem !important;
	width: 100% !important;
	float: none !important;
	clear: both !important;
}

.blocdash-comments .blocdash-reply-avatar {
	flex-shrink: 0;
}

.blocdash-comments .blocdash-reply-content,
.blocdash-comments .blocdash-comment-body {
	width: 100% !important;
}

.blocdash-comments .blocdash-reply-reactions {
	margin-top: 0.6rem;
}

.blocdash-comments .blocdash-reply-meta {
	gap: 0.5rem;
	align-items: center;
}

.blocdash-comments .blocdash-reply-date::before {
	content: '·';
	margin: 0 0.35rem;
}

.blocdash-comments .blocdash-reply-text {
	color: var(--blocdash-text-primary);
}

.blocdash-comments .blocdash-comment-actions a,
.blocdash-comments .blocdash-comment-pin {
	background: transparent;
	border: none;
	padding: 0;
}

.blocdash-comments .blocdash-comment-pin {
	margin-left: 0.35rem;
}

.blocdash-comment-pending {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--blocdash-text-secondary);
	background: var(--blocdash-bg-surface-subtle);
	padding: 2px 8px;
	border-radius: 999px;
}

.blocdash-comment-actions a {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--blocdash-text-tertiary);
	text-decoration: none;
}

.blocdash-comment-actions a:hover {
	color: var(--blocdash-text-primary);
}

.blocdash-comment-pin {
	border: 1px solid var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
	color: var(--blocdash-text-secondary);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
	cursor: pointer;
	margin-left: 0.5rem;
}

.blocdash-comment-pin.is-pinned {
	color: var(--blocdash-text-primary);
	border-color: var(--blocdash-border-strong);
}

.blocdash-comment-pinned-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--blocdash-text-primary);
	background: var(--blocdash-bg-surface-subtle);
	padding: 2px 8px;
	border-radius: 999px;
	border: 1px solid var(--blocdash-border-subtle);
}

.blocdash-comment-item.is-pinned .blocdash-reply-content {
	background: var(--blocdash-bg-surface-subtle);
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: 14px;
	padding: 0.85rem 1rem;
	box-shadow: none;
}

.blocdash-comment-footer {
	margin-top: 0.5rem;
}

.blocdash-comment-author-link {
	color: var(--blocdash-text-primary);
	font-weight: 600;
	text-decoration: none;
}

.blocdash-comment-author-link:hover {
	text-decoration: underline;
}

.blocdash-comment-reply .comment-reply-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.15rem 0.2rem;
	border-radius: 0;
	border: none;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--blocdash-text-secondary);
	text-decoration: none;
	background: transparent;
	transition: all 0.2s ease;
}

.blocdash-comment-reply .comment-reply-link:hover {
	color: var(--blocdash-text-primary);
	text-decoration: underline;
}

.blocdash-comment-form-wrap {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--blocdash-border-subtle);
}

.blocdash-comments .comment-respond {
	margin: 1.5rem 0 0 !important;
	padding: 0 !important;
	border: none !important;
	background: transparent !important;
}

.blocdash-comments #reply-title {
	margin: 0 0 0.75rem 0 !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
}

.blocdash-comments #cancel-comment-reply-link {
	font-size: 0.8rem !important;
	margin-left: 0.5rem !important;
	color: var(--blocdash-text-secondary) !important;
	text-decoration: none !important;
}

.blocdash-comments #cancel-comment-reply-link:hover {
	color: var(--blocdash-text-primary) !important;
	text-decoration: underline !important;
}

.blocdash-comments .comment-form {
	display: flex !important;
	flex-direction: column !important;
	gap: 0.75rem !important;
}

.blocdash-comments .comment-form p {
	margin: 0;
}

.blocdash-comments .comment-form label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--blocdash-text-secondary);
	margin-bottom: 0.4rem;
}

.blocdash-comments .comment-form input[type="text"],
.blocdash-comments .comment-form input[type="email"],
.blocdash-comments .comment-form input[type="url"],
.blocdash-comments .comment-form textarea {
	width: 100%;
	padding: 0.85rem 1.1rem;
	border-radius: var(--blocdash-radius-md);
	border: 1px solid var(--blocdash-border-subtle);
	background: #ffffff;
	font-size: 1rem;
	color: var(--blocdash-text-primary);
	transition: all 0.2s ease;
}

.blocdash-comments .comment-form textarea {
	min-height: 140px;
	resize: vertical;
}

.blocdash-comments .comment-form input,
.blocdash-comments .comment-form textarea {
	max-width: 100% !important;
}

.blocdash-comments .comment-form .comment-form-cookies-consent {
	display: flex !important;
	align-items: flex-start !important;
	gap: 0.5rem !important;
	font-size: 0.85rem !important;
	color: var(--blocdash-text-secondary) !important;
}

.blocdash-comments .comment-form input:focus,
.blocdash-comments .comment-form textarea:focus {
	outline: none;
	border-color: var(--blocdash-border-focus);
	box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}

.blocdash-comments .comment-notes,
.blocdash-comments .logged-in-as {
	color: var(--blocdash-text-tertiary);
	font-size: 0.85rem;
}

.blocdash-comments .comment-notes a,
.blocdash-comments .logged-in-as a {
	color: var(--blocdash-text-secondary);
}

.blocdash-comments-form-title {
	margin: 0;
	font-size: 1rem;
}

.blocdash-comment-submit {
	display: flex;
	justify-content: flex-end;
}

.blocdash-comments .comment-navigation {
	margin: 1.5rem 0 !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 1rem !important;
}

.blocdash-comments .comment-navigation a {
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.35rem !important;
	padding: 0.35rem 0.6rem !important;
	border-radius: 999px !important;
	border: 1px solid var(--blocdash-border-subtle) !important;
	color: var(--blocdash-text-secondary) !important;
	text-decoration: none !important;
	font-size: 0.8rem !important;
	font-weight: 600 !important;
	background: var(--blocdash-bg-surface-subtle) !important;
}

.blocdash-comments .comment-navigation a:hover {
	color: var(--blocdash-text-primary) !important;
	border-color: var(--blocdash-border-strong) !important;
}

.blocdash-comments .blocdash-reply-text img,
.blocdash-comments .blocdash-reply-text video,
.blocdash-comments .blocdash-reply-text iframe {
	max-width: 100% !important;
	height: auto !important;
}

.blocdash-honeypot {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 720px) {
	.blocdash-comments {
		padding: 0.5rem 0;
	}

	.blocdash-comments .children {
		margin-left: 1.5rem;
		padding-left: 1rem;
	}

	.blocdash-comments .blocdash-reply-item,
	.blocdash-comments .blocdash-comment-body {
		grid-template-columns: 1fr;
		align-items: flex-start;
	}

	.blocdash-comments .blocdash-reply-avatar {
		margin-bottom: 0.5rem;
	}

	.blocdash-comments .blocdash-reply-content {
		width: 100%;
	}

	.blocdash-comments .blocdash-reply-meta {
		gap: 0.5rem;
	}

	.blocdash-comments .blocdash-comment-actions {
		width: 100%;
		justify-content: flex-start;
	}
}

@keyframes blocdash_modal_pop { 
	from { opacity: 0; transform: scale(0.9); } 
	to { opacity: 1; transform: scale(1); } 
}

.blocdash-modal-close { 
	background: #eeeeee; 
	border: none; 
	width: 32px; 
	height: 32px; 
	border-radius: 50%; 
	font-size: 1.2rem; 
	cursor: pointer; 
	color: #2b2b2b; 
	transition: all 0.2s ease; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
}

.blocdash-modal-close:hover { 
	background-color: #dddddd; 
	transform: rotate(90deg); 
}

.blocdash-modal-content { padding: 1.5rem; overflow-y: auto; }

.blocdash-modal-liker-list, .blocdash-new-posts-list, .blocdash-alerts-list { 
	list-style: none; 
	padding: 0; 
	margin: 0; 
	display: flex; 
	flex-direction: column; 
	gap: 1rem; 
}

.blocdash-modal-liker { display: flex; align-items: center; gap: 0.75rem; }
.blocdash-modal-liker img { border-radius: 50%; width: 40px; height: 40px; }
.blocdash-modal-liker span, .blocdash-new-post-item a, .blocdash-alert-item a, .blocdash-alert-item span { 
	font-weight: 500; 
	color: var(--blocdash-text-primary-color); 
	text-decoration:none; 
}
.blocdash-modal-reaction-icon { 
	margin-left: auto; 
	display: inline-flex; 
	align-items: center; 
	color: var(--blocdash-text-secondary-color); 
}
.blocdash-modal-reaction-icon svg { width: 20px; height: 20px; display: block; }

.blocdash-first-liker-badge { 
	font-size: 0.75rem; 
	font-weight: 600; 
	color: #1b1b1b; 
	background-color: #e7e7e7; 
	padding: 2px 6px; 
	border-radius: 4px; 
	margin-left: 0.5rem; 
}

.blocdash-new-post-item a:hover { text-decoration:underline; }
.blocdash-new-post-item small { color: var(--blocdash-text-secondary-color); }

.blocdash-notification-bell .icon { 
	width: 28px; 
	height: 28px; 
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.blocdash-notification-bell .icon svg { width: 28px; height: 28px; display: block; }

@keyframes blocdash_shake { 
	10%, 90% { transform: rotate(-10deg); } 
	20%, 80% { transform: rotate(10deg); } 
	30%, 50%, 70% { transform: rotate(-10deg); } 
	40%, 60% { transform: rotate(10deg); } 
}

.new-notification-shake { animation: blocdash_shake 0.6s ease-in-out 3; }

.blocdash-notifications-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: 0.5rem;
}

.blocdash-notifications-hero {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.blocdash-notifications-hero h2 {
	margin: 0;
	font-size: 1.4rem;
}

.blocdash-notifications-subtitle {
	margin: 0.35rem 0 0;
	color: var(--blocdash-text-secondary);
	max-width: 560px;
}

.blocdash-notifications-summary {
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-md);
	padding: 0.85rem 1.1rem;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.2rem;
	min-width: 140px;
	box-shadow: var(--blocdash-shadow-sm);
}

.blocdash-notifications-card .blocdash-notifications-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.blocdash-notifications-card .blocdash-notification-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--blocdash-border-subtle);
}

.blocdash-notifications-card .blocdash-notification-item:last-child {
	border-bottom: none;
}

.blocdash-notifications-card {
	padding: 0;
	overflow: hidden;
}

.blocdash-notifications-card .blocdash-notification-main {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.blocdash-notifications-card .blocdash-notification-dot-inline {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--blocdash-accent-color);
	margin-top: 0.4rem;
	flex-shrink: 0;
}

.blocdash-notifications-card .blocdash-notification-copy {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.blocdash-notifications-card .blocdash-notification-link,
.blocdash-notifications-card .blocdash-notification-text {
	color: var(--blocdash-text-primary);
	font-weight: 600;
	text-decoration: none;
}

.blocdash-notifications-card .blocdash-notification-link:hover {
	color: var(--blocdash-text-primary);
	text-decoration: underline;
}

.blocdash-notifications-card .blocdash-notification-time {
	color: var(--blocdash-text-tertiary);
	font-size: 0.8rem;
}

.blocdash-notifications-card .blocdash-notification-type {
	border: none;
	border-radius: 0;
	padding: 0;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
	background: transparent;
	white-space: nowrap;
}

.blocdash-notifications-count {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--blocdash-text-primary);
}

.blocdash-notifications-count-label {
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
}

/* Polls */
.blocdash-poll {
	padding: 0;
	margin-bottom: 1.5rem;
}

.blocdash-poll-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.blocdash-poll-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem 0.65rem;
	border-radius: 999px;
	border: 1px solid var(--blocdash-border-subtle);
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blocdash-text-secondary);
	background: var(--blocdash-bg-surface-subtle);
	font-weight: 700;
}

.blocdash-poll-status.is-open {
	color: var(--blocdash-text-primary);
	border-color: var(--blocdash-border-strong);
}

.blocdash-poll-status.is-closed {
	color: var(--blocdash-text-tertiary);
}

.blocdash-poll-header h3 {
	margin: 0;
}

.blocdash-poll-description {
	margin: 0.5rem 0 0;
	color: var(--blocdash-text-secondary-color);
}

.blocdash-poll-option {
	margin-bottom: 0.75rem;
}

.blocdash-poll-vote-btn {
	width: 100%;
	text-align: left;
	background: #ffffff;
	border: 1px solid var(--blocdash-border-color);
	padding: 0.75rem 1rem;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.blocdash-poll-vote-btn:hover {
	border-color: var(--blocdash-accent-color);
	box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

.blocdash-poll-vote-btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.blocdash-poll-bar {
	background: #f1f1f1;
	border-radius: 999px;
	overflow: hidden;
	height: 8px;
	margin-top: 6px;
}

.blocdash-poll-bar span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #111111, #555555);
}

.blocdash-poll-count {
	font-weight: 600;
	color: var(--blocdash-text-secondary-color);
}

.blocdash-poll-footer {
	margin-top: 0;
	color: var(--blocdash-text-secondary-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.blocdash-poll-closed-note {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
}

/* Reputation */
.blocdash-reputation {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: auto;
}

.blocdash-reputation-btn {
	border: 1px solid var(--blocdash-border-color);
	background: #ffffff;
	border-radius: 10px;
	padding: 0.35rem 0.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.blocdash-reputation-btn.is-active {
	background: var(--blocdash-accent-color);
	color: #ffffff;
}

.blocdash-reputation-score {
	font-weight: 700;
}

.blocdash-progress-bar {
	background: var(--blocdash-bg-surface-subtle);
	border-radius: 999px;
	overflow: hidden;
	height: 8px;
}

.blocdash-progress-bar span {
	display: block;
	height: 100%;
	background: var(--blocdash-accent-color);
}

/* Achievements */
.blocdash-achievements {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.blocdash-achievements-hero {
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-lg);
	padding: 1.5rem;
	background: var(--blocdash-bg-surface);
	box-shadow: var(--blocdash-shadow-sm);
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: flex-start;
	justify-content: space-between;
}

.blocdash-achievements-hero-main {
	flex: 1 1 260px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.blocdash-achievements-eyebrow {
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
}

.blocdash-achievements-hero h3 {
	margin: 0;
	font-size: 1.35rem;
}

.blocdash-achievements-hero p {
	margin: 0;
	color: var(--blocdash-text-secondary);
}

.blocdash-achievements-progress {
	display: grid;
	gap: 0.4rem;
	margin-top: 0.5rem;
}

.blocdash-achievements-progress-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	color: var(--blocdash-text-secondary);
}

.blocdash-achievements-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: stretch;
}

.blocdash-achievements-stat {
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: 999px;
	padding: 0.65rem 1rem;
	background: var(--blocdash-bg-surface-subtle);
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 110px;
}

.blocdash-achievements-stat span {
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
}

.blocdash-achievements-stat strong {
	font-size: 1rem;
}

.blocdash-achievements-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.85rem;
}

.blocdash-achievements-section-header h4 {
	margin: 0;
	font-size: 1.1rem;
}

.blocdash-achievements-section-count {
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
}

.blocdash-achievements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1rem;
}

.blocdash-achievement {
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-lg);
	padding: 1rem 1.1rem;
	background: var(--blocdash-bg-surface);
	box-shadow: var(--blocdash-shadow-sm);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-height: 140px;
}

.blocdash-achievement.is-complete {
	border-color: var(--blocdash-border-color);
	background: #fcfcfc;
}

.blocdash-achievement-header {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.blocdash-achievement-icon svg {
	width: 22px;
	height: 22px;
}

.blocdash-achievement-copy h4 {
	margin: 0;
	font-size: 1rem;
}

.blocdash-achievement-copy p {
	margin: 0.25rem 0 0;
	font-size: 0.9rem;
	color: var(--blocdash-text-secondary);
}

.blocdash-achievement-status {
	margin-left: auto;
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: 999px;
	padding: 0.2rem 0.6rem;
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blocdash-text-secondary);
	background: var(--blocdash-bg-surface-subtle);
}

.blocdash-achievement.is-complete .blocdash-achievement-status {
	border-color: var(--blocdash-border-color);
	color: #ffffff;
	background: var(--blocdash-accent-color);
}

.blocdash-achievement-progress {
	display: grid;
	gap: 0.4rem;
}

.blocdash-achievements .blocdash-progress-bar {
	background: var(--blocdash-bg-surface-subtle);
	border-radius: 999px;
	overflow: hidden;
	height: 6px;
}

.blocdash-achievements .blocdash-progress-bar span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #111111, #444444);
}

.blocdash-achievement-progress small {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--blocdash-text-tertiary);
}

.blocdash-achievements-empty {
	margin: 0;
	padding: 1.1rem 1.25rem;
	border-radius: var(--blocdash-radius-lg);
	border: 1px dashed var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
	color: var(--blocdash-text-secondary);
}

.blocdash-achievements-actions {
	display: flex;
	justify-content: center;
}

.blocdash-achievements-toggle {
	border: 1px solid var(--blocdash-border-color);
	background: #ffffff;
	border-radius: 999px;
	padding: 0.55rem 1.2rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.blocdash-achievements-toggle:hover {
	box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.blocdash-achievements[data-collapsed="true"] .blocdash-achievement.is-collapsible {
	display: none;
}

@media (max-width: 720px) {
	.blocdash-achievements-hero {
		padding: 1.2rem;
	}

	.blocdash-achievements-stats {
		width: 100%;
	}
}

/* Leaderboards */
.blocdash-leaderboards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.blocdash-leaderboard ul {
	list-style: none;
	margin: 0;
	padding: 1rem 1.5rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.blocdash-leaderboard li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0;
}

.blocdash-leaderboard-avatar img {
	border-radius: 50%;
	width: 28px;
	height: 28px;
	object-fit: cover;
	border: 1px solid var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
	display: block;
}

.blocdash-rank {
	font-weight: 700;
	min-width: 32px;
	color: var(--blocdash-text-secondary-color);
}

.blocdash-leaderboard-score {
	margin-left: auto;
	font-weight: 700;
	min-width: 32px;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

/* Levels */
.blocdash-level-widget {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.blocdash-level-widget-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.blocdash-level-widget-title {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blocdash-text-secondary);
}

.blocdash-level-widget-badge {
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: var(--blocdash-bg-surface-subtle);
	color: var(--blocdash-text-secondary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid var(--blocdash-border-subtle);
}

.blocdash-level-widget-progress {
	margin-top: 0.2rem;
}

.blocdash-level-widget-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--blocdash-text-secondary);
	gap: 1rem;
}

.blocdash-level-card {
	padding: 1.5rem;
}

.blocdash-level-name {
	font-size: 1.5rem;
	font-weight: 700;
}

.blocdash-level-points {
	color: var(--blocdash-text-secondary-color);
}

.blocdash-levels-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.blocdash-levels-list li {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--blocdash-border-color);
}

.blocdash-reaction-inline svg {
	width: 14px;
	height: 14px;
	vertical-align: middle;
}

.blocdash-loader { 
	width: 24px; 
	height: 24px; 
	border: 3px solid #efefef; 
	border-top: 3px solid var(--blocdash-accent-color); 
	border-radius: 50%; 
	animation: blocdash_spin 1s linear infinite; 
	margin: 2rem auto; 
}

@keyframes blocdash_spin { 
	0% { transform: rotate(0deg); } 
	100% { transform: rotate(360deg); } 
}

/* Points Page Styling */
.blocdash-points-wrapper {
	max-width: 100%;
}

.blocdash-points-shell {
	display: flex;
	flex-direction: column;
	gap: var(--blocdash-space-4);
}

.blocdash-points-hero {
	padding: 2rem;
	border-radius: var(--blocdash-radius-lg);
	background: var(--blocdash-bg-surface-subtle);
	border: 1px solid var(--blocdash-border-subtle);
	display: flex;
	flex-direction: column;
	gap: var(--blocdash-space-4);
}

.blocdash-points-hero-main {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.blocdash-points-kicker {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	color: var(--blocdash-text-tertiary);
	font-weight: 700;
}

.blocdash-points-value {
	font-size: 3.4rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--blocdash-text-primary);
}

.blocdash-points-sub {
	color: var(--blocdash-text-secondary);
	font-size: 0.95rem;
}

.blocdash-points-hero-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.9rem;
}

.blocdash-points-meta-card {
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-md);
	padding: 0.9rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.blocdash-points-meta-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--blocdash-text-tertiary);
	font-weight: 700;
}

.blocdash-points-meta-value {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--blocdash-text-primary);
}

.blocdash-points-meta-note {
	font-size: 0.85rem;
	color: var(--blocdash-text-secondary);
}

.blocdash-points-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--blocdash-space-4);
}

.blocdash-points-card {
	overflow: hidden;
}

.blocdash-points-card .blocdash-no-results {
	padding: 1.25rem 1.5rem;
	margin: 0;
	text-align: left;
}

.blocdash-points-rules-list,
.blocdash-points-log {
	list-style: none;
	padding: 0;
	margin: 0;
}

.blocdash-points-rules-list {
	display: grid;
	gap: 0.75rem;
	padding: 1.25rem 1.5rem 1.5rem;
}

.blocdash-points-rules-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.6rem;
	border-bottom: 1px solid var(--blocdash-border-subtle);
	color: var(--blocdash-text-secondary);
}

.blocdash-points-rules-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.blocdash-points-rules-list strong {
	font-weight: 700;
	color: var(--blocdash-text-primary);
	min-width: 36px;
	text-align: right;
}

.blocdash-points-log {
	display: grid;
	gap: 0.75rem;
	padding: 1.25rem 1.5rem 1.5rem;
}

.blocdash-points-log li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.6rem;
	border-bottom: 1px solid var(--blocdash-border-subtle);
}

.blocdash-points-log li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.blocdash-points-log-label {
	font-weight: 600;
	color: var(--blocdash-text-primary);
}

.blocdash-points-log-meta {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--blocdash-text-secondary);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	white-space: nowrap;
}

.blocdash-points-log-dot {
	color: var(--blocdash-border-subtle);
}

@media (min-width: 900px) {
	.blocdash-points-hero {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.blocdash-points-hero-meta {
		max-width: 380px;
	}
}
/* Reputation */
.blocdash-reputation-score-clickable {
	cursor: pointer;
	padding: 2px 6px;
	border-radius: 4px;
	transition: background-color 0.2s;
}

.blocdash-reputation-score-clickable:hover {
	background-color: rgba(0,0,0,0.05);
	text-decoration: underline;
}

/* Directory & Profile */
.blocdash-directory-wrapper {
	padding-top: var(--blocdash-space-4);
}

.blocdash-directory-search {
	max-width: 720px;
	margin: 0 auto var(--blocdash-space-5);
}

.blocdash-search-form {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.blocdash-search-input {
	flex: 1;
	padding-left: 1.1rem;
	padding-right: 1.1rem;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: var(--blocdash-shadow-sm);
}

.blocdash-search-clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	color: var(--blocdash-text-secondary);
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.blocdash-search-clear:hover,
.blocdash-search-button:hover {
	background: var(--blocdash-bg-surface-subtle);
	color: var(--blocdash-text-primary);
}

.blocdash-search-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--blocdash-border-subtle);
	background: #ffffff;
	color: var(--blocdash-text-secondary);
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.blocdash-search-button svg {
	width: 18px;
	height: 18px;
}

.blocdash-search-button:focus-visible,
.blocdash-search-clear:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}

.blocdash-directory-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: var(--blocdash-space-4);
}

@media (min-width: 640px) {
	.blocdash-directory-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.blocdash-directory-grid {
		grid-template-columns: repeat(var(--blocdash-directory-columns, 3), minmax(0, 1fr));
	}
}

.blocdash-user-card {
	background: var(--blocdash-bg-surface);
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-lg);
	text-align: center;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
	gap: 0;
	box-shadow: var(--blocdash-shadow-sm);
	padding: 0;
}

.blocdash-user-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--blocdash-shadow-lg);
}

.blocdash-user-card-header {
	display: flex;
	justify-content: center;
}

.blocdash-user-avatar {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	border: 3px solid #ffffff;
	box-shadow: var(--blocdash-shadow-md);
	object-fit: cover;
	background: var(--blocdash-bg-surface-subtle);
	display: block;
}

.blocdash-user-card-body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	align-items: center;
}

.blocdash-user-name {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--blocdash-text-primary);
}

.blocdash-user-since {
	margin: 0;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
}

.blocdash-user-badges-mini {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	min-height: 28px;
	margin-top: var(--blocdash-space-2);
}

.blocdash-user-card-footer {
	margin-top: auto;
	display: flex;
	gap: var(--blocdash-space-2);
	justify-content: center;
	align-items: center;
}

.blocdash-follow-btn.following {
	background: var(--blocdash-bg-surface-subtle);
	color: var(--blocdash-text-secondary);
	border-color: var(--blocdash-border-subtle);
}

.blocdash-pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: var(--blocdash-space-5);
}

.blocdash-pagination .page-numbers,
.blocdash-pagination-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	color: var(--blocdash-text-secondary);
	font-weight: 600;
	transition: all 0.2s ease;
}

.blocdash-pagination .page-numbers.current,
.blocdash-pagination .page-numbers:hover,
.blocdash-pagination-button:hover {
	background: var(--blocdash-accent-color);
	color: var(--blocdash-accent-text);
	border-color: var(--blocdash-accent-color);
}

.blocdash-no-results {
	text-align: center;
	padding: var(--blocdash-space-6) var(--blocdash-space-4);
}

.blocdash-no-results-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0.5rem 0 0;
}

.blocdash-no-results-copy {
	margin: 0.35rem 0 0;
	color: var(--blocdash-text-secondary);
}

.blocdash-profile-header {
	margin-bottom: var(--blocdash-space-4);
}

.blocdash-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	color: var(--blocdash-text-secondary);
	font-weight: 600;
	font-size: 0.85rem;
	transition: all 0.2s ease;
}

.blocdash-back-link:hover {
	color: var(--blocdash-text-primary);
	box-shadow: var(--blocdash-shadow-sm);
}

.blocdash-back-icon {
	width: 14px;
	height: 14px;
}

.blocdash-profile-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--blocdash-space-5);
	background: var(--blocdash-bg-surface);
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-xl);
	box-shadow: var(--blocdash-shadow-md);
	padding: var(--blocdash-space-5);
}

@media (min-width: 900px) {
	.blocdash-profile-card {
		grid-template-columns: 280px 1fr;
	}

	.blocdash-profile-sidebar {
		position: sticky;
		top: var(--blocdash-space-4);
		align-self: start;
		height: fit-content;
	}

	.blocdash-profile-snapshot {
		position: sticky;
		top: var(--blocdash-space-4);
		align-self: stretch;
	}
}

.blocdash-profile-sidebar {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--blocdash-space-3);
	background: var(--blocdash-bg-surface-subtle);
	border-radius: var(--blocdash-radius-lg);
	padding: var(--blocdash-space-4);
	border: 1px solid var(--blocdash-border-subtle);
}

.blocdash-profile-badges-sidebar {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.blocdash-profile-badges-label {
	font-size: 0.65rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
	font-weight: 700;
}

.blocdash-profile-badges-sidebar .blocdash-badge-grid {
	justify-content: center;
}

.blocdash-profile-about {
	width: 100%;
	text-align: left;
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-md);
	padding: 0.85rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	color: var(--blocdash-text-secondary);
}

.blocdash-profile-about-label {
	font-size: 0.65rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
	font-weight: 700;
}

.blocdash-profile-about-copy {
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--blocdash-text-secondary);
}

.blocdash-profile-about-copy p {
	margin: 0;
}

.blocdash-profile-avatar {
	position: relative;
	margin-bottom: var(--blocdash-space-2);
}

.blocdash-profile-avatar-glow {
	position: absolute;
	inset: -10px;
	background: radial-gradient(circle, rgba(17, 17, 17, 0.08), transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.blocdash-profile-avatar-img {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	border: 4px solid #ffffff;
	box-shadow: var(--blocdash-shadow-md);
	position: relative;
	z-index: 1;
	object-fit: cover;
	background: var(--blocdash-bg-surface-subtle);
	display: block;
}

.blocdash-profile-name {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
}

.blocdash-profile-joined {
	margin: 0 0 var(--blocdash-space-2);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
}

.blocdash-profile-stats {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--blocdash-space-2);
	margin-top: auto;
	padding-top: var(--blocdash-space-3);
	border-top: 1px solid var(--blocdash-border-subtle);
}

.blocdash-profile-stat {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.blocdash-profile-stat-value {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--blocdash-text-primary);
}

.blocdash-profile-stat-label {
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
}

.blocdash-profile-main {
	display: flex;
	flex-direction: column;
	gap: var(--blocdash-space-5);
	min-width: 0;
}

.blocdash-profile-snapshot {
	display: flex;
	flex-direction: column;
	gap: var(--blocdash-space-4);
	width: 100%;
}

.blocdash-profile-snapshot .blocdash-card {
	width: 100%;
}

.blocdash-profile-metric {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--blocdash-text-primary);
}

.blocdash-profile-metric-caption {
	font-size: 0.85rem;
	color: var(--blocdash-text-tertiary);
	margin: 0.35rem 0 0.75rem;
}

.blocdash-card-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.blocdash-card-list-item {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--blocdash-border-subtle);
}

.blocdash-card-list-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.blocdash-card-list-title {
	font-weight: 600;
	color: var(--blocdash-text-primary);
}

.blocdash-card-list-meta {
	font-size: 0.75rem;
	color: var(--blocdash-text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.blocdash-section-label {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
	font-weight: 700;
	margin-bottom: var(--blocdash-space-2);
}

.blocdash-section-label-row {
	margin-bottom: var(--blocdash-space-3);
}

.blocdash-profile-bio-copy {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--blocdash-text-secondary);
}

.blocdash-badge-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.blocdash-activity-card {
	background: var(--blocdash-bg-surface-subtle);
	border-radius: var(--blocdash-radius-md);
	border: 1px solid var(--blocdash-border-subtle);
	overflow: hidden;
}

.blocdash-activity-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.blocdash-activity-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--blocdash-border-subtle);
}

.blocdash-activity-item:last-child {
	border-bottom: none;
}

.blocdash-activity-time {
	font-size: 0.75rem;
	color: var(--blocdash-text-tertiary);
	white-space: nowrap;
}

.blocdash-activity-content {
	flex: 1;
	color: var(--blocdash-text-primary);
	line-height: 1.6;
}

@media (max-width: 720px) {
	.blocdash-activity-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.4rem;
	}
}

.blocdash-activity-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.blocdash-activity-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.9rem 1.1rem;
	border-bottom: 1px solid var(--blocdash-border-subtle);
	gap: 1rem;
}

.blocdash-activity-list li:last-child {
	border-bottom: none;
}

.blocdash-activity-link {
	font-weight: 600;
	color: var(--blocdash-text-primary);
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blocdash-activity-entry {
	font-weight: 600;
	color: var(--blocdash-text-primary);
	flex: 1;
	min-width: 0;
	white-space: normal;
	line-height: 1.4;
}

.blocdash-activity-date {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blocdash-text-tertiary);
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	white-space: nowrap;
}

.blocdash-empty-note {
	color: var(--blocdash-text-tertiary);
	font-style: italic;
}

@media (max-width: 640px) {
	.blocdash-search-input {
		font-size: 0.95rem;
	}

	.blocdash-user-card {
		padding: var(--blocdash-space-4);
	}

	.blocdash-profile-card {
		padding: var(--blocdash-space-4);
	}

	.blocdash-notifications-popover {
		left: 1rem;
		right: 1rem;
		width: auto;
		top: 4.5rem;
	}
}
/* Reactions */
.blocdash-reactions-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1rem;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(0,0,0,0.04);
}

.blocdash-comments .blocdash-reactions-wrapper {
	margin-top: 0.5rem;
	padding-top: 0;
	border-top: none;
}

.blocdash-reactions-bar {
	display: flex;
	gap: 0.45rem;
	flex-wrap: wrap;
}

.blocdash-reaction-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.15rem 0.45rem;
	border-radius: 999px;
	background: #f6f7f8;
	border: 1px solid rgba(0,0,0,0.05);
	box-shadow: 0 2px 6px rgba(0,0,0,0.06);
	transition: all 0.2s ease;
}

.blocdash-reaction-pill:hover {
	border-color: var(--blocdash-accent-color);
}

.blocdash-comments .blocdash-reaction-pill {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
}

.blocdash-reaction-btn {
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: 1px solid rgba(0,0,0,0.08);
	background: #ffffff;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blocdash-text-secondary-color);
	transition: all 0.18s ease;
	position: relative;
}

.blocdash-comments .blocdash-reaction-btn {
	width: 26px;
	height: 26px;
	border-color: var(--blocdash-border-subtle);
	box-shadow: none;
}

.blocdash-reaction-btn:hover {
	transform: translateY(-2px) scale(1.08);
	box-shadow: 0 8px 16px rgba(0,0,0,0.14);
}

.blocdash-reaction-pill .blocdash-reaction-btn:hover {
	background-color: rgba(0,0,0,0.04);
	transform: none;
	box-shadow: none;
}

.blocdash-comments .blocdash-reaction-btn:hover {
	transform: translateY(-1px);
	box-shadow: var(--blocdash-shadow-sm);
}

.blocdash-reaction-btn::after {
	content: attr(aria-label);
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	transform: translateX(-50%) translateY(4px);
	background: #111111;
	color: #ffffff;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 2px 6px;
	border-radius: 999px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: all 0.15s ease;
}

.blocdash-reaction-btn:hover::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.blocdash-reaction-icon {
	width: 18px;
	height: 18px;
}

.blocdash-reaction-icon-like { color: #1877f2; }
.blocdash-reaction-icon-dislike { color: #6b7280; }
.blocdash-reaction-icon-love { color: #f02849; }
.blocdash-reaction-icon-laugh { color: #f7b125; }
.blocdash-reaction-icon-wow { color: #f7b125; }
.blocdash-reaction-icon-celebrate { color: #f7b125; }
.blocdash-reaction-icon-insight { color: #8b5cf6; }
.blocdash-reaction-icon-sad { color: #f59e0b; }

.blocdash-reaction-count {
	font-size: 0.7rem;
	font-weight: 700;
	color: #111111;
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 999px;
	padding: 2px 6px;
	cursor: pointer;
}

.blocdash-reaction-count:hover {
	background-color: #f0f0f0;
	color: var(--blocdash-text-primary-color);
}

.blocdash-comments .blocdash-reaction-count {
	border-color: var(--blocdash-border-subtle);
	background: transparent;
}

.blocdash-reactions-summary {
	font-size: 0.85rem;
}

.blocdash-reactions-summary a {
	color: var(--blocdash-text-secondary-color);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	background: #f6f7f8;
	border: 1px solid rgba(0,0,0,0.06);
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
}

.blocdash-reactions-summary a:hover {
	color: var(--blocdash-text-primary-color);
}

.blocdash-reactions-summary svg {
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: #ffffff;
	padding: 2px;
	border: 1px solid rgba(0,0,0,0.06);
}

/* Badges */
.blocdash-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.blocdash-user-badges-mini {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	margin-top: 0.5rem;
}

.blocdash-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	border: 1px solid #ddd;
	color: #333;
	font-size: 1.2rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: help;
	transition: transform 0.2s;
}

.blocdash-badge:hover {
	transform: scale(1.1);
	background: #fff;
	border-color: #ccc;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blocdash-user-badges-mini .blocdash-badge {
	width: 28px;
	height: 28px;
	font-size: 0.9rem;
}

.badge-veteran { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-author { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-contributor { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-team { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-pro { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-active { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-verified { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-founder { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-og { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-early { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-starter { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-favorite { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-points { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-comment-regular { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-comment-legend { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-top-commenter { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }
.badge-comment-elite { background: #f6f6f6; border-color: var(--blocdash-border-subtle); }

/* Native Comment Badges */
.blocdash-comment-badges {
	display: inline-flex;
	margin-left: 6px;
	vertical-align: middle;
}

.blocdash-comment-badges .blocdash-badges {
	gap: 2px;
}

.blocdash-comment-badges .blocdash-badge {
	width: 16px;
	height: 16px;
	font-size: 10px;
	margin: 0;
	border: none;
	background: transparent;
	box-shadow: none;
}
.blocdash-user-badges-mini-reply {
	display: inline-flex;
	margin-left: 4px;
	vertical-align: middle;
}
.blocdash-user-badges-mini-reply .blocdash-badge {
	width: 16px;
	height: 16px;
	font-size: 10px;
	margin: 0 1px;
}
