#egg-canvas-container {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1320px;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

#egg-canvas-container canvas {
	display: block;
	width: 100%;
	height: 100%;
}

/* Features section - animatsiya bilan */
#overview {
	position: relative;
	overflow: hidden;
}

/* Kontent animatsiya ustida ko'rinishi uchun */
#overview .container {
	position: relative;
	z-index: 2;
}

#overview .over-item {
	background: rgba(22, 22, 22, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 118, 87, 0.1);
	transition: all 0.3s ease;
}

#overview .over-item:hover {
	background: rgba(22, 22, 22, 0.98);
	border-color: rgba(255, 118, 87, 0.3);
	transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
	#egg-canvas-container {
		opacity: 0.6;
	}
}

/* Mobile */
@media (max-width: 768px) {
	#egg-canvas-container {
		display: none;
	}
}
/* EGG CLICK ANIMATIONS */
.egg-click-effect {
	position: absolute;
	pointer-events: none;
	z-index: 1000;
}

.egg-crack-animation {
	animation: crack 0.5s ease-out forwards;
}

@keyframes crack {
	0% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
	50% {
		transform: scale(1.2) rotate(5deg);
		opacity: 0.8;
	}
	100% {
		transform: scale(0) rotate(15deg);
		opacity: 0;
	}
}

.particle {
	position: absolute;
	width: 10px;
	height: 10px;
	background: linear-gradient(45deg, #ff7657, #ffcc00);
	border-radius: 50%;
	pointer-events: none;
}

.coin-popup {
	position: absolute;
	color: #ffcc00;
	font-weight: bold;
	font-size: 18px;
	pointer-events: none;
	animation: floatUp 1.5s ease-out forwards;
	text-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
}

@keyframes floatUp {
	0% {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateY(-100px) scale(1.5);
		opacity: 0;
	}
}

/* EGG STATS UPDATE ANIMATION */
.stat-update {
	animation: statPulse 0.5s ease-out;
}

@keyframes statPulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.3);
	}
	100% {
		transform: scale(1);
	}
} /* CSS ga faqat shu 2ta animatsiya qo'shing */
.stat-update {
	animation: statPulse 0.3s ease;
}

@keyframes statPulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
