* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    height: 100vh;
}

#container {
    height: 100vh;
    width: 100vw;
    position: relative;
}



#ascii-output {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    line-height: 1;
    white-space: pre;
    overflow: hidden;
    background: black;
    color: #00ff00;
    display: block;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Twitter link styling */
#twitter-link {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Courier New', monospace;
}

#twitter-link a {
    color: #00ff00;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 12px;
    border: 2px solid #00ff00;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    text-shadow: 0 0 5px #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

#twitter-link a:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    text-shadow: 0 0 10px #00ff00;
    transform: scale(1.05);
}

#twitter-link a:active {
    transform: scale(0.95);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    #twitter-link {
        top: 10px;
        right: 10px;
    }
    
    #twitter-link a {
        font-size: 14px;
        padding: 6px 10px;
    }
}


/* Loading animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 18px;
    color: #ccc;
}

.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top: 2px solid #627eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
