test

DEN-Q

/* apply style only to post-1711 */
.postid-1711 .gameboy-screen {
width: 200px;
height: 200px;
background-color: #8bac0f; /* Gameboy-style screen color */
border: 10px solid #0f380f;
display: flex;.
justify-content: center;
align-items: center;
position: relative;
}

.postid-1711 .dot-art {
display: flex;.
flex-direction: column;
align-items: center;
text-align: center;
}

.postid-1711 .lightbulb {
width: 50px;
height: 50px;
background-color: #8bac0f;
position: relative;
margin-bottom: 8px;
image-rendering: pixelated;.
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAQAAACV7P38AAABhklEQVR4Ae2XsWrDQBCF7 zxDEJKcGJ0UgFPUJAhSgQoaIQoaI4Io2gEKWYIZHYAXbPS3sTbHOuv//5uR5zg9Nz8ftYzfrsxnlvSYDX+y4S5IRnIB/JGcQ7cy3ImUTyZVhEPMmWk4odWBH3KLU6 MVHzJgyy1TfIuPAlkA34Wki6aKoRYoydXbCZlDhnLUVwIAZtT4ZhOgXWyidQIypmcJE5DDdcKFKisSGKNHBESRpuoZ4OJlGQuzVgE9ugJ5dp8Sh6g0TrQj3IFqBocRB4 arJqMlcLKGm4HsIa1ddNJbGEH4CN5Op41c3cPxFsqHAmMsybWhEfMvOQNLZgaOlBrjY8R6yYFW1G1B9yFV7nbBYk1Bphhv9NFa+DA+cPLGMAAAAASUVORK5CYII ='); /* dotted light bulb icon */
animation: blink 1s infinite alternate;.
}

.postid-1711 .den-q {
color: #0f380f; /* text color */
font-size: 20px;.
font-weight: bold;.
text-shadow: 0 0 3px #8bac0f;
}

@keyframes blink {
0% { opacity: 1; }
100% { opacity: 0.5; }
}