/* Premium Catchy Styling for phpBB External Bookmark Links */

/* Topic Card Title Prominence */
.topic-grid-card h3,
.topic-grid-card .topictitle,
li.card .topictitle,
a.topictitle {
	font-size: 1.25rem !important; /* Prominent 20px title */
	font-weight: 800 !important;
	line-height: 1.35 !important;
	color: #0f172a !important; /* Dark Slate / Navy Title */
	letter-spacing: -0.015em;
	transition: color 0.2s ease, transform 0.2s ease;
}

.topic-grid-card h3 a.topictitle:hover,
a.topictitle:hover {
	color: #2563eb !important; /* Vibrant Indigo/Blue on hover */
	text-decoration: none !important;
}

/* Card Container Modern Lift & Shadow */
.topic-grid-card {
	border: 1px solid rgba(226, 232, 240, 0.9) !important;
	border-radius: 16px !important;
	box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02) !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.topic-grid-card:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.12), 0 4px 8px -2px rgba(15, 23, 42, 0.06) !important;
	border-color: rgba(37, 99, 235, 0.3) !important;
}

/* Field Group in Topic Editor */
.bookmark-link-field-group {
	margin-top: 16px;
	margin-bottom: 16px;
	padding: 18px 20px;
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
	transition: all 0.2s ease-in-out;
}

.bookmark-link-field-group:focus-within {
	border-color: #2563eb;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.bookmark-desc-subtext {
	display: block;
	margin-top: 4px;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.45;
}

/* Forum List Action Row */
.bookmark-row-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	margin-bottom: 4px;
}

/* Primary "Letöltés →" Download Button - Vibrant Gradient Pill */
.bookmark-link-badge {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-size: 0.9rem !important; /* 14.5px text */
	font-weight: 700 !important;
	padding: 8px 18px !important;
	border-radius: 9999px !important; /* Pill shape */
	background: linear-gradient(135deg, #ee0b70 0%, #861a81 100%) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 10px rgba(238, 11, 112, 0.3) !important;
	text-decoration: none !important;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.bookmark-link-badge:hover {
	background: linear-gradient(135deg, #ff1a7f 0%, #9d2298 100%) !important;
	color: #ffffff !important;
	transform: translateY(-1.5px) scale(1.02) !important;
	box-shadow: 0 6px 16px rgba(238, 11, 112, 0.45) !important;
}

.bookmark-link-badge svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
	transition: transform 0.2s ease;
}

.bookmark-link-badge:hover svg {
	transform: translateX(2px);
}

/* "Szerkesztés" Admin Button */
.bookmark-edit-badge {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	padding: 7px 14px !important;
	border-radius: 9999px !important;
	background: #f1f5f9 !important;
	color: #475569 !important;
	border: 1px solid #cbd5e1 !important;
	text-decoration: none !important;
	transition: all 0.2s ease !important;
}

.bookmark-edit-badge:hover {
	background: #e2e8f0 !important;
	color: #0f172a !important;
}

/* Description Box - Sleek Summary Card with Accent Bar */
.bookmark-topic-description {
	width: 100%;
	margin-top: 10px;
	padding: 12px 16px;
	font-size: 0.95rem !important; /* 15px summary text */
	font-weight: 450;
	color: #ffffff !important;
	line-height: 1.6;
	background: #000000d6 !important;
	border-left: 4px solid #ee0b70; /* Accent bar matching badge */
	border-radius: 0 10px 10px 0;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
	.topic-grid-card h3,
	.topic-grid-card .topictitle,
	a.topictitle {
		color: #f8fafc !important;
	}
	.topic-grid-card h3 a.topictitle:hover,
	a.topictitle:hover {
		color: #38bdf8 !important;
	}
	.bookmark-topic-description {
		background: #000000d6 !important;
		color: #ffffff !important;
		border-left-color: #ee0b70;
	}
}

/* Topic View Banner Card */
.bookmark-topic-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 24px;
	margin: 16px 0 24px 0;
	background: linear-gradient(135deg, #0f172a, #1e293b);
	border-radius: 14px;
	color: #ffffff;
	box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
}

.bookmark-topic-banner-title {
	font-weight: 800;
	font-size: 1.25em;
	color: #ffffff;
	margin-bottom: 4px;
}

.bookmark-topic-banner-desc {
	font-size: 0.95rem;
	color: #cbd5e1;
	line-height: 1.5;
}

.bookmark-topic-banner-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	background: #ffffff;
	color: #0f172a !important;
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: 8px;
	text-decoration: none !important;
	transition: all 0.2s ease;
}

.bookmark-topic-banner-btn:hover {
	background: #f1f5f9;
	color: #0284c7 !important;
	transform: scale(1.03);
}
