	/* Game Detail Page Styles */
	.game-detail-container {
	    display: flex;
	    gap: 30px;
	    margin-bottom: 40px;
	    background: #fff;
	    border-radius: 12px;
	    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	    overflow: hidden;
	    max-width: 100%;
	    box-sizing: border-box;
	}

	.game-image-section {
	    flex: 0 0 40%;
	    max-width: 500px;
	    position: relative;
	    overflow: hidden;
	}

	.game-main-image {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	    border-radius: 12px 0 0 12px;
	    transition: transform 0.3s ease;
	}

	.game-content-section {
	    flex: 1;
	    padding: 30px;
	    display: flex;
	    flex-direction: column;
	    justify-content: space-between;
	}

	.game-header {
	    margin-bottom: 20px;
	}

	.game-title {
	    font-size: 32px;
	    font-weight: 700;
	    color: #2c3e50;
	    margin: 0 0 15px 0;
	    line-height: 1.2;
	    text-transform: uppercase;
	    letter-spacing: -0.5px;
	}

	.game-tags {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 8px;
	}

	.tag-button {
	    background: linear-gradient(135deg, #667eea, #764ba2);
	    color: white;
	    padding: 8px 16px;
	    border-radius: 25px;
	    font-size: 12px;
	    font-weight: 600;
	    text-transform: uppercase;
	    letter-spacing: 0.5px;
	    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	}

	.game-action {
	    margin-bottom: 25px;
	}

	.play-now-btn {
	    background: linear-gradient(135deg, #f093fb, #f5576c);
	    color: white;
	    border: none;
	    padding: 15px 40px;
	    font-size: 18px;
	    font-weight: 700;
	    border-radius: 50px;
	    cursor: pointer;
	    text-transform: uppercase;
	    letter-spacing: 1px;
	    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
	    transition: all 0.3s ease;
	    display: inline-flex;
	    align-items: center;
	    gap: 10px;
	}

	.play-now-btn:hover {
	    transform: translateY(-2px);
	    box-shadow: 0 12px 30px rgba(245, 87, 108, 0.5);
	    background: linear-gradient(135deg, #f5576c, #f093fb);
	}

	.play-now-btn:active {
	    transform: translateY(0);
	}

	.play-icon {
	    font-size: 16px;
	}

	.game-summary {
	    margin-top: 20px;
	}

	.game-summary h3 {
	    font-size: 20px;
	    font-weight: 600;
	    color: #34495e;
	    margin-bottom: 15px;
	    border-left: 4px solid #f5576c;
	    padding-left: 15px;
	}

	.game-summary h3.no-border {
	    border-left: none;
	    padding-left: 0;
	}

	.game-summary p {
	    font-size: 16px;
	    line-height: 1.8;
	    color: #555;
	    margin-bottom: 20px;
	}

	/* Similar Games Section */
	.similar-games-section {
	    padding: 50px 0;
	}

	.similar-games-header {
	    text-align: center;
	    margin-bottom: 40px;
	}

	.similar-games-header h2 {
	    font-size: 36px;
	    font-weight: 700;
	    color: #2c3e50;
	    margin: 0;
	    text-transform: uppercase;
	    letter-spacing: -1px;
	    position: relative;
	    display: inline-block;
	}

	.similar-games-header h2::after {
	    content: '';
	    position: absolute;
	    bottom: -10px;
	    left: 50%;
	    transform: translateX(-50%);
	    width: 80px;
	    height: 4px;
	    background: linear-gradient(135deg, #f093fb, #f5576c);
	    border-radius: 2px;
	}

	.similar-games-grid {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 30px 0;
	    justify-content: flex-start;
	    width: 100%;
	    max-width: 100%;
	    box-sizing: border-box;
	}

		.game-card {
			background: white;
			border-radius: 12px;
			overflow: hidden;
			box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
			transition: all 0.3s ease;
			width: 100%;
			max-width: 280px;
			box-sizing: border-box;
		}

	.game-card:hover {
	    transform: translateY(-5px);
	    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	}

	.game-card a {
	    text-decoration: none;
	    color: inherit;
	    display: block;
	}

	.game-image {
	    position: relative;
	    height: 200px;
	    overflow: hidden;
	}

	.game-image img {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	    transition: transform 0.3s ease;
	}

	.game-card:hover .game-image img {
	    transform: scale(1.1);
	}

	.game-overlay {
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    background: rgba(0, 0, 0, 0.7);
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    opacity: 0;
	    transition: opacity 0.3s ease;
	}

	.game-card:hover .game-overlay {
	    opacity: 1;
	}

	.play-button {
	    background: linear-gradient(135deg, #f093fb, #f5576c);
	    color: white;
	    padding: 10px 20px;
	    border-radius: 25px;
	    font-weight: 600;
	    text-transform: uppercase;
	    letter-spacing: 0.5px;
	}

	.game-info {
	    padding: 20px;
	}

	.game-info h4 {
	    font-size: 18px;
	    font-weight: 600;
	    color: #2c3e50;
	    margin: 0 0 10px 0;
	    line-height: 1.3;
	}

	.game-info .game-tags {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 5px;
	}

	.game-info .tag {
	    background: #e3f2fd;
	    color: #1976d2;
	    padding: 4px 10px;
	    border-radius: 12px;
	    font-size: 11px;
	    font-weight: 500;
	}

	/* Comment Section */
	.single-bottom {
	    padding: 50px 0;
	    background: white;
	    width: 100%;
	    max-width: 100%;
	    box-sizing: border-box;
	}

	.single-bottom h3 {
	    font-size: 28px;
	    font-weight: 700;
	    color: #2c3e50;
	    margin-bottom: 30px;
	    text-align: center;
	    text-transform: uppercase;
	}

	.single-bottom form {
	    margin: 0 auto;
	    width: 100%;
	    max-width: 100%;
	    box-sizing: border-box;
	}

	.comment {
	    margin-bottom: 20px;
	}

	.comment input {
	    width: 100%;
	    padding: 15px;
	    border: 2px solid #e9ecef;
	    border-radius: 8px;
	    font-size: 16px;
	    transition: all 0.3s ease;
	    background: #f8f9fa;
	}

	.comment input:focus {
	    outline: none;
	    border-color: #f5576c;
	    background: white;
	}

	.single-bottom textarea {
	    width: 100%;
	    padding: 15px;
	    border: 2px solid #e9ecef;
	    border-radius: 8px;
	    font-size: 16px;
	    resize: vertical;
	    min-height: 120px;
	    transition: all 0.3s ease;
	    background: #f8f9fa;
	    font-family: inherit;
	}

	.single-bottom textarea:focus {
	    outline: none;
	    border-color: #f5576c;
	    background: white;
	}

	.single-bottom input[type="submit"] {
		background: linear-gradient(135deg, #f093fb, #f5576c) !important;
		color: white !important;
		border: none !important;
		padding: 15px 40px !important;
		font-size: 18px !important;
		font-weight: 700 !important;
		border-radius: 50px !important;
		cursor: pointer !important;
		text-transform: uppercase !important;
		letter-spacing: 1px !important;
		transition: all 0.3s ease !important;
		margin-top: 20px !important;
		box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4) !important;
		width: auto !important;
		text-align: center !important;
	}

	.single-bottom input[type="submit"]:hover {
		transform: translateY(-2px) !important;
		box-shadow: 0 12px 30px rgba(245, 87, 108, 0.5) !important;
		background: linear-gradient(135deg, #f5576c, #f093fb) !important;
	}

	/* Responsive Design */
	/* Prevent horizontal scroll on mobile */
	html, body {
		overflow-x: hidden;
		max-width: 100%;
		width: 100%;
	}

	.single,
	.blog-to,
	.container {
		max-width: 100%;
		overflow-x: hidden;
		box-sizing: border-box;
	}

	@media(max-width:992px) {
		.single {
			width: 100%;
			overflow-x: hidden;
		}

		.blog-to {
			width: 100%;
			overflow-x: hidden;
		}

			.game-detail-container {
				flex-direction: column;
				gap: 15px;
				width: 100%;
				box-sizing: border-box;
				overflow: hidden;
			}

			.game-image-section {
				flex: 1;
				max-width: 100%;
				height: 400px;
			}

			.game-main-image {
				border-radius: 12px 12px 0 0;
			}

			.game-content-section {
				padding: 25px;
			}

			.game-title {
				font-size: 28px;
			}

			.similar-games-grid {
				gap: 20px;
			}

			.game-card {
				max-width: 320px;
			}
	}

	@media(max-width:768px) {
		html, body {
			overflow-x: hidden;
			max-width: 100%;
			width: 100%;
		}

		.single {
			width: 100%;
			overflow-x: hidden;
		}

		.blog-to {
			width: 100%;
			overflow-x: hidden;
		}

	    .game-detail-container {
	        gap: 10px;
	        width: 100%;
	        box-sizing: border-box;
	    }

	    .game-content-section {
	        padding: 20px;
	    }

	    .game-title {
	        font-size: 24px;
	    }

	    .play-now-btn {
	        padding: 12px 30px;
	        font-size: 16px;
	    }

	    .similar-games-header h2 {
	        font-size: 28px;
	    }

	    .game-card {
	        max-width: 100%;
	    }
	}

	@media(max-width:480px) {
		.single {
			width: 100%;
			overflow-x: hidden;
		}

		.blog-to {
			width: 100%;
			overflow-x: hidden;
		}

	    .game-detail-container {
	        gap: 5px;
	    }

	    .game-image-section {
	        height: 250px;
	    }

	    .game-content-section {
	        padding: 15px;
	    }

	    .game-title {
	        font-size: 20px;
	    }

	    .play-now-btn {
	        padding: 10px 20px;
	        font-size: 14px;
	    }

	    .similar-games-header h2 {
	        font-size: 24px;
	    }

	    .single-bottom {
	        padding: 30px 0;
	    }

	    .single-bottom h3 {
	        font-size: 22px;
	    }

	    .comment input,
	    .single-bottom textarea {
	        padding: 12px;
	        font-size: 14px;
	    }
	}