svg {
	font-size: 14px;
	font-weight: 600;
}

.shop {
	display: flex;
	justify-content: center;
	cursor: pointer;
}

.shop .bg {
	border-radius: 8px;
	height: 200px;
	width: 100%;
	background-size: cover;
	background-position: 50%;
}

.shop .bg .price {
	padding: 12px;
	position: absolute;
	background-color: #0044c182;
	border-top-left-radius: 8px;
}

.shop span {
	position: absolute;
	bottom: 0;
	margin-bottom: 8px !important;
	color: #fbff00;
	text-shadow: 1px 1px #506a00;
}

ul.applications,
ul.players,
ul.info,
ul.clans {
	margin-left: 0;
	padding-left: 0;
	margin-bottom: 0;
}

ul.applications li,
ul.players li,
ul.info li,
ul.clans li {
	display: flex;
	align-items: center;
	width: 100%;
	list-style-type: none;
	height: 50px;
	font-size: 12px;
	margin-bottom: 20px;
	border-bottom: 1px solid #2e374a;
}

ul.applications li:last-child,
ul.players li:last-child,
ul.info li:last-child,
ul.clans li:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}

ul.applications li {
	width: 100%;
	height: 40px;
}

ul.applications .btn-sm {
	margin-bottom: 0;
}

ul.applications li .name {
	font-size: 16px;
	width: 40%;
}

ul.applications li .buttons {
	display: flex;
	justify-content: end;
	width: 60%;
}

.clans.more .details img,
ul.players li img,
ul.info li img,
ul.clans li img {
	width: 32px;
	height: 32px;
	margin-right: 8px;
	border-radius: 8px;
}

.clans.more .details p,
ul.players li p,
ul.info li p,
ul.clans li .content p {
	margin-bottom: 0;
}

.clans.more .details span,
ul.players li span,
ul.info li span,
ul.clans li .content span {
	color: #7c7c7c;
	margin-bottom: 0;
}

ul.players li .nickname,
ul.players li .info,
ul.players li .player,
ul.players li .rating,
ul.players li .date-enter {
	display: flex;
	align-items: center;
	width: 25%;
}

ul.clans li .name,
ul.clans li .creator,
ul.clans li .users, 
ul.clans li .rating,
ul.clans li .date-create {
	display: flex;
	align-items: center;
	width: 20%;
}

svg {
	margin-right: 8px;
}

button svg {
	margin-right: 0;
}

.clans.more .cover {
	min-height: 20rem;
	background-position: center;
	margin-bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.clans.more .details {
	display: inline-grid;
	align-items: center;
	width: 100%;
	height: 60px;
	background-color: #161D2C;
	margin-bottom: 15px;
	border-radius: 0 0 8px 8px;
	padding: 16px;
}

.clans.more .details img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.bi.bi-star:hover {
	cursor: pointer;
}

.bi.bi-star.active {
	color: #a04cd5;
}

#list_role .input-group input.form-control {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

#list_role .input-group select.form-control {
	border-radius: 0;
}

.input-group-btn button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.input-group input.form-control[readonly] {
	background-color: #36353e !important;
}

.position-absolute {
    position: absolute!important;
}

.justify-content-end {
    -ms-flex-pack: end!important;
    justify-content: flex-end!important;
}

.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}

.mr-2 {
	margin-right: 0.5rem!important;
}

