/* ==== Hediye Çarkı ==== */
.hediye_cark {
	position: relative;
	background: #12162b;
	border-radius: 16px;
	padding: 14px;
	color: #fff;
	font-family: Arial, sans-serif;
}
.gift_wheel_close {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #1f2340;
	border: 2px solid rgba(255,255,255,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	font-size: 14px;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gift_wheel_close:hover {
	background: #2c3160;
}
.hediye_cark .user-info {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
	margin-bottom: 6px;
	text-align: center;
	padding: 4px 6px;
	color: #1f2667;
	font-weight: bold;
	background: linear-gradient(45deg, #dde, #eef);
	border-radius: 8px;
	font-size: 20px;
	transition: all 0.5s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
}
.hediye_cark .user-item {
	text-align: center;
	font-size: 10px;
}
.hediye_cark .user-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}
.hediye_cark .user-item i {
	font-size: 11px;
	margin-bottom: 1px;
	display: block;
}
.hediye_cark .xp i { color: #00ff88; }
.hediye_cark .silver i { color: #c9c9d9; }
.hediye_cark .gold i { color: #ffcc00; }
.hediye_cark .tl i { color: #4CAF50; }
.hediye_cark .user-item > div:nth-child(2) {
	font-size: 8px;
	opacity: 0.75;
	margin-top: 0px;
}
.hediye_cark .user-item > div:nth-child(3) {
	font-size: 12px;
	margin-top: 0px;
}
.wheel-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding: 8px 0;
}
.wheel-pointer {
	position: relative;
	z-index: 4;
	color: #ff3b3b;
	font-size: 34px;
	margin-bottom: -14px;
	filter: drop-shadow(0 2px 2px rgba(0,0,0,0.4));
}
#wheelcontainer {
	position: relative;
	width: 420px;
	height: 420px;
	margin: 0 auto 20px;
	border-radius: 50%;
	box-shadow: 0 0 0 8px rgb(160 160 160 / 30%);
	max-width: 100%;
}
#gift_wheel_svg_wrap {
	width: 100%;
	height: 100%;
	transform: rotate(0deg);
}
#gift_wheel_svg_wrap svg {
	width: 100%;
	height: 100%;
	display: block;
}
.wheel-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #ff3b3b;
	border: 4px solid #ffd400;
	color: #ffd400;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 800;
	font-size: 11px;
	line-height: 1.2;
	z-index: 3;
	box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.wheel-subtitle {
	background: #fff;
	color: #1f2667;
	font-weight: bold;
	border-radius: 10px;
	padding: 10px 16px;
	margin-bottom: 14px;
	text-align: center;
}
.gift_wheel_spin_btn {
	background: linear-gradient(45deg, #7a3bff, #9b6bff);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 14px 20px;
	font-weight: bold;
	font-size: 15px;
	width: 100%;
	cursor: pointer;
}
.gift_wheel_spin_btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
@media (max-width: 600px) {
	#wheelcontainer {
		width: 320px;
		height: 320px;
	}
	.hediye_cark .user-info {
		font-size: 14px;
		gap: 8px;
	}
}
