/* --- 基础滚动条与工具类 --- */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: #2f3136;
}

::-webkit-scrollbar-thumb {
	background: #202225;
	border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
	background: #18191c;
}

/* --- 排序下拉框样式 --- */
.sort-select-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #2f3136;
	padding: 6px 10px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease;
}

.sort-select-wrapper:hover {
	border-color: rgba(255, 255, 255, 0.15);
	background: #36393f;
}

.sort-select-wrapper:focus-within {
	border-color: #5865F2;
	box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.25);
}

.sort-select {
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	border: none;
	color: #dcddde;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	padding-right: 20px;
	min-width: 70px;
}

.sort-select:focus {
	outline: none;
}

.sort-select option {
	background: #2f3136;
	color: #dcddde;
	padding: 10px;
	font-size: 13px;
}

.sort-select option:hover,
.sort-select option:checked {
	background: #5865F2;
	color: white;
}

.sort-select-arrow {
	position: absolute;
	right: 8px;
	font-size: 18px;
	color: #72767d;
	pointer-events: none;
	transition: transform 0.2s ease;
}

.sort-select-wrapper:focus-within .sort-select-arrow {
	color: #5865F2;
	transform: rotate(180deg);
}

/* --- Banner 轮播样式 --- */
.banner-section {
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-container {
	position: relative;
	width: 100%;
	height: 200px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

@media (min-width: 768px) {
	.banner-container {
		height: 280px;
	}
}

@media (min-width: 1200px) {
	.banner-container {
		height: 360px;
	}
}

.banner-slides-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.banner-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-slide.active {
	opacity: 1;
}

/* 模糊背景层 */
.banner-blur-bg {
	position: absolute;
	inset: -20px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(30px) brightness(0.5) saturate(1.2);
	transform: scale(1.1);
	z-index: 0;
}

/* 清晰的16:9图片层 */
.banner-slide img {
	position: relative;
	z-index: 1;
	height: 100%;
	width: auto;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* Banner 信息遮罩层 */
.banner-overlay {
	z-index: 5;
}

/* Banner 跳转按钮区域需要可点击 */
.banner-links {
	pointer-events: auto;
}

/* Banner 导航按钮 */
.banner-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.2s ease;
	z-index: 10;
	backdrop-filter: blur(4px);
}

.banner-nav-btn:hover {
	background: rgba(88, 101, 242, 0.8);
}

.banner-prev {
	left: 12px;
}

.banner-next {
	right: 12px;
}

.banner-container:hover .banner-nav-btn {
	opacity: 1;
}

/* Banner 指示点 */
.banner-dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.banner-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 0;
}

.banner-dot.active {
	background: #5865F2;
	width: 20px;
	border-radius: 4px;
}

.banner-dot:hover:not(.active) {
	background: rgba(255, 255, 255, 0.7);
}

/* Banner 折叠按钮 */
.banner-collapse-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.2s ease;
	z-index: 10;
	backdrop-filter: blur(4px);
}

.banner-collapse-btn:hover {
	background: rgba(88, 101, 242, 0.8);
}

.banner-container:hover .banner-collapse-btn {
	opacity: 1;
}

/* Banner 申请按钮 */
.banner-apply-btn {
	position: absolute;
	top: 12px;
	right: 52px;
	height: 32px;
	padding: 0 12px;
	border-radius: 16px;
	background: rgba(88, 101, 242, 0.9);
	border: none;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 500;
	opacity: 0;
	transition: all 0.2s ease;
	z-index: 10;
	backdrop-filter: blur(4px);
}

.banner-apply-btn .material-symbols-outlined {
	font-size: 16px;
}

.banner-apply-btn:hover {
	background: #4752c4;
	transform: scale(1.05);
}

.banner-container:hover .banner-apply-btn {
	opacity: 1;
}

@media (max-width: 767px) {
	.banner-apply-text {
		display: none;
	}
	.banner-apply-btn {
		width: 32px;
		padding: 0;
		right: 52px;
	}
}

