* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: white;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	color: #2d3748;
}

#main-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 1200px;
	width: 100%;
}

#grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2%;
	position: relative;
	width: 90vmin;
	height: 90vmin;
	margin: 0 auto;
	max-width: 800px;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border-radius: 2%;
	overflow: hidden;
	padding: 2%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

#result {
	visibility: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.445);
	z-index: -1000;
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#playertworesult, #playeroneresult{
     padding: 10px;
	 font-size: 40px;
}

hr {
	height: 2px;
	background-color: rgb(0, 0, 0);
	border: none;
	width: 50%;
}

.col {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: transparent;
	border: 1px solid rgba(42, 53, 66, 0);
}

.btn {
	width: 100%;
	height: 100%;
	border-radius: 15%;
	background-color: #ffffff;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	position: relative;
	border: 1px solid rgba(226, 232, 240, 0.8);
}

.btn:hover {
	border-color: #007bff;
}

#player-1,
#player-2 {

	width: 50px;
	height: 50px;
	margin: 20px;
	border-radius: 50%;

}

#reset-btn {
	background-color: transparent;
	border: 2px solid #4f3ff0;
	border-radius: 5px;
	color: #4f3ff0;
	font-family: "Poppins";
	font-size: 1.5rem;
	margin: 50px 0;
	padding: 10px 40px;
	text-transform: uppercase;
	transition: 0.7s;

}

#reset-btn:hover {

	background-color: #4f3ff0;
	color: #d5deff;
	cursor: pointer;
	transition: 0.7s;

}

/* Player - 1 Buttons */

.btn-player-1 {

	background-color: #000000;
	border-radius: 50%;
	height: 60%;
	width: 60%;
	border: none;
	animation: bounceScale 600ms cubic-bezier(.22, 1.0, .36, 1.0);
}

/* Player - 2 Buttons */

.btn-player-2 {

	background-color: #ffbb02;
	border: 2px solid #ffbb02;
	border-radius: 50%;
	height: 60%;
	width: 60%;
	border: none;
	animation: bounceScale 600ms cubic-bezier(.22, 1.0, .36, 1.0);

}

.circle-ring {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.circle-ring::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px dashed #007bff;
	transform: translate(-50%, -50%);
	animation: spin 8s linear infinite;
	box-shadow: 0 0 15px #007bffc9;
}

@keyframes spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes bounceScale {
	0% {
		transform: scale(1);
	}

	20% {
		transform: scale(1.25);
	}

	/* grow quickly */
	45% {
		transform: scale(0.9);
	}

	/* undershoot */
	70% {
		transform: scale(1.08);
	}

	/* smaller overshoot */
	100% {
		transform: scale(1);
	}
}