body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    min-height: 100vh;
}


.ascii-image {
    max-width: 100%; 
    height: auto;   
    display: block;
    margin: 0 auto; 
}

.ascii-art {
    margin-bottom: 20px;
    padding: 20px;
}

.ascii-text {
    color: #ff0000;
    font-size: 8px; /* Adjust size for better fit */
    line-height: 1;
    white-space: pre;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: auto;
    text-align: left;
    width: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 6rem;
    font-family: 'Arial Black', sans-serif;
    background: linear-gradient(270deg, #c0c0c0, #f8f8f8, #c0c0c0, #f8f8f8);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.description {
    font-size: 1.5rem;
    margin-top: -20px;
    color: #c0c0c0;
}

.version {
    font-size: 1rem;
    color: #999;
    margin-top: -30px;
    margin-bottom: 20px;
}

.buttons-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #fff;
}

.btn i {
    margin-right: 10px;
}

.win-btn {
    background-color: #0078d4;
    border-color: #0078d4;
}

.win-btn:hover {
    background-color: #005a9e;
    transform: translateY(-2px);
}

.mac-btn {
    background-color: #555;
    border-color: #555;
    cursor: not-allowed;
    opacity: 0.7;
}

.mac-btn:hover {
    transform: none;
}
