}
#ad-iframe::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
}
/* Close button with arrow */
#close-ad {
position: absolute;
top: 6px;
right: 8px;
background: #ff4d4d;
color: #fff;
border: none;
padding: 5px 9px;
font-size: 13px;
border-radius: 4px;
cursor: not-allowed;
opacity: 0.72;
z-index: 100000;
display: flex;
align-items: center;
}
#close-ad.enabled {
cursor: pointer;
opacity: 1;
}
#close-ad::before {
content: '↑'; /* Up arrow */
margin-right: 4px;
}
/* Right mask for scrollbar */
#ad-right-mask {
position: absolute;
top: 0;
right: 0;
width: 12px;
height: 100%;
pointer-events: none;
background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
z-index: 99999;
}
/* Mobile adjustments */
@media (max-width: 440px) {
#ad-container {
width: calc(100% - 12px);
left: 50%;
transform: translateX(-50%);
border-radius: 0; /* Sharp corners on mobile */
}
#ad-iframe {
width: 708px;
}
}
]]>