#gdt-ad-feed1 {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 350px;
	height: 240px;
	z-index: 9999;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

#gdt-ad-feed1.gdt-show {
	display: flex;
}

#gdt-ad-feed1 .gdt-ad-video {
	height: 150px;
	background-color: #000;
}

#gdt-ad-feed1 .gdt-ad-body {
	position: relative;
	padding: 10px;
	background: #fff;
	color: #333;
	display: flex;
	align-items: center;
	gap: 10px;
}

#gdt-ad-feed1 .gdt-ad-title {
	font-size: 14px;
	margin: 0;
	font-weight: bold;
}

#gdt-ad-feed1 .gdt-ad-desc {
	flex: 1 1 auto;
	font-size: 12px;
	margin: 0;
	color: #666;
}

#gdt-ad-feed1 .gdt-ad-cta {
	padding: 4px 10px;
	font-size: 12px;
	border: none;
	border-radius: 4px;
	background-color: #ff9800;
	color: #fff;
	cursor: pointer;
	white-space: nowrap;
}

#gdt-ad-feed1 .gdt-ad-img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 4px;
	display: none;
}

#gdt-ad-feed1 .gdt-ad-close {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
}

@media (max-width: 768px) {
	#gdt-ad-feed1 {
		width: auto;
		left: 10px;
		right: 10px;
		bottom: 10px;
		height: auto;
	}
	#gdt-ad-feed1 .gdt-ad-body {
		flex-direction: column;
		align-items: flex-start;
	}
	#gdt-ad-feed1 .gdt-ad-cta {
		align-self: flex-end;
	}
}
