@media (max-width:1000px) {
	.main {
		width: 100%;
		padding: 15px;
	}

	.main img {
		object-fit: cover;
	}

	.m-title {
		width: 100%;
		margin: 20px 0 15px;
		padding: 0 5px;
	}

	.m-title p {
		font-size: 20px;
		font-weight: 700;
		color: var(--gray-800);
		line-height: 1.4;
		padding-left: 14px;
		border-left: 4px solid var(--primary);
		position: relative;
	}

	.listOne {
		width: 100%;
		padding: 5px 0;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.l1-box {
		display: block;
		background: #fff;
		box-shadow: var(--shadow-md);
		border-radius: var(--radius-xl);
		position: relative;
		overflow: hidden;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.l1-box::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
		opacity: 0;
		transition: opacity 0.4s;
		z-index: 1;
		pointer-events: none;
	}

	.l1-box:hover::before {
		opacity: 1;
	}

	.listOne .l1-box {
		width: 100%;
	}

	.pg {
		position: absolute;
		bottom: 10px;
		left: 12px;
		font-size: 11px;
		font-weight: 600;
		color: #fff;
		background: linear-gradient(135deg, var(--secondary) 0%, #f43f5e 100%);
		padding: 5px 12px;
		border-radius: 50px;
		z-index: 2;
		box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
	}

	.l1-box img {
		width: 100%;
		height: 110px;
		display: block;
		border-radius: var(--radius-xl) var(--radius-xl) 0 0;
		background: var(--gray-100);
	}

	.text {
		width: 100%;
		padding: 14px;
		background: #fff;
	}

	.listOne .l1-box .text p {
		font-size: 13px;
		margin: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		line-height: 1.4;
		font-weight: 600;
		color: var(--gray-800);
	}

	.listOne .l1-box .text p:nth-of-type(2) {
		display: none;
	}

	.listOne .text {
		min-height: 55px;
	}

	.list2 {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
		padding: 5px 0;
	}

	.list2 .l1-box {
		border: none;
		border-radius: var(--radius-lg);
		box-shadow: var(--shadow-md);
		overflow: hidden;
	}

	.list2 .l1-box img {
		width: 100%;
		height: 85px;
		display: block;
		border-radius: var(--radius-lg);
		background: var(--gray-100);
	}

	.list2 .l1-box .text {
		display: none;
	}

	.list3 {
		width: 100%;
		padding: 5px 0;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.list3 .l1-box {
		border-radius: var(--radius-lg);
		box-shadow: var(--shadow-lg);
		overflow: hidden;
	}

	.list3 .l1-box img {
		width: 100%;
		height: 80px;
		display: block;
		border-radius: var(--radius-lg);
		background: var(--gray-100);
	}

	.list3 .l1-box .text {
		display: none;
	}

	.list4 {
		width: 100%;
		padding: 5px 0;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.list4 .l1-box {
		width: 100%;
		padding: 14px;
		background: #fff;
		box-shadow: var(--shadow-md);
		border-radius: var(--radius-xl);
		display: flex;
		gap: 14px;
		align-items: center;
		transition: all 0.3s;
	}

	.list4 .l1-box:hover {
		transform: translateX(6px);
		box-shadow: var(--shadow-lg);
	}

	.list4 .l1-box img {
		width: 80px;
		height: 80px;
		display: block;
		border-radius: var(--radius-lg);
		object-fit: cover;
		background: var(--gray-100);
	}

	.list4 .l1-box .text {
		width: calc(100% - 94px);
		padding: 0;
	}

	.list4 .l1-box .text p:nth-of-type(1),
	.list6 .l1-box .text p:nth-of-type(1) {
		font-size: 15px;
		font-weight: 700;
		line-height: 1.4;
		color: var(--gray-800);
		margin: 0 0 6px 0;
	}

	.list4 .l1-box .text p:nth-of-type(2),
	.list6 .l1-box .text p:nth-of-type(2) {
		font-size: 12px;
		color: var(--gray-500);
		margin: 0;
	}

	.list4 .l1-box .text p:nth-of-type(3) {
		display: none;
	}

	.list6 {
		width: 100%;
		padding: 5px 0;
	}

	.list6 .l1-box {
		width: 100%;
		margin: 0 0 12px 0;
		box-shadow: var(--shadow-md);
		border-radius: var(--radius-xl);
		overflow: hidden;
	}

	.list6 .l1-box .text p:nth-of-type(3) {
		margin-top: 8px;
		font-size: 12px;
		line-height: 1.5;
		color: var(--gray-500);
	}

	.listOne>.l1-box .pg {
		display: none;
	}
}

@media (min-width:1000px) {
	.main {
		width: 100%;
		max-width: 1400px;
		margin: 30px auto;
		padding: 0 40px;
	}

	.main img {
		object-fit: cover;
	}

	.m-title {
		width: 100%;
		margin: 30px 0 20px;
		padding: 0 5px;
	}

	.m-title p {
		display: inline-block;
		margin: 0;
		font-weight: 700;
		font-size: 24px;
		color: var(--gray-800);
		padding-left: 16px;
		border-left: 4px solid var(--primary);
	}

	.listOne {
		width: 100%;
		padding: 10px 0;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}

	.listOne .l1-box {
		width: 100%;
		position: relative;
		display: flex;
		flex-direction: column;
		border-radius: var(--radius-xl);
		background: #fff;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: var(--shadow-md);
		overflow: hidden;
	}

	.listOne .l1-box:hover {
		transform: translateY(-10px);
		box-shadow: var(--shadow-2xl);
	}

	.listOne .l1-box:hover .text p:nth-of-type(1) {
		color: var(--primary);
	}

	.listOne .l1-box img {
		width: 100%;
		height: 150px;
		display: block;
		border-radius: var(--radius-xl) var(--radius-xl) 0 0;
		transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
		background: var(--gray-100);
	}

	.listOne .l1-box:hover img {
		transform: scale(1.08);
	}

	#link2,
	#link3 {
		margin-top: 20px;
	}

	.text {
		width: 100%;
	}

	.listOne>.l1-box .text {
		width: 100%;
		min-height: 85px;
		padding: 16px;
		font-size: 15px;
		position: relative;
	}

	.l1-box .text p:nth-of-type(1) {
		color: var(--gray-800);
		font-weight: 700;
		line-height: 1.4;
		font-size: 15px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.pg {
		position: absolute;
		bottom: 16px;
		left: 16px;
		font-size: 12px;
		font-weight: 600;
		color: #fff;
		background: linear-gradient(135deg, var(--secondary) 0%, #f43f5e 100%);
		padding: 6px 14px;
		border-radius: 50px;
		z-index: 2;
		box-shadow: 0 2px 10px rgba(236, 72, 153, 0.4);
		transition: all 0.3s;
	}

	.l1-box:hover .pg {
		transform: scale(1.05);
		box-shadow: 0 4px 15px rgba(236, 72, 153, 0.5);
	}

	.ml-inner {
		width: 100%;
		margin: 30px 0;
		padding: 25px;
		display: flex;
		justify-content: space-between;
		background: #fff;
		box-shadow: var(--shadow-lg);
		border-radius: var(--radius-xl);
	}

	.ml-lb {
		width: 65%;
		height: auto;
		border-right: 1px solid var(--gray-200);
		padding-right: 25px;
	}

	.ml-rb {
		width: 32%;
	}

	.list2 {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		padding: 10px 0;
	}

	.list2 .l1-box {
		width: 100%;
		display: flex;
		flex-direction: column;
		padding: 0;
		box-shadow: var(--shadow-md);
		border: none;
		border-radius: var(--radius-lg);
		overflow: hidden;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.list2 .l1-box:hover {
		transform: translateY(-8px);
		box-shadow: var(--shadow-xl);
	}

	.list2 .l1-box img {
		width: 100%;
		height: 100px;
		display: block;
		border-radius: var(--radius-lg);
		background: var(--gray-100);
		transition: transform 0.5s;
	}

	.list2 .l1-box:hover img {
		transform: scale(1.08);
	}

	.list2 .text {
		width: 100%;
		padding: 12px;
	}

	.l1-box>.text p:nth-of-type(1) {
		color: var(--gray-800);
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		font-weight: 700;
		line-height: 1.4;
		font-size: 14px;
	}

	.list2>.l1-box .text p:nth-of-type(2) {
		font-size: 12px;
		line-height: 1.3;
		margin: 6px 0 0 0;
		color: #fff;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
	}

	.list2 .text::after {
		content: 'Play';
		line-height: 1;
		font-size: 11px;
		color: var(--primary);
		font-weight: 600;
		padding: 6px 14px;
		text-align: center;
		border-radius: 50px;
		border: 2px solid var(--primary);
		display: inline-block;
		margin-top: 10px;
		transition: all 0.3s;
	}

	.list2 .l1-box:hover .text::after {
		background: var(--primary);
		color: #fff;
	}

	.list3 {
		width: 100%;
		padding: 10px 0;
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	.list3 .l1-box {
		width: 100%;
		padding: 14px;
		display: flex;
		gap: 14px;
		align-items: center;
		background: #fff;
		border-radius: var(--radius-lg);
		box-shadow: var(--shadow-sm);
		transition: all 0.3s;
	}

	.list3 .l1-box img {
		width: 70px;
		height: 70px;
		border-radius: var(--radius-lg);
		background: var(--gray-100);
		transition: transform 0.3s;
	}

	.list3 .l1-box:hover img {
		transform: scale(1.1);
	}

	.list3 .text {
		width: calc(100% - 84px);
		position: relative;
	}

	.list3 .l1-box>.text p:nth-of-type(2) {
		top: 20px;
	}

	.l1-box>.text p:nth-of-type(1) {
		color: var(--gray-800);
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		font-weight: 700;
		line-height: 1.4;
		font-size: 14px;
		margin: 0;
	}

	.l1-box>.text p:nth-of-type(2) {
		position: absolute;
		right: 10px;
		top: -130px;
		background-color: #5956E7;
		color: #fff;
		border-radius: 20px;
		display: inline-block;
		padding: 5px 20px;
	}

	.list3>.l1-box .text p:nth-of-type(2) {
		font-size: 12px;
		line-height: 1.3;
		margin: 6px 0 0 0;
		color: #fff;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
	}

	.list3 .text::after {
		content: 'Play Game';
		line-height: 1;
		font-size: 11px;
		color: var(--primary);
		font-weight: 600;
		padding: 5px 12px;
		text-align: center;
		border-left: 3px solid var(--primary);
		display: block;
		margin-top: 10px;
	}

	.list3 .l1-box:hover {
		box-shadow: var(--shadow-md);
		transform: translateX(6px);
	}

	.list4 {
		width: 100%;
		padding: 15px 0;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}

	.list4 .l1-box {
		width: 100%;
		background: #fff;
		border-radius: var(--radius-xl);
		padding: 10px;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
		box-shadow: var(--shadow-md);
		overflow: hidden;
	}

	.list4 .l1-box:hover {
		transform: translateY(-10px);
		box-shadow: var(--shadow-2xl);
	}

	.list4 .l1-box img {
		width: 100%;
		height: 170px;
		display: block;
		border-radius: var(--radius-lg);
		background: var(--gray-100);
		transition: transform 0.5s;
	}

	.list4 .l1-box:hover img {
		transform: scale(1.08);
	}

	.list4 .text {
		width: 100%;
		padding: 14px 6px;
	}

	.list4 .l1-box .text p:nth-of-type(1),
	.list6 .l1-box .text p:nth-of-type(1) {
		font-size: 15px;
		font-weight: 700;
		line-height: 1.4;
		color: var(--gray-800);
		margin: 0 0 6px 0;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.list4 .l1-box .text p:nth-of-type(2) {
		font-size: 12px;
		color: #fff;
		margin: 0;
	}

	.list4 .l1-box .text p:nth-of-type(3),
	.list6 .l1-box .text p:nth-of-type(2),
	.list6 .l1-box .text p:nth-of-type(3) {
		display: none;
	}

	.ml-inner {
		min-height: 480px;
	}

	.list6 {
		width: 100%;
		padding: 10px 0;
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.list6 .l1-box {
		width: 100%;
		box-shadow: var(--shadow-md);
		border-radius: var(--radius-xl);
		overflow: hidden;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.list6 .l1-box:hover {
		transform: translateY(-8px);
		box-shadow: var(--shadow-xl);
	}

	.list6 .l1-box img {
		width: 100%;
		height: 140px;
		transition: transform 0.5s;
		border-radius: var(--radius-xl) var(--radius-xl) 0 0;
		background: var(--gray-100);
	}

	.list6 .l1-box:hover img {
		transform: scale(1.08);
	}

	.list6 .text {
		width: 100%;
		padding: 14px;
	}

	.list6>.l1-box .text p:nth-of-type(2) {
		font-size: 12px;
		line-height: 1.3;
		margin: 6px 0 0 0;
		color: #fff;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
	}

	.list6 .text::after {
		content: 'Play Game';
		line-height: 1;
		font-size: 11px;
		color: var(--primary);
		font-weight: 600;
		padding: 5px 12px;
		text-align: center;
		border-left: 3px solid var(--primary);
		display: block;
		margin-top: 10px;
	}
}