﻿.we-profile-guild {
	max-width: 880px;
	margin: 0 auto 30px;
	padding: 24px;
	background: rgba(10, 18, 28, 0.94);
	border: 1px solid rgba(65, 215, 240, 0.3);
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(65, 215, 240, 0.15);
}

.we-guild-header {
	display: flex;
	align-items: center;
	gap: 22px;
	padding-bottom: 20px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.we-guild-logo {
	width: 150px;
	min-width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	box-shadow: inset 0 0 18px rgba(65, 215, 240, 0.12);
}

.we-guild-logo img {
	max-width: 120px;
	max-height: 120px;
	object-fit: contain;
}

.we-guild-title {
	flex: 1;
	min-width: 0;
}

.we-guild-title h2 {
	margin: 0 0 8px;
	color: #ffffff;
	font-family: 'Poppins', 'Inter', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1;
}

.we-guild-title span {
	color: var(--we-primary-light);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.we-guild-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 22px;
}

.we-guild-stat {
	padding: 14px;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
}

.we-guild-stat span {
	display: block;
	margin-bottom: 6px;
	color: var(--we-text-muted);
	font-size: 12px;
	font-weight: 600;
}

.we-guild-stat strong {
	display: block;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	word-break: break-word;
}

.we-guild-members {
	padding-top: 4px;
}

.we-guild-members h3 {
	margin: 0 0 14px;
	color: #ffffff;
	font-family: 'Poppins', 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 700;
}

.we-guild-members-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.we-guild-member {
	padding: 9px 10px;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.we-guild-member a {
	color: var(--we-text) !important;
	text-decoration: none !important;
}

.we-guild-member a:hover {
	color: var(--we-primary-light) !important;
}

@media (max-width: 768px) {
	.we-guild-header {
		flex-direction: column;
		text-align: center;
	}

	.we-guild-stats {
		grid-template-columns: 1fr;
	}

	.we-guild-members-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 420px) {
	.we-guild-members-list {
		grid-template-columns: 1fr;
	}
}
/* BEGIN MuLycan final palette override */
/* MuLycan final palette - dark blue/red */
:root,
html body {
	--we-bg: #071019 !important;
	--we-bg-elevated: #111d28 !important;
	--we-bg-glass: rgba(12, 24, 36, 0.88) !important;
	--we-border: rgba(65, 215, 240, 0.16) !important;
	--we-border-glow: rgba(65, 215, 240, 0.48) !important;
	--we-text: #e8f8fc !important;
	--we-text-muted: rgba(232, 248, 252, 0.72) !important;
	--we-text-dim: rgba(232, 248, 252, 0.48) !important;
	--we-primary: #41d7f0 !important;
	--we-primary-light: #8fefff !important;
	--we-primary-dark: #1677cc !important;
	--we-accent: #bf3b4a !important;
	--we-danger: #bf3b4a !important;
	--we-warning: #bf3b4a !important;
	--we-glow: 0 0 26px rgba(65, 215, 240, 0.46), 0 0 46px rgba(191, 59, 74, 0.16) !important;
	--we-glow-sm: 0 0 13px rgba(65, 215, 240, 0.34) !important;
	--we-scrollbar-track: rgba(7, 16, 25, 0.96) !important;
	--we-scrollbar-thumb: linear-gradient(180deg, #8fefff 0%, #41d7f0 46%, #1677cc 100%) !important;
	--we-scrollbar-thumb-hover: linear-gradient(180deg, #bf3b4a 0%, #41d7f0 58%, #1677cc 100%) !important;
	--we-btn-bg: linear-gradient(135deg, #41d7f0 0%, #1677cc 100%) !important;
	--we-btn-bg-hover: linear-gradient(135deg, #8fefff 0%, #41d7f0 52%, #bf3b4a 100%) !important;
}

body,
body.we-body {
	background-color: #071019 !important;
	color: #e8f8fc !important;
}

a,
.text-primary {
	color: #8fefff !important;
}

a:hover,
a:focus {
	color: #41d7f0 !important;
}

.we-navbar,
.we-navbar.we-navbar-scrolled,
.navbar,
.navbar-default {
	background: rgba(7, 16, 25, 0.94) !important;
	border-color: rgba(65, 215, 240, 0.2) !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.58), 0 0 24px rgba(65, 215, 240, 0.13) !important;
}

.panel,
.panel-sidebar,
.we-panel-glass,
.we-home-news,
.we-ranking-panel,
.profiles_player_card,
.profiles_guild_card,
.webshop,
.webshop-wrapper,
.castle-siege-widget,
.nexar-lottery,
.rankings-table,
.table {
	background-color: rgba(12, 24, 36, 0.86) !important;
	border-color: rgba(65, 215, 240, 0.24) !important;
	box-shadow: 0 8px 36px rgba(0, 0, 0, 0.58), 0 0 28px rgba(65, 215, 240, 0.12) !important;
}

.panel-heading,
.panel-title,
.page-title span,
.we-brand-name,
.we-hero-title-line,
.guild_name,
.guild_members,
.cname {
	color: #e8f8fc !important;
	text-shadow: 0 0 16px rgba(65, 215, 240, 0.46), 0 0 28px rgba(191, 59, 74, 0.15) !important;
}

.we-btn-primary,
.we-btn-glow,
.btn-primary,
button.btn-primary,
input[type="submit"],
input[type="button"] {
	background: var(--we-btn-bg) !important;
	border-color: rgba(143, 239, 255, 0.65) !important;
	color: #fff !important;
	box-shadow: var(--we-glow-sm) !important;
}

.we-btn-primary:hover,
.we-btn-glow:hover,
.btn-primary:hover,
.btn-primary:focus,
button.btn-primary:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	background: var(--we-btn-bg-hover) !important;
	border-color: #8fefff !important;
	color: #fff !important;
	box-shadow: var(--we-glow) !important;
}

.we-btn-outline,
.btn-default,
.btn-info {
	background: rgba(12, 24, 36, 0.48) !important;
	border-color: rgba(65, 215, 240, 0.42) !important;
	color: #e8f8fc !important;
}

.we-btn-outline:hover,
.btn-default:hover,
.btn-info:hover {
	background: rgba(65, 215, 240, 0.14) !important;
	border-color: #41d7f0 !important;
	color: #fff !important;
}

.table > thead > tr > th,
.table > tbody > tr > td,
.rankings-table tr td {
	border-color: rgba(65, 215, 240, 0.16) !important;
	color: #e8f8fc !important;
}

.table > tbody > tr:hover > td,
.rankings-table tr:hover td,
.general-table-ui tr:nth-child(2n+2) td {
	background: rgba(65, 215, 240, 0.075) !important;
}

.rankings-table tr:first-child td,
.rankings-table thead th {
	color: #8fefff !important;
	border-bottom-color: #41d7f0 !important;
}

.rankings_menu a,
.rankings-class-filter-selection,
.we-lang-dropdown-toggle,
.dropdown-menu {
	background: rgba(12, 24, 36, 0.72) !important;
	border-color: rgba(65, 215, 240, 0.18) !important;
	color: rgba(232, 248, 252, 0.74) !important;
}

.rankings_menu a:hover,
.rankings_menu a.active,
.rankings-class-filter-selection:hover,
.we-lang-dropdown.we-lang-open .we-lang-dropdown-toggle,
.dropdown-menu > li > a:hover {
	background: rgba(65, 215, 240, 0.14) !important;
	border-color: #41d7f0 !important;
	color: #fff !important;
}

.alert-info,
.label-info,
.badge-info {
	background: rgba(65, 215, 240, 0.13) !important;
	border-color: rgba(65, 215, 240, 0.34) !important;
	color: #8fefff !important;
}

.alert-danger,
.alert-warning,
.label-danger,
.label-warning,
.badge-danger,
.badge-warning {
	background: rgba(191, 59, 74, 0.16) !important;
	border-color: rgba(191, 59, 74, 0.42) !important;
	color: #ffd9de !important;
}

.we-tag-news,
.we-tag-event,
.we-tag-update,
.we-rank-gold,
.we-rank-silver,
.we-rank-bronze {
	background: linear-gradient(135deg, #41d7f0 0%, #1677cc 58%, #bf3b4a 100%) !important;
	color: #fff !important;
	box-shadow: 0 0 14px rgba(65, 215, 240, 0.32) !important;
}

.we-rank-row-1 td,
.we-rank-row-2 td,
.we-rank-row-3 td {
	color: #8fefff !important;
}

.isonline,
.online-count,
.we-hud-value-online {
	color: #41d7f0 !important;
}

.isoffline,
.text-danger {
	color: #bf3b4a !important;
}
/* END MuLycan final palette override */