/* 标题行样式 */
ul.clans li.header-row {
	background: linear-gradient(135deg, #1a2332 0%, #2a1e38 100%);
	border-radius: 8px;
	margin-bottom: 15px;
	height: auto;
	padding: 12px 0;
	font-weight: 600;
	border: 1px solid rgba(160, 76, 213, 0.5);
	box-shadow: 0 4px 12px rgba(160, 76, 213, 0.2);
	position: relative;
	overflow: hidden;
}

ul.clans li.header-row::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #a04cd5, transparent);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

ul.clans li.header-row .content {
	display: flex;
	align-items: center;
}

ul.clans li.header-row .content svg {
	margin-right: 8px;
	color: #a04cd5;
	drop-shadow: 0 0 5px rgba(160, 76, 213, 0.7);
}

ul.clans li.header-row .content p {
	margin-bottom: 0;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 内容行样式优化 */
ul.clans li:not(.header-row) {
	background: linear-gradient(135deg, rgba(22, 29, 44, 0.8) 0%, rgba(26, 35, 50, 0.8) 100%);
	border-radius: 6px;
	padding: 12px 0;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

ul.clans li:not(.header-row):hover {
	background: linear-gradient(135deg, rgba(32, 39, 54, 0.9) 0%, rgba(36, 45, 60, 0.9) 100%);
	border-left: 3px solid #a04cd5;
	box-shadow: 0 4px 12px rgba(160, 76, 213, 0.3);
	transform: translateY(-2px);
}

ul.clans li:not(.header-row) .content {
	display: flex;
	align-items: center;
}

ul.clans li:not(.header-row) .content p {
	margin-bottom: 0;
	font-size: 14px;
	color: #f0f0f0;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 队长名称特殊样式 */
ul.clans li:not(.header-row) .creator .content p {
	color: #e0e0ff;
	font-weight: 600;
	text-shadow: 0 1px 3px rgba(224, 224, 255, 0.3);
}

ul.clans li:not(.header-row) .creator .content p a {
	color: #e0e0ff;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

ul.clans li:not(.header-row) .creator .content p a:hover {
	color: #c8c8ff;
	text-shadow: 0 0 5px rgba(200, 200, 255, 0.5);
}

ul.clans li:not(.header-row) .content span {
	color: #a0a0a0;
	font-size: 12px;
	font-style: italic;
	letter-spacing: 0.3px;
}

ul.clans li:not(.header-row) .creator .content span {
	color: #b8b8ff;
	font-size: 12px;
	font-style: italic;
	letter-spacing: 0.3px;
}

/* 默认图标样式 */
ul.clans li:not(.header-row) svg {
	color: #9b88b4;
	margin-right: 8px;
	opacity: 0.9;
	transition: all 0.3s ease;
}

/* 成员数量图标样式 */
ul.clans li:not(.header-row) .users svg {
	color: #8ae68a;
}

/* 评分图标样式 */
ul.clans li:not(.header-row) .rating svg {
	color: #ffd700;
}

/* 创建日期图标样式 */
ul.clans li:not(.header-row) .date-create svg {
	color: #87ceeb;
}

ul.clans li:not(.header-row):hover svg {
	color: #a04cd5;
	opacity: 1;
	filter: drop-shadow(0 0 3px rgba(160, 76, 213, 0.5));
}

/* 图片样式优化 */
ul.clans li:not(.header-row) img {
	width: 32px;
	height: 32px;
	margin-right: 8px;
	border-radius: 50%;
	border: 2px solid rgba(160, 76, 213, 0.3);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

ul.clans li:not(.header-row):hover img {
	border-color: rgba(160, 76, 213, 0.6);
	box-shadow: 0 0 8px rgba(160, 76, 213, 0.3);
}

/* 战队名称链接样式 */
ul.clans li:not(.header-row) .name .content p a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

ul.clans li:not(.header-row) .name .content p a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #a04cd5, transparent);
	transition: width 0.3s ease;
}

ul.clans li:not(.header-row) .name .content p a:hover::after {
	width: 100%;
}

ul.clans li:not(.header-row) .name .content p a:hover {
	color: #c278e0;
	text-shadow: 0 0 8px rgba(194, 120, 224, 0.7);
}

/* 成员数量数字样式 */
ul.clans li:not(.header-row) .users .content p {
	color: #8ae68a;
	font-weight: 600;
	text-shadow: 0 1px 3px rgba(138, 230, 138, 0.4);
}

/* 评分数字样式 */
ul.clans li:not(.header-row) .rating .content p {
	color: #ffd700;
	font-weight: 600;
	text-shadow: 0 1px 3px rgba(255, 215, 0, 0.4);
}

/* 创建日期数字样式 */
ul.clans li:not(.header-row) .date-create .content p {
	color: #87ceeb;
	font-weight: 500;
	text-shadow: 0 1px 3px rgba(135, 206, 235, 0.4);
}
}