

.ya-client-iframe{
	margin:0;
  	display: block;
  	overflow: hidden;	
	width: 371px;
	height: 443px;
	background-color: white;
}

.gradient-card {
	position: absolute;
	left: 12.26%;
	top: 5.53%;
	width: 76.82%;
	height: 89.39%;
	background: linear-gradient(135deg, #FF6B35, #F7931E, #FFD23F);
	border: 1px solid #d1d5db;
	border-radius: 30px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
	transform: rotate(-2deg);
	transition: transform 0.2s ease-out;
	z-index: 3;
}


	


	





.scratch-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	cursor: pointer;
	border-radius: 30px;
	z-index: 2;
	margin: 4px;
}

.result-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
	z-index: 1;
}

.icon-image {
	width: 40px;
	height: auto;
	object-fit: contain;
	margin-bottom: 10px;
	z-index: 1;
}

.result-title {
	font-family: 'Kalam', cursive;
	font-size: 40px;
	font-weight: 700;
	color: black;
	text-align: center;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.result-text {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: black;
	text-align: center;
	line-height: 1.4;
}

.card-wiggle {
	animation: gentleWiggle 0.3s ease-in-out;
}

.credit-text {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	position: absolute;
	bottom: 15px;
	width: 100%;
	z-index: 1;
}

@keyframes gentleWiggle {
	0% { transform: rotate(-2deg) translateX(0px) translateY(0px); }
	25% { transform: rotate(-1.2deg) translateX(0.8px) translateY(-0.5px); }
	50% { transform: rotate(-2.5deg) translateX(-0.5px) translateY(0.6px); }
	75% { transform: rotate(-1.6deg) translateX(0.4px) translateY(-0.3px); }
	100% { transform: rotate(-2deg) translateX(0px) translateY(0px); }
}