/* Banner 折叠状态 */
.banner-collapsed-bar {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 16px;
	background: #202225;
	border-radius: 8px;
	color: #72767d;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 12px;
}

.banner-collapsed-bar:hover {
	background: #2f3136;
	color: white;
}

.banner-section.collapsed .banner-container {
	display: none;
}

.banner-section.collapsed .banner-collapsed-bar {
	display: flex;
}

/* --- 侧边栏迷你 Banner (悬浮可拖动) --- */
.sidebar-banner {
	position: fixed;
	right: 20px;
	top: 80px;
	width: 280px;
	z-index: 35;
	opacity: 0;
	transform: translateX(100%) scale(0.9);
	transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.sidebar-banner.visible {
	opacity: 1;
	transform: translateX(0) scale(1);
	pointer-events: auto;
}

/* 拖动时禁用过渡动画 */
.sidebar-banner.dragging {
	transition: none;
	cursor: grabbing;
}

.sidebar-banner-container {
	background: #202225;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 拖动手柄区域 */
.sidebar-banner-drag-handle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 0;
	cursor: grab;
	background: linear-gradient(to bottom, #2f3136, #202225);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-banner-drag-handle:active {
	cursor: grabbing;
}

.sidebar-banner-drag-handle::before {
	content: '';
	width: 40px;
	height: 4px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	transition: background 0.2s ease;
}

.sidebar-banner-drag-handle:hover::before {
	background: rgba(255, 255, 255, 0.4);
}

.sidebar-banner-slides {
	width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
	overflow: hidden;
}

.sidebar-banner-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.sidebar-banner-slide.active {
	opacity: 1;
}

.sidebar-banner-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sidebar-banner-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px;
	background: linear-gradient(to top, #18191c, #202225);
}

.sidebar-banner-title {
	font-size: 12px;
	font-weight: 600;
	color: white;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	margin-right: 8px;
}

.sidebar-banner-actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

.sidebar-banner-link-btn {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(88, 101, 242, 0.3);
	border: none;
	color: #5865F2;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.sidebar-banner-link-btn:hover {
	background: rgba(88, 101, 242, 0.5);
	color: white;
}

.sidebar-banner-link-btn .material-symbols-outlined {
	font-size: 14px;
}

.sidebar-banner-close-btn {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #72767d;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.sidebar-banner-close-btn:hover {
	background: rgba(237, 66, 69, 0.3);
	color: #ed4245;
}

.sidebar-banner-close-btn .material-symbols-outlined {
	font-size: 16px;
}

/* 关闭动画 */
.sidebar-banner.closing {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.2s ease;
}

/* 移动端隐藏侧边栏 Banner */
@media (max-width: 767px) {
	.sidebar-banner {
		display: none !important;
	}
}

/* --- Banner 申请模态框 --- */
.banner-application-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.banner-application-modal.active {
	opacity: 1;
}

.banner-application-modal.hidden {
	display: none;
}

.banner-application-content {
	width: 90%;
	max-width: 480px;
	background: #2f3136;
	border-radius: 12px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transform: scale(0.9) translateY(20px);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.banner-application-modal.active .banner-application-content {
	transform: scale(1) translateY(0);
}

.banner-application-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-application-header button {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.banner-application-header button:hover {
	background: rgba(237, 66, 69, 0.3);
}

.banner-rules-notice {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px 20px;
	background: rgba(88, 101, 242, 0.1);
	border-bottom: 1px solid rgba(88, 101, 242, 0.2);
	color: #b5bac1;
	font-size: 13px;
}

.banner-rules-notice .material-symbols-outlined {
	font-size: 16px;
	color: #5865F2;
}

.banner-rules-notice .rules-link {
	color: #5865F2;
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: all 0.2s ease;
}

.banner-rules-notice .rules-link:hover {
	color: #7289DA;
	text-decoration: underline;
}

.banner-rules-notice .rules-link .material-symbols-outlined {
	font-size: 12px;
}

.banner-application-form {
	padding: 20px;
}

.form-group {
	margin-bottom: 16px;
}

.form-group label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #b9bbbe;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-group label .material-symbols-outlined {
	color: #5865F2;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px 14px;
	background: #202225;
	border: 1px solid #40444b;
	border-radius: 8px;
	color: white;
	font-size: 14px;
	transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: #5865F2;
	box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
}

.form-group input::placeholder {
	color: #72767d;
}

.form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2372767d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 40px;
}

.form-hint {
	display: block;
	font-size: 11px;
	color: #72767d;
	margin-top: 6px;
}

.form-error {
	background: rgba(237, 66, 69, 0.15);
	border: 1px solid #ed4245;
	border-radius: 8px;
	padding: 12px;
	color: #ed4245;
	font-size: 13px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.form-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cancel {
	padding: 10px 20px;
	background: transparent;
	border: 1px solid #40444b;
	border-radius: 8px;
	color: #b9bbbe;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-cancel:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: #72767d;
}

.btn-submit {
	padding: 10px 20px;
	background: #5865F2;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
}

.btn-submit:hover:not(:disabled) {
	background: #4752c4;
}

.btn-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.btn-submit .material-symbols-outlined {
	font-size: 18px;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-8 {
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-none {
	-webkit-line-clamp: unset !important;
	display: block !important;
}

/* 标签样式 */
.tag-pill {
	transition: all 0.2s ease;
}

.tag-include {
	background-color: rgba(59, 165, 92, 0.2);
	border-color: #3ba55c;
	color: #3ba55c;
}

.tag-exclude {
	background-color: rgba(237, 66, 69, 0.2);
	border-color: #ed4245;
	color: #ed4245;
}

/* Markdown 样式优化 */
.md-content {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #dcddde;
}

.md-content h1,
.md-content h2,
.md-content h3 {
	font-weight: 700;
	color: white;
	margin: 0.5em 0 0.3em;
}

.md-content h1 {
	font-size: 1.2em;
	border-bottom: 1px solid #4f545c;
	padding-bottom: 4px;
}

.md-content strong {
	color: white;
	font-weight: 700;
}

.md-content em {
	color: #b9bbbe;
}

.md-content code {
	background: #2f3136;
	padding: 2px 4px;
	border-radius: 3px;
	font-family: monospace;
	font-size: 0.85em;
	color: #eee;
	border: 1px solid #202225;
}

.md-content pre {
	background: #2f3136;
	padding: 10px;
	border-radius: 6px;
	overflow-x: auto;
	margin: 8px 0;
	border: 1px solid #202225;
}

.md-content blockquote {
	border-left: 4px solid #5865F2;
	padding-left: 10px;
	color: #a3a6aa;
	background: rgba(88, 101, 242, 0.1);
	padding-top: 2px;
	padding-bottom: 2px;
	margin: 4px 0;
	border-radius: 0 4px 4px 0;
}

.md-content a {
	color: #00b0f4;
	text-decoration: none;
}

.md-content a:hover {
	text-decoration: underline;
}

.md-content ul {
	list-style-type: disc;
	padding-left: 20px;
}

/* --- 核心动画与卡片交互逻辑 --- */

/* 卡片占位符 (保持 Grid 布局稳定) */
.card-wrapper {
	position: relative;
	/* 让 Grid 自动统一同一行卡片高度 */
	height: 100%;
	min-height: 20rem;
	z-index: var(--stack-index, 1);
	transition: z-index 0s linear 0.3s;
	/* 延迟降低 z-index 防止穿模 */
}

/* 卡片内部实体 */
.card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #202225;
	border-radius: 0.75rem;
	border: 1px solid #2f3136;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform-origin: center center;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	/* 丝滑过渡 */
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* 图片容器 - 默认16:9比例 */
.card-image-container {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: #18191c;
	position: relative;
	transition: aspect-ratio 0.3s ease, height 0.3s ease;
	flex-shrink: 0;
	/* 移动端限制最大高度，防止图片过大挤压内容 */
	max-height: 50vw;
}

@media (min-width: 768px) {
	.card-image-container {
		max-height: unset;
	}
}

.card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: object-fit 0.3s, opacity 0.3s;
}

/* --- 多图智能排版 --- */
.card-img-default {
	width: 100%;
	height: 100%;
	position: relative;
}

.card-img-hover {
	display: none;
	width: 100%;
	height: 100%;
}

.single-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 多图网格布局 */
.multi-img-grid {
	width: 100%;
	height: 100%;
	display: grid;
	gap: 2px;
	background: #18191c;
}

.multi-img-grid .img-cell {
	position: relative;
	overflow: hidden;
	background: #2f3136;
}

.multi-img-grid .img-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.multi-img-grid .img-cell:hover img {
	transform: scale(1.05);
}

/* 2图布局：左右各半 */
.multi-img-grid.grid-2 {
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
}

/* 3图布局：左大右二 */
.multi-img-grid.grid-3 {
	grid-template-columns: 1.5fr 1fr;
	grid-template-rows: 1fr 1fr;
}

.multi-img-grid.grid-3 .img-main {
	grid-row: 1 / -1;
}

/* 4图布局：2x2网格 */
.multi-img-grid.grid-4 {
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}

/* 更多图片遮罩 */
.multi-img-grid .img-cell.has-more::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.multi-img-grid .more-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: white;
	z-index: 1;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- 轮播组件 --- */
.carousel {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	background: #000;
}

.carousel-track {
	width: 100%;
	height: 100%;
	position: relative;
}

.carousel-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.carousel-slide.active {
	opacity: 1;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.carousel-single {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 轮播按钮 */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	border: none;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.2s ease;
	z-index: 10;
	backdrop-filter: blur(4px);
}

.carousel-btn:hover {
	background: rgba(88, 101, 242, 0.8);
}

.carousel-btn .material-symbols-outlined {
	font-size: 20px;
}

.carousel-prev {
	left: 8px;
}

.carousel-next {
	right: 8px;
}

.carousel:hover .carousel-btn {
	opacity: 1;
}

/* 轮播指示点 */
.carousel-dots {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 10;
}

.carousel-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 0;
}

.carousel-dot.active {
	background: #5865F2;
	width: 16px;
	border-radius: 3px;
}

.carousel-dot:hover:not(.active) {
	background: rgba(255, 255, 255, 0.7);
}

/* 轮播计数器 */
.carousel-counter {
	position: absolute;
	top: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 10px;
	z-index: 10;
	backdrop-filter: blur(4px);
}

/* --- 桌面端卡片样式 (移除悬停展开，改为点击弹窗) --- */
@media (min-width: 768px) {
	/* 桌面端卡片悬停时只有简单的高亮效果，不再扩展 */
	.card-wrapper:hover .card-inner {
		border-color: #5865F2;
		box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.4);
	}

	/* 桌面端隐藏 desktop-actions，因为改用弹窗 */
	.desktop-actions {
		display: none !important;
	}
}

/* --- 详情弹窗 (移动端和桌面端通用) --- */
.detail-overlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.detail-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

/* 详情弹窗卡片样式 */
.detail-expanded-card {
	width: 90vw;
	max-width: 600px;
	height: 85vh;
	max-height: 800px;
	background: #202225;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
	transform: scale(0.9);
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	/* 弹性弹出 */
	border: 1px solid #40444b;
}

.detail-overlay.active .detail-expanded-card {
	transform: scale(1);
	opacity: 1;
}

/* 详情弹窗：图片区域 */
.detail-expanded-card .card-image-container {
	height: 45%;
	/* 占据近一半高度 */
	background: #000;
}

.detail-expanded-card .card-img {
	object-fit: contain;
}

.detail-expanded-card .content-scroll-area {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
}

/* 详情弹窗轮播容器 */
.detail-carousel-container {
	height: 45%;
}

.detail-carousel-container .carousel {
	height: 100%;
}

.detail-carousel-container .carousel-btn {
	opacity: 1;
	width: 36px;
	height: 36px;
}

.detail-carousel-container .carousel-btn .material-symbols-outlined {
	font-size: 24px;
}

.detail-carousel-container .carousel-dots {
	bottom: 12px;
}

.detail-carousel-container .carousel-dot {
	width: 8px;
	height: 8px;
}

.detail-carousel-container .carousel-dot.active {
	width: 20px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Fab Button */
.fab-download {
	animation: bounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

@keyframes bounceIn {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

*,
::before,
::after {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position: ;
	--tw-gradient-via-position: ;
	--tw-gradient-to-position: ;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia: ;
	--tw-contain-size: ;
	--tw-contain-layout: ;
	--tw-contain-paint: ;
	--tw-contain-style:
}

::backdrop {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position: ;
	--tw-gradient-via-position: ;
	--tw-gradient-to-position: ;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia: ;
	--tw-contain-size: ;
	--tw-contain-layout: ;
	--tw-contain-paint: ;
	--tw-contain-style:
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
*,
::after,
::before {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: #e5e7eb
}

::after,
::before {
	--tw-content: ''
}

:host,
html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-moz-tab-size: 4;
	tab-size: 4;
	font-family: Inter, sans-serif;
	font-feature-settings: normal;
	font-variation-settings: normal;
	-webkit-tap-highlight-color: transparent
}

body {
	margin: 0;
	line-height: inherit
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px
}

abbr:where([title]) {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit
}

a {
	color: inherit;
	text-decoration: inherit
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
pre,
samp {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-feature-settings: normal;
	font-variation-settings: normal;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-feature-settings: inherit;
	font-variation-settings: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
	margin: 0;
	padding: 0
}

button,
select {
	text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none
}

:-moz-focusring {
	outline: auto
}

:-moz-ui-invalid {
	box-shadow: none
}

progress {
	vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

summary {
	display: list-item
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
	margin: 0
}

fieldset {
	margin: 0;
	padding: 0
}

legend {
	padding: 0
}

menu,
ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0
}

dialog {
	padding: 0
}

textarea {
	resize: vertical
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: #9ca3af
}

[role=button],
button {
	cursor: pointer
}

:disabled {
	cursor: default
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
	display: block;
	vertical-align: middle
}

img,
video {
	max-width: 100%;
	height: auto
}

[hidden]:where(:not([hidden=until-found])) {
	display: none
}

.pointer-events-none {
	pointer-events: none
}

.fixed {
	position: fixed
}

.absolute {
	position: absolute
}

.relative {
	position: relative
}

.inset-0 {
	inset: 0px
}

.inset-y-0 {
	top: 0px;
	bottom: 0px
}

.bottom-0 {
	bottom: 0px
}

.bottom-6 {
	bottom: 1.5rem
}

.left-0 {
	left: 0px
}

.left-3 {
	left: 0.75rem
}

.right-2 {
	right: 0.5rem
}

.right-6 {
	right: 1.5rem
}

.top-2 {
	top: 0.5rem
}

.z-20 {
	z-index: 20
}

.z-30 {
	z-index: 30
}

.z-40 {
	z-index: 40
}

.z-\[40\] {
	z-index: 40
}

.col-span-full {
	grid-column: 1 / -1
}

.mx-1 {
	margin-left: 0.25rem;
	margin-right: 0.25rem
}

.-ml-2 {
	margin-left: -0.5rem
}

.mb-1 {
	margin-bottom: 0.25rem
}

.mb-2 {
	margin-bottom: 0.5rem
}

.mb-3 {
	margin-bottom: 0.75rem
}

.mb-4 {
	margin-bottom: 1rem
}

.mb-6 {
	margin-bottom: 1.5rem
}

.mt-12 {
	margin-top: 3rem
}

.mt-6 {
	margin-top: 1.5rem
}

.mt-8 {
	margin-top: 2rem
}

.mt-3 {
	margin-top: 0.75rem
}

.mt-auto {
	margin-top: auto
}

.line-clamp-1 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1
}

.line-clamp-2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2
}

.line-clamp-3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3
}

.flex {
	display: flex
}

.grid {
	display: grid
}

.hidden {
	display: none
}

.h-10 {
	height: 2.5rem
}

.h-12 {
	height: 3rem
}

.h-2\/3 {
	height: 66.666667%
}

.h-4 {
	height: 1rem
}

.h-40 {
	height: 10rem
}

.h-full {
	height: 100%
}

.h-screen {
	height: 100vh
}

.max-h-24 {
	max-height: 6rem
}

.min-h-0 {
	min-height: 0px
}

.w-10 {
	width: 2.5rem
}

.w-12 {
	width: 3rem
}

.w-20 {
	width: 5rem
}

.w-72 {
	width: 18rem
}

.w-\[1px\] {
	width: 1px
}

.w-full {
	width: 100%
}

.w-4 {
	width: 1rem
}

.min-w-0 {
	min-width: 0px
}

.max-w-\[60px\] {
	max-width: 60px
}

.flex-1 {
	flex: 1 1 0%
}

.flex-shrink-0 {
	flex-shrink: 0
}

.-translate-x-full {
	--tw-translate-x: -100%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform {
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes spin {
	to {
		transform: rotate(360deg)
	}
}

.animate-spin {
	animation: spin 1s linear infinite
}

.cursor-pointer {
	cursor: pointer
}

.appearance-none {
	-webkit-appearance: none;
	appearance: none
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr))
}

.flex-col {
	flex-direction: column
}

.flex-wrap {
	flex-wrap: wrap
}

.items-center {
	align-items: center
}

.justify-end {
	justify-content: flex-end
}

.justify-center {
	justify-content: center
}

.justify-between {
	justify-content: space-between
}

.gap-1 {
	gap: 0.25rem
}

.gap-2 {
	gap: 0.5rem
}

.gap-3 {
	gap: 0.75rem
}

.gap-4 {
	gap: 1rem
}

.gap-0\.5 {
	gap: 0.125rem
}

.space-y-1> :not([hidden])~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(0.25rem * var(--tw-space-y-reverse))
}

.overflow-hidden {
	overflow: hidden
}

.overflow-x-auto {
	overflow-x: auto
}

.overflow-y-auto {
	overflow-y: auto
}

.scroll-smooth {
	scroll-behavior: smooth
}

.truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.rounded {
	border-radius: 0.25rem
}

.rounded-full {
	border-radius: 9999px
}

.rounded-lg {
	border-radius: 0.5rem
}

.rounded-xl {
	border-radius: 0.75rem
}

.border {
	border-width: 1px
}

.border-b {
	border-bottom-width: 1px
}

.border-b-2 {
	border-bottom-width: 2px
}

.border-r {
	border-right-width: 1px
}

.border-t {
	border-top-width: 1px
}

.border-t-2 {
	border-top-width: 2px
}

.border-black\/10 {
	border-color: rgb(0 0 0 / 0.1)
}

.border-discord-green {
	--tw-border-opacity: 1;
	border-color: rgb(59 165 92 / var(--tw-border-opacity, 1))
}

.border-discord-primary {
	--tw-border-opacity: 1;
	border-color: rgb(88 101 242 / var(--tw-border-opacity, 1))
}

.border-transparent {
	border-color: transparent
}

.border-white\/5 {
	border-color: rgb(255 255 255 / 0.05)
}

.border-white\/10 {
	border-color: rgb(255 255 255 / 0.1)
}

.bg-black\/70 {
	background-color: rgb(0 0 0 / 0.7)
}

.bg-discord-bg {
	--tw-bg-opacity: 1;
	background-color: rgb(54 57 63 / var(--tw-bg-opacity, 1))
}

.bg-discord-element {
	--tw-bg-opacity: 1;
	background-color: rgb(32 34 37 / var(--tw-bg-opacity, 1))
}

.bg-discord-green {
	--tw-bg-opacity: 1;
	background-color: rgb(59 165 92 / var(--tw-bg-opacity, 1))
}

.bg-discord-green\/20 {
	background-color: rgb(59 165 92 / 0.2)
}

.bg-discord-primary {
	--tw-bg-opacity: 1;
	background-color: rgb(88 101 242 / var(--tw-bg-opacity, 1))
}

.bg-discord-red {
	--tw-bg-opacity: 1;
	background-color: rgb(237 66 69 / var(--tw-bg-opacity, 1))
}

.bg-discord-sidebar {
	--tw-bg-opacity: 1;
	background-color: rgb(47 49 54 / var(--tw-bg-opacity, 1))
}

.bg-transparent {
	background-color: transparent
}

.bg-white\/10 {
	background-color: rgb(255 255 255 / 0.1)
}

.bg-\[\#202225\] {
	--tw-bg-opacity: 1;
	background-color: rgb(32 34 37 / var(--tw-bg-opacity, 1))
}

.bg-gradient-to-t {
	background-image: linear-gradient(to top, var(--tw-gradient-stops))
}

.from-discord-dark {
	--tw-gradient-from: #18191c var(--tw-gradient-from-position);
	--tw-gradient-to: rgb(24 25 28 / 0) var(--tw-gradient-to-position);
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.via-discord-dark\/60 {
	--tw-gradient-to: rgb(24 25 28 / 0) var(--tw-gradient-to-position);
	--tw-gradient-stops: var(--tw-gradient-from), rgb(24 25 28 / 0.6) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.to-transparent {
	--tw-gradient-to: transparent var(--tw-gradient-to-position)
}

.object-cover {
	object-fit: cover
}

.p-1\.5 {
	padding: 0.375rem
}

.p-2 {
	padding: 0.5rem
}

.p-3 {
	padding: 0.75rem
}

.p-4 {
	padding: 1rem
}

.px-1\.5 {
	padding-left: 0.375rem;
	padding-right: 0.375rem
}

.px-2 {
	padding-left: 0.5rem;
	padding-right: 0.5rem
}

.px-3 {
	padding-left: 0.75rem;
	padding-right: 0.75rem
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem
}

.px-8 {
	padding-left: 2rem;
	padding-right: 2rem
}

.py-0\.5 {
	padding-top: 0.125rem;
	padding-bottom: 0.125rem
}

.py-1\.5 {
	padding-top: 0.375rem;
	padding-bottom: 0.375rem
}

.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem
}

.py-2\.5 {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem
}

.py-1 {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem
}

.pb-1 {
	padding-bottom: 0.25rem
}

.pb-10 {
	padding-bottom: 2.5rem
}

.pb-20 {
	padding-bottom: 5rem
}

.pb-4 {
	padding-bottom: 1rem
}

.pl-10 {
	padding-left: 2.5rem
}

.pr-2 {
	padding-right: 0.5rem
}

.pt-2 {
	padding-top: 0.5rem
}

.pt-3 {
	padding-top: 0.75rem
}

.text-left {
	text-align: left
}

.text-center {
	text-align: center
}

.font-sans {
	font-family: Inter, sans-serif
}

.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem
}

.text-\[14px\] {
	font-size: 14px
}

.text-\[16px\] {
	font-size: 16px
}

.text-\[18px\] {
	font-size: 18px
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem
}

.text-xs {
	font-size: 0.75rem;
	line-height: 1rem
}

.text-5xl {
	font-size: 3rem;
	line-height: 1
}

.text-\[10px\] {
	font-size: 10px
}

.text-\[12px\] {
	font-size: 12px
}

.font-bold {
	font-weight: 700
}

.font-medium {
	font-weight: 500
}

.font-semibold {
	font-weight: 600
}

.uppercase {
	text-transform: uppercase
}

.leading-tight {
	line-height: 1.25
}

.text-discord-green {
	--tw-text-opacity: 1;
	color: rgb(59 165 92 / var(--tw-text-opacity, 1))
}

.text-discord-muted {
	--tw-text-opacity: 1;
	color: rgb(114 118 125 / var(--tw-text-opacity, 1))
}

.text-discord-primary {
	--tw-text-opacity: 1;
	color: rgb(88 101 242 / var(--tw-text-opacity, 1))
}

.text-discord-text {
	--tw-text-opacity: 1;
	color: rgb(220 221 222 / var(--tw-text-opacity, 1))
}

.text-gray-300 {
	--tw-text-opacity: 1;
	color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}

.text-gray-400 {
	--tw-text-opacity: 1;
	color: rgb(156 163 175 / var(--tw-text-opacity, 1))
}

.text-white {
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.text-yellow-400 {
	--tw-text-opacity: 1;
	color: rgb(250 204 21 / var(--tw-text-opacity, 1))
}

.placeholder-discord-muted::placeholder {
	--tw-placeholder-opacity: 1;
	color: rgb(114 118 125 / var(--tw-placeholder-opacity, 1))
}

.opacity-0 {
	opacity: 0
}

.opacity-50 {
	opacity: 0.5
}

.opacity-80 {
	opacity: 0.8
}

.shadow-2xl {
	--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
	--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-lg {
	--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-md {
	--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-sm {
	--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-xl {
	--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.drop-shadow-md {
	--tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms
}

.transition-colors {
	transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms
}

.transition-opacity {
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms
}

.transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms
}

.duration-300 {
	transition-duration: 300ms
}

.ease-in-out {
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}

.hover\:scale-110:hover {
	--tw-scale-x: 1.1;
	--tw-scale-y: 1.1;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:border-discord-red:hover {
	--tw-border-opacity: 1;
	border-color: rgb(237 66 69 / var(--tw-border-opacity, 1))
}

.hover\:border-gray-500:hover {
	--tw-border-opacity: 1;
	border-color: rgb(107 114 128 / var(--tw-border-opacity, 1))
}

.hover\:bg-discord-element:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(32 34 37 / var(--tw-bg-opacity, 1))
}

.hover\:bg-discord-hover:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(71 82 196 / var(--tw-bg-opacity, 1))
}

.hover\:bg-discord-sidebar:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(47 49 54 / var(--tw-bg-opacity, 1))
}

.hover\:bg-green-600:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1))
}

.hover\:bg-white\/10:hover {
	background-color: rgb(255 255 255 / 0.1)
}

.hover\:bg-gray-700:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1))
}

