.castle-widget {
	background: linear-gradient(rgba(0, 135, 197, 0.1), rgba(0, 135, 197, 0.05));
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 135, 197, 0.3);
	border-radius: 20px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
	transition: all 0.4s ease;
	position: relative;
	height: 100%;
}

.castle-widget:hover {
	border-color: rgba(0, 102, 197, 0.5);
	box-shadow:
		0 12px 40px rgba(0, 0, 0, 0.4),
		0 0 40px rgba(0, 135, 197, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.castle-widget-header {
	background: linear-gradient(135deg, rgba(0, 75, 136, 0.2), rgba(0, 62, 155, 0.2));
	padding: 20px 25px;
	border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.castle-widget-title {
	margin: 0;
	color: #006cc5;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
	text-align: center;
}

.castle-widget-body {
	padding: 30px 25px;
}

.widget-owner-section {
	display: flex;
	align-items: center;
	gap: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(0, 212, 255, 0.1);
	margin-bottom: 25px;
}

.widget-guild-logo {
	flex-shrink: 0;
	padding: 15px;
	background: rgba(0, 212, 255, 0.05);
	border: 2px solid rgba(0, 212, 255, 0.2);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.widget-guild-logo:hover {
	background: rgba(0, 212, 255, 0.1);
	border-color: rgba(0, 212, 255, 0.4);
	transform: scale(1.03);
}

.widget-owner-info {
	flex: 1;
}

.widget-label {
	color: #8dd1ff;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 6px;
	font-weight: 600;
	display: block;
}

.widget-value {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	display: block;
}

.widget-info-grid {
	display: grid;
	gap: 20px;
	margin-bottom: 25px;
}

.widget-info-item {
	background: rgba(0, 162, 255, 0.05);
	border: 1px solid rgba(0, 162, 255, 0.15);
	border-radius: 12px;
	padding: 15px;
	text-align: center;
	transition: all 0.3s ease;
	margin-bottom: 10px;
}

.widget-info-item:hover {
	background: rgba(0, 212, 255, 0.1);
	border-color: rgba(0, 212, 255, 0.3);
}

.widget-info-item div {
	color: #0091d4 !important;
}

.widget-countdown {
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(238, 90, 111, 0.1));
	border: 2px solid rgba(255, 107, 107, 0.3);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	margin-bottom: 25px;
}

.widget-countdown-value {
	color: #ff6b6b;
	font-size: 24px;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
	margin-top: 8px;
}

.btn-castle-widget {
	display: inline-block;
	background: linear-gradient(135deg, #136acc, #0858b3);
	color: #fff;
	padding: 12px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	transition: all 0.3s ease;
	border: none;
	box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.btn-castle-widget:hover {
	background: linear-gradient(135deg, #1582ff, #0c6edf);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
	color: #fff;
	text-decoration: none;
}

.btn-castle-widget:active {
	transform: translateY(0);
}

@media (max-width: 576px) {
	.widget-owner-section {
		flex-direction: column;
		text-align: center;
	}

	.castle-widget-body {
		padding: 20px 15px;
	}

	.widget-countdown-value {
		font-size: 18px;
	}
}