/* ============================================
   БАННЕР СИСТЕМЫ ВЫПЛАТ ДЛЯ МОДУЛЯ APPADMIN
   ============================================ */

/* ========== ИНФОРМАЦИОННЫЙ БЛОК ========== */
.info-banner-dark {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
	border: 1px solid rgba(102, 126, 234, 0.3);
	border-radius: 16px;
	padding: 28px 32px;
	margin-bottom: 35px;
	position: relative;
	overflow: hidden;
}

.info-banner-dark::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.info-banner-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.info-banner-main {
	display: flex;
	gap: 20px;
	flex: 1;
	min-width: 300px;
}

.info-banner-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.info-banner-icon i {
	font-size: 24px;
	color: #ffffff;
}

.info-banner-text {
	flex: 1;
}

.info-banner-title {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 8px 0;
}

.info-banner-description {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.6;
	margin: 0 0 16px 0;
}

.info-banner-roles {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
	padding: 12px 16px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-role {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.info-role i {
	font-size: 12px;
}

.role-helper {
	background: rgba(149, 165, 166, 0.3);
	color: #bdc3c7;
	border: 1px solid rgba(149, 165, 166, 0.4);
}

.role-moderator {
	background: rgba(52, 152, 219, 0.3);
	color: #5dade2;
	border: 1px solid rgba(52, 152, 219, 0.4);
}

.role-admin {
	background: rgba(155, 89, 182, 0.3);
	color: #bb8fce;
	border: 1px solid rgba(155, 89, 182, 0.4);
}

.role-head-admin {
	background: linear-gradient(135deg, rgba(241, 196, 15, 0.3) 0%, rgba(243, 156, 18, 0.3) 100%);
	color: #f1c40f;
	border: 1px solid rgba(241, 196, 15, 0.5);
	box-shadow: 0 0 12px rgba(241, 196, 15, 0.2);
}

.role-arrow {
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
}

.info-banner-features {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.info-feature {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.06);
	padding: 5px 10px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-feature i {
	color: #667eea;
	font-size: 11px;
}

.info-banner-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-cta-text {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.info-cta-text i {
	color: #f093fb;
	font-size: 18px;
}

.info-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 28px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.info-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
	color: #ffffff;
	text-decoration: none;
}

.info-cta-button i {
	font-size: 16px;
}

@media (max-width: 900px) {
	.info-banner-content {
		flex-direction: column;
		align-items: stretch;
	}
	
	.info-banner-cta {
		flex-direction: row;
		justify-content: space-between;
	}
}

@media (max-width: 600px) {
	.info-banner-dark {
		padding: 20px;
	}
	
	.info-banner-main {
		flex-direction: column;
		text-align: center;
		min-width: auto;
	}
	
	.info-banner-icon {
		margin: 0 auto;
	}
	
	.info-banner-roles {
		justify-content: center;
	}
	
	.role-arrow {
		display: none;
	}
	
	.info-role {
		font-size: 11px;
		padding: 5px 10px;
	}
	
	.info-banner-features {
		justify-content: center;
	}
	
	.info-banner-cta {
		flex-direction: column;
	}
	
	.info-cta-button {
		width: 100%;
		justify-content: center;
	}
}

