body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.4rem, 1.5vw, 1rem);
}

#ascii-logo {
	font-family: monospace;
    text-align: center;
    white-space: pre;
    font-size: clamp(0.4rem, 1.2vw, 0.8rem);
    line-height: 1;
    max-width: 95vw;
    max-height: 75vh;
    overflow: hidden;
    flex-grow: 1;
}

#title-logo {
	font-family: monospace;
    text-align: center;
    white-space: pre;
    font-weight: bold;
    font-size: clamp(0.45rem, 0.75vw, 0.6rem);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9),
                 0 0 12px rgba(255, 255, 255, 0.7),
                 0 0 16px rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: clamp(5px, 1vw, 8px);
    margin: clamp(5px, 1vw, 10px) auto;
    display: block;
    width: fit-content;
    border: none;
    flex-shrink: 0;
}

.ascii-logo-cell {
    transition: color 0.3s ease;
}

/* Responsive iframe */
iframe {
    width: clamp(200px, 25vw, 300px);
    height: clamp(100px, 12vw, 150px);
    margin: clamp(5px, 1vw, 10px) auto;
    display: block;
    flex-shrink: 0;
}
