* {
				box-sizing: border-box;
				margin: 0;
				padding: 0;
				font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
			}

			body {
				background-color: #f5f5f5;
				color: #333;
				line-height: 1.6;

				max-width: 100%;
				overflow-x: hidden;
			}

			.container {
				max-width: 500px;
				margin: 0 auto;


				box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
				padding: 20px;
			}

			.header {
				margin-bottom: 15px;
				padding-bottom: 10px;
				border-bottom: 1px solid #eee;
			}

			.header-content {
				display: flex;
				justify-content: space-between;
				align-items: center;
			}

			.timer {
				font-weight: bold;
				font-size: 18px;
				color: #1E9FFF;
			}

			.difficulty-selector {
				display: flex;
				justify-content: space-between;
				margin-bottom: 15px;
				gap: 5px;
			}

			.difficulty-btn {
				flex: 1;
				padding: 8px 0;
				border: 2px solid;
				border-radius: 5px;
				font-weight: bold;
				background-color: #f8f8f8;
				cursor: pointer;
				transition: all 0.3s;
				font-size: 14px;
			}

			#easy-btn {
				color: #5FB878;
				border-color: #5FB878;
			}

			#medium-btn {
				color: #1E9FFF;
				border-color: #1E9FFF;
			}

			#hard-btn {
				color: #FF5722;
				border-color: #FF5722;
			}

			#easy-btn.active {
				background-color: #5FB878;
				color: white;
				box-shadow: 0 0 10px rgba(95, 184, 120, 0.5);
			}

			#medium-btn.active {
				background-color: #1E9FFF;
				color: white;
				box-shadow: 0 0 10px rgba(30, 159, 255, 0.5);
			}

			#hard-btn.active {
				background-color: #FF5722;
				color: white;
				box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
			}

			#easy-btn:hover:not(.active) {
				background-color: rgba(95, 184, 120, 0.1);
			}

			#medium-btn:hover:not(.active) {
				background-color: rgba(30, 159, 255, 0.1);
			}

			#hard-btn:hover:not(.active) {
				background-color: rgba(255, 87, 34, 0.1);
			}

			.sudoku-container {
				width: 100%;
				margin: 0 auto;
				background: #f6f7fa;
				padding: 15px;
				border-radius: 6px;
			}

			.sudoku-grid {
				display: grid;
				grid-template-columns: repeat(9, 1fr);
				gap: 1px;
				background: #333;
				border: 2px solid #333;
				margin-bottom: 15px;
			}

			.sudoku-cell {
				aspect-ratio: 1;
				display: flex;
				align-items: center;
				justify-content: center;
				background: white;
				font-size: 20px;
				font-weight: bold;
				cursor: pointer;
				user-select: none;
				position: relative;
			}

			.sudoku-cell.fixed {
				background: #f0f0f0;
				color: #000;
			}

			.sudoku-cell.user-input {
				color: #0529ff;
			}

			.sudoku-cell.highlighted {
				background: #e2eaff;
			}

			.sudoku-cell.error {
				color: #ed5565;
			}

			.sudoku-cell:nth-child(3n) {
				border-right: 2px solid #333;
			}

			.sudoku-cell:nth-child(9n) {
				border-right: none;
			}

			.sudoku-cell:nth-child(n+19):nth-child(-n+27),
			.sudoku-cell:nth-child(n+46):nth-child(-n+54) {
				border-bottom: 2px solid #333;
			}

			.number-selector {
				display: grid;
				grid-template-columns: repeat(5, 1fr);
				gap: 5px;
				margin-bottom: 15px;
			}

			.number-btn {
				aspect-ratio: 1;
				display: flex;
				align-items: center;
				justify-content: center;
				background: #1E9FFF;
				color: white;
				border-radius: 4px;
				font-size: 18px;
				font-weight: bold;
				cursor: pointer;
				transition: opacity 0.2s;
			}

			.number-btn:hover {
				opacity: 0.8;
			}

			.number-btn.clear {
				background: #ed5565;
			}

			.controls {
				display: flex;
				justify-content: space-between;
				gap: 10px;
			}

			.controls button {
				flex: 1;
				padding: 10px;
				border: none;
				border-radius: 5px;
				font-weight: bold;
				cursor: pointer;
				transition: all 0.2s;
			}

			.check-btn {
				background-color: #5FB878;
				color: white;
			}

			.hint-btn {
				background-color: #FFB800;
				color: white;
			}

			.new-game-btn {
				background-color: #1E9FFF;
				color: white;
			}

			.game-over {
				position: fixed;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				background: rgba(0, 0, 0, 0.8);
				display: none;
				flex-direction: column;
				justify-content: center;
				align-items: center;
				z-index: 100;
				color: white;
				text-align: center;
				padding: 20px;
			}

			.game-over.show {
				display: flex;
			}

			.game-over-content {
				background: white;
				color: #333;
				padding: 20px;
				border-radius: 10px;
				max-width: 80%;
				text-align: center;
			}

			.game-over h2 {
				color: #FF5722;
				margin-bottom: 15px;
			}

			.game-over p {
				margin-bottom: 10px;
			}

			.play-again-btn {
				margin-top: 20px;
				padding: 10px 20px;
				background-color: #1E9FFF;
				color: white;
				border: none;
				border-radius: 5px;
				font-weight: bold;
				cursor: pointer;
			}

			.instructions {
				margin-top: 20px;
				padding: 15px;
				background-color: #f8f8f8;
				border-radius: 5px;
				font-size: 14px;
			}

			.instructions .title {
				font-weight: bold;
				display: block;
				margin-bottom: 5px;
			}

			.instructions text {
				display: block;
				margin-bottom: 3px;
			}

			.title {
				color: #333;
				font-size: 18px;
				text-decoration: none;
			}



			@media (max-width: 400px) {

				.header .timer {
					font-size: 18px;
				}

				.sudoku-cell {
					font-size: 16px;
				}

				.number-btn {
					font-size: 16px;
				}

				.difficulty-btn {
					font-size: 12px;
					padding: 6px 0;
				}
			}