
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Arial', sans-serif;
		text-decoration: none;
	}

	body {
		background-color: #f5f5f5;
		color: #333;
		line-height: 1.6;
		padding-top: 50px;
	}

	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: #1a237e;
		z-index: 9999;
		box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
	}



	.nav-container {
		max-width: 1200px;
		margin: auto;
		padding: 5px 20px;

		display: flex;
		align-items: center;
	}

	/* Logo */

	.logo {
		flex-shrink: 0;
	}

	.logo a {
		display: flex;
		align-items: center;
		color: #fff;
		text-decoration: none;
		font-size: 24px;
		font-weight: 700;
		line-height: 1;
	}

	.logo img {
		width: 42px;
		height: 42px;
		border-radius: 8px;
		margin-right: 10px;
		display: block;
	}

	/* Menu */

	.main-nav {
		flex: 1;
	}

	.main-nav ul {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.main-nav li {
		margin-left: 35px;
	}

	.main-nav a {
		color: #fff;
		text-decoration: none;
	}

	/* Download */

	.download-box {
		margin-left: 35px;
	}

	.download-box button {
		background: #b11800;
		color: #ffd700;
		border: 0;
		border-radius: 6px;
		padding: 10px 16px;
		cursor: pointer;
		font-weight: bold;
		white-space: nowrap;
	}


	@media (max-width:768px) {
	    
	    	body {
        		padding-top: 75px;
        	}

		.nav-container {
		    padding: 5px 12px;

			display: grid;

			grid-template-columns: 1fr auto;

			grid-template-areas:
				"logo download"
				"menu menu";

			row-gap: 8px;

			align-items: center;
		}

		.logo {
			grid-area: logo;
		}

		.download-box {
			grid-area: download;
			margin: 0;
			text-align: right;
		}

		.main-nav {
			grid-area: menu;
		}

		.logo a {
			font-size: 20px;
		}

		.logo img {
			width: 34px;
			height: 34px;
			margin-right: 8px;
		}

		.download-box button {
			padding: 7px 7px;
			font-size: 12px;
		}

		.main-nav ul {
			justify-content: space-between;
			flex-wrap: nowrap;
		}

		.main-nav li {
			margin: 0;
		}

		.main-nav a {
			font-size: 14px;
		}

	}


	.container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 5px;
		min-height: 70vh;
	}

	.hero {
		background-color: #3949ab;
		color: white;
		padding: 40px;
		border-radius: 8px;
		margin-bottom: 30px;
		text-align: center;
	}

	.warning {
		background-color: #ffeb3b;
		color: #333;
		padding: 15px;
		border-radius: 8px;
		margin-bottom: 30px;
		border-left: 5px solid #ffc107;
	}

	.app-detail {
		background-color: white;
		padding: 30px;
		border-radius: 8px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		margin-bottom: 40px;
		text-align: center;
	}

	.app-detail h1 {
		font-size: clamp(18px, 4.8vw, 28px);
		color: #1a237e;
		margin-bottom: 15px;
	}

	.app-detail p {
		margin-bottom: 20px;
	}

	.app-stats {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 15px;
		font-size: 18px;
	}

	.download-icon {
		font-size: 24px;
		margin-bottom: 5px;
	}

	.withdrawal-info {
		font-size: 16px;
		color: #666;
		margin-bottom: 20px;
	}

	.download-btn {
		display: inline-block;
		background-color: #12c736;
		color: white;
		padding: 12px 20px;
		border-radius: 22px;
		text-decoration: none;
		font-weight: bold;
		transition: background-color 0.3s;
		font-size: 16px;
		border: none;
		cursor: pointer;
	}

	.download-btn:hover {
		background-color: #d73a31;
	}

	.directory-title {
		color: #1a237e;
		margin: 30px 0 20px;
		padding-bottom: 10px;
		border-bottom: 2px solid #1a237e;
		text-align: center;
	}

	.app-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 10px;
		margin-top: 20px;
	}

	.app-card {
		background-color: white;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s;
		text-align: center;
	}

	.app-card:hover {
		transform: translateY(-5px);
	}

	.app-image {
		height: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		padding: 20px;
	}

	.logo-circle {
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background-color: #f0f0f0;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		margin: 0 auto;
	}

	.logo-circle img {
		max-width: 80%;
		max-height: 80%;
	}

	.download-info {
		position: absolute;
		bottom: 10px;
		left: 0;
		right: 0;
		background-color: rgba(0, 0, 0, 0.7);
		color: white;
		padding: 5px;
		font-size: 12px;
		text-align: center;
	}

	.app-content {
		padding: 20px;
	}

	.app-title {
		font-size: 18px;
		margin-bottom: 10px;
		color: #1a237e;
	}

	.app-withdrawal {
		font-size: 12px;
		color: #1a237e;
		margin-bottom: 15px;
	}

	.app-download-btn {
		display: inline-block;
		background-color: #d73a31;
		color: white;
		padding: 8px 15px;
		border-radius: 4px;
		text-decoration: none;
		font-weight: bold;
		transition: background-color 0.3s;
		width: 100%;
		text-align: center;
		font-size: 14px;
	}

	.app-download-btn:hover {
		background-color: #e30c00;
	}

	/* Active Page Indicator */
	.active {
		color: #ffeb3b !important;
		font-weight: bold;
	}

	footer {
		background-color: #0a1153;
		color: white;
		margin-top: 40px;
	}

	.footer-container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 30px 20px;
	}

	.age-warning {
		font-size: 14px;
		margin-bottom: 15px;
		text-align: center;
	}

	.footer-warning {
		background-color: rgba(255, 255, 255, 0.1);
		padding: 15px;
		border-radius: 5px;
		margin-bottom: 20px;
	}

	.footer-note {
		font-size: 12px;
		margin-bottom: 20px;
	}

	.footer-links {
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
	}

	.footer-links a {
		color: white;
		text-decoration: none;
		margin: 0 10px;
		font-size: 14px;
		transition: color 0.3s;
	}

	.footer-links a:hover {
		color: #ffeb3b;
	}

	.copyright {
		text-align: center;
		font-size: 12px;
		padding-top: 20px;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	/* Horizontal App Card Styles */
	.app-card-horizontal {
		display: flex;
		background-color: white;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		margin-bottom: 5px;
	}

	.app-image-container {
		width: 120px;
		position: relative;
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 10px;
		background-color: #f8f8f8;
	}

	.logo-circle {
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background-color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		margin-bottom: 5px;
	}

	.logo-circle img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		border-radius: 10%;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}

	.download-info {
		font-size: 10px;
		color: #fff;
		text-align: center;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		width: 100%;
	}

	.app-content-container {
		flex: 1;
		padding: 12px 15px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.app-title a {
		font-size: 18px;
		color: #1a237e;
		margin-bottom: 5px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		font-weight: bold;
		text-decoration: none;
	}

	.app-title a:hover {
		color: #3949ab
	}

	.app-bonus {
		color: #e30c00;
		font-size: 12px;
		margin-bottom: 3px;
	}

	/* Responsive adjustments */
	@media (max-width: 480px) {
		nav ul li {
			margin-left: 8px;
		}

		.hero h1 {
			font-size: 18px
		}

		.hero {
			padding: 20px
		}

		.app-card-horizontal {
			height: auto;
		}

		.app-image-container {
			width: 100px;
		}

		.logo-circle {
			width: 80px;
			height: 80px;
		}

		.app-content-container {
			padding: 10px;
		}

		.app-bonus {
			font-size: 14px
		}
	}

	.is-logo-circle {
		width: 350px;
		/*height: 350px;*/
		/*border-radius: 50%;*/
		background-color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		/*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
		margin: 0 auto;
	}

	.is-logo-circle img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		border-radius: 10%;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}

	.xingxing img {
		max-width: 100px;
		max-height: 21px;
		object-fit: contain;
	}

	@media (max-width: 480px) {
		.is-logo-circle {
			width: 280px;
			height: 280px;
		}
	}

	.button-container {
		display: none !important
	}

	nav ul li button {
		background-color: #a30c00;
		color: #ffeb3b;
		border: none;
		cursor: pointer;
		padding: 5px 10px;
		border-radius: 5px;
	}

	@media (max-width: 480px) {
		nav ul li button {
			display: none
		}
	}

	.logo-circle .app-rank {
		font-weight: bold;
		background: #AD0000;
		font-size: 18px;
		display: inline-block;
		position: absolute;
		top: 28px;
		color: #ffff00;
		border-radius: 50%;
		width: 30px;
		height: 30px;
		text-align: center;
	}

	.logo-circle .app-comment {
		margin-top: 4px;
		font-size: 14px;
	}

	.xingxingx {
		position: absolute;
		bottom: 25px;
	}

	.xingxingx img {
		max-width: 56px;
		max-height: 13px;
		object-fit: contain;
		box-shadow: none;
	}

	#floating-download-bar {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background: rgb(0 0 0 / 85%);
		border-top: 2px solid #f0c000;
		box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
		z-index: 9999;
		padding: 10px 15px;
		display: flex;
		justify-content: center;
		color: #f9eb26;
	}

	.download-bar-content {
		display: flex;
		align-items: center;
		max-width: 768px;
		width: 100%;
	}

	.app-icon {
		width: 40px;
		height: 40px;
		border-radius: 12px;
		margin-right: 10px;
	}

	.download-text {
		flex-grow: 1;
		font-size: 14px;
		line-height: 1.2;
	}


	@media screen and (max-width: 480px) {
		.download-text {
			font-size: 13px;
		}

		.download-btn {
			padding: 6px 12px;
			font-size: 13px;
		}
	}
	
			/*.xingxing {*/
			/*	position: absolute;*/
			/*	bottom: 25px;*/
			/*}*/

			/*.xingxing img {*/
			/*	max-width: 56px;*/
			/*	max-height: 13px;*/
			/*	object-fit: contain;*/
			/*	box-shadow: none;*/
			/*}*/
