html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: monospace;
    color: white;
    text-align: left;
    horiz-align: center;
    position: relative;
    overflow: hidden;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

body {
    background-color: #151515;
    display: flex;
    justify-content: center;
    align-items: center;

}

.container {
    background-color: #000;
    border: 5px solid #00ff00;
    box-shadow: 0 0 20px #00ff00;
    width: 80%;
    max-width: 800px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 24px;
    padding-bottom: 24px;
}

h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
}

a:link, a:visited {
    background-color: #f44336;
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,255,0,0.08);
    margin-bottom: 12px;
    margin-top: 12px;
}

a:hover, a:active {
    background-color: #00ff00;
    color: #151515;
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0,255,0,0.18);
}

a svg {
    margin-right: 8px; /* Optional: Adds space between the icon and the text */
    transition: filter 0.3s, transform 0.2s;
}

a:hover svg {
    filter: drop-shadow(0 0 4px #00ff00);
    transform: scale(1.15);
}

@media (max-width: 600px) {
    body {
        padding: 0;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        display: flex;
    }
    .container {
        width: calc(100% - 16px);
        max-width: 100%;
        padding: 10px;
        border-width: 3px;
        font-size: 1rem;
        margin: 8px;
        box-shadow: 0 0 10px #00ff00;
        box-sizing: border-box;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    h1 {
        font-size: clamp(1.3rem, 6vw, 2rem);
    }
    p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }
    a:link, a:visited {
        padding: 10px 12px;
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-top: 10px;
        margin-bottom: 10px;
    }
    a svg {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
}

/* Bluesky Link */
a[href*="bsky.app"] {
    background-color: rgba(0,102,255,0.18);
    color: #fff;
}
a[href*="bsky.app"]:hover, a[href*="bsky.app"]:active {
    background-color: #0066FF;
    color: #fff;
}
a[href*="bsky.app"]:hover svg {
    filter: none;
    color: #fff;
    fill: #fff;
}

/* Mastodon Link */
a[href*="mastodon.social"] {
    background-color: rgba(99,100,255,0.18);
    color: #fff;
}
a[href*="mastodon.social"]:hover, a[href*="mastodon.social"]:active {
    background-color: #6364FF;
    color: #fff;
}
a[href*="mastodon.social"]:hover svg {
    filter: none;
    color: #fff;
    fill: #fff;
}

.cursor {
    display: inline-block;
    width: 1ch;
    color: #00ff00;
    font-weight: bold;
    font-family: monospace;
    background: none;
    animation: blink-cursor 1s steps(1) infinite;
    vertical-align: middle;
    margin-left: 2px;
}

@keyframes blink-cursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

