        body {
            font-family: Arial, sans-serif;
            margin: 0;
            background: #f5f5f5;
            color: #333;
        }

        .container {
            max-width: 900px;
            margin: auto;
            background: #fff;
            padding: 24px;
        }

        h1 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 28px;
        }

		.image-wrapper {
			position: relative;
			text-align: center;
			margin-bottom: 25px;
			opacity: 0;
			transition: opacity 0.4s ease;
		}

        .image-wrapper img {
			width: 100%;
			border-radius: 10px;
			cursor: pointer;
			transition: transform 0.25s ease, box-shadow 0.25s ease;
		}
		
		.image-wrapper img:hover {
			transform: scale(1.02);
			box-shadow: 0 12px 28px rgba(0,0,0,0.25);
		}
				
		/* CTA TEXT */
		.image-cta-text {
			font-weight: bold;
			margin-bottom: 10px;
			color: #e21141;
		}
		
		/* Mobile friendly */
		@media (max-width: 600px) {
			.image-cta-text {
				font-size: 15px;
			}
		}

        .cta-button {
            text-align: center;
            margin: 25px 0;
        }

        .cta-button a {
            background: #e21141;
            color: #fff;
            padding: 14px 28px;
            text-decoration: none;
            border-radius: 6px;
            font-size: 18px;
            display: inline-block;
        }

        .cta-button a:hover {
            background: #c50e36;
        }

        .content {
            line-height: 1.7;
            font-size: 16px;
        }

        .content p {
            margin-bottom: 18px;
        }

        /* IKLAN */
        .ad-center {
            text-align: center;
            margin: 30px 0;
        }

        .ad-center img {
            max-width: 100%;
            height: auto;
        }
		
		.cta-button a {
		animation: pulse 2s infinite;
		}

		@keyframes pulse {
			0% { transform: scale(1); }
			50% { transform: scale(1.05); }
			100% { transform: scale(1); }
		}

		/* Gambar utama */
		.image-wrapper img.main-image {
			width: 100%;
			border-radius: 8px;
		}

		/* IKLAN DI TENGAH GAMBAR */
		.image-ad-overlay {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			opacity: 0.55; /* 🔥 ATUR OPACITY DI SINI */
			z-index: 2;
			pointer-events: auto;
			filter: blur(0.5px);
			mix-blend-mode: multiply;
		}

		.image-ad-overlay img {
			max-width: 200px;
			width: 100%;
			height: auto;
		}

		/* Hover agar jelas ini iklan */
		.image-ad-overlay:hover {
			opacity: 1;
		}
		
		.sponsored{
			font-size:12px;
			opacity:0.7;
		}
		
		/* MOBILE FIRST */
		.mobile-cta-wrapper {
			max-width: 100%;
			margin: 20px auto;
			text-align: center;
		}

		/* TAP HINT */
		.tap-hint {
			font-size: 16px;
			font-weight: 600;
			margin-bottom: 10px;
			color: #e21141;
		}

		/* IMAGE TAP AREA */
		.image-tap-area {
			display: block;
		}

		/* IMAGE */
		.image-tap-area img {
			width: 100%;
			border-radius: 14px;
			cursor: pointer;
			animation: tapPulse 2.5s infinite;

			/* Tap feedback */
			transition: transform 0.15s ease, box-shadow 0.15s ease;
		}

		/* TAP FEEDBACK (ACTIVE) */
		.image-tap-area:active img {
			transform: scale(0.97);
			box-shadow: 0 6px 16px rgba(0,0,0,0.25);
		}

		/* DESKTOP ADJUSTMENT */
		@media (min-width: 768px) {
			.mobile-cta-wrapper {
				max-width: 720px;
			}

			.tap-hint {
				font-size: 18px;
			}
		}
		@keyframes tapPulse {
			0% { transform: scale(1); }
			50% { transform: scale(1.02); }
			100% { transform: scale(1); }
		}
		
