:root {
    --bg: #0f1115;
    --fg: #e6e6e6;
    --muted: #9aa0a6;
    --accent: #4f9cff;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--fg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}



p {
    padding: 12px;
}

ul {
    padding-left: 32px;
    list-style: square;
}

.card {
    max-width: 720px;
    width: 100%;
    background: #151821;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.middle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.ascii-image-container {
    max-width: 720px;
}

.description-container {
    max-width: 720px;
}

@media screen and (max-width: 1100px){
    .middle {
        flex-direction: column;
    }
}

.ascii-image {
    font-style: normal;
    font-size: 11px;
    line-height: 1.06;
    font-weight: 800;
    font-family: "Inconsolata", monospace;
    margin-bottom: 13px;
    max-width: 720px;
    width: 100%;
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    visibility: hidden;
}

.sminfo {
    border: 1px dashed  #A07BD8;
    line-height: 2;
    margin: 24px 0;
}

.sminfo svg path {
    fill: #A07BD8
}

.slide-and-magic-title {
    color: #A07BD8
}

@media screen and (max-width: 760px){
    h1 {
        visibility: visible;
    }

    .ascii-image {
        display: none;
    }
}

p.subtitle {
    color: var(--muted);
    line-height: 2;
    padding-bottom: 0;
}

.links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.info {
    color: var(--muted);
    line-height: 2;
    padding-top: 0;
    margin-bottom: 24px;
}
.info-media {
    color: var(--muted);
    line-height: 2;
    padding-top: 0;
}

a svg {
    width: 22px;
    height: 22px;
}

a svg path {
    fill: white;
}

.link {
    display: block;
    padding: 14px 16px;
    background: #1b1f2a;
    border-radius: 10px;
    text-decoration: none;
    color: var(--fg);
    border: 1px solid #242a38;
    transition: all 0.2s ease;
}

.inline-link {
    gap: 8px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    margin: 5px 0;
    background: #1b1f2a;
    border-radius: 10px;
    text-decoration: none;
    color: var(--fg);
    border: 1px solid #242a38;
    transition: all 0.2s ease;
}

.inline-link-lite {
    text-decoration: none;
    color: var(--fg);
    transition: all 0.2s ease;
}

.link:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79,156,255,0.15);
}

footer {
    margin-top: 32px;
    color: var(--muted);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 480px) {
    .card {
        padding: 28px 22px;
    }

    h1 {
        font-size: 2rem;
    }
}