.hover\:text-discord-red:hover {
	--tw-text-opacity: 1;
	color: rgb(237 66 69 / var(--tw-text-opacity, 1))
}

.hover\:text-white:hover {
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.focus\:outline-none:focus {
	outline: 2px solid transparent;
	outline-offset: 2px
}

.focus\:ring-2:focus {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.focus\:ring-discord-primary:focus {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgb(88 101 242 / var(--tw-ring-opacity, 1))
}

.active\:scale-95:active {
	--tw-scale-x: .95;
	--tw-scale-y: .95;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.disabled\:opacity-50:disabled {
	opacity: 0.5
}

.group:hover .group-hover\:text-discord-primary {
	--tw-text-opacity: 1;
	color: rgb(88 101 242 / var(--tw-text-opacity, 1))
}

@media (min-width: 768px) {
	.md\:static {
		position: static
	}

	.md\:hidden {
		display: none
	}

	.md\:h-14 {
		height: 3.5rem
	}

	.md\:h-64 {
		height: 16rem
	}

	.md\:w-14 {
		width: 3.5rem
	}

	.md\:w-64 {
		width: 16rem
	}

	.md\:w-auto {
		width: auto
	}

	.md\:flex-shrink-0 {
		flex-shrink: 0
	}

	.md\:translate-x-0 {
		--tw-translate-x: 0px;
		transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
	}

	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}

	.md\:gap-6 {
		gap: 1.5rem
	}

	.md\:p-4 {
		padding: 1rem
	}

	.md\:p-6 {
		padding: 1.5rem
	}

	.md\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem
	}

	.md\:text-sm {
		font-size: 0.875rem;
		line-height: 1.25rem
	}

	.md\:text-base {
		font-size: 1rem;
		line-height: 1.5rem
	}

	.md\:shadow-none {
		--tw-shadow: 0 0 #0000;
		--tw-shadow-colored: 0 0 #0000;
		box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
	}
}

@media (min-width: 1024px) {
	.lg\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr))
	}
}

@media (min-width: 1280px) {
	.xl\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr))
	}
}