body {
    background: #000;
    color: #00ff99;
    font-family: "Courier New", monospace;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    padding: 20px 10px;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.nav-links,
.nav-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-nav a {
    color: #00ff99;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    font-size: 18px;
}

.main-nav a:hover {
    border-bottom: 2px solid #00ff99;
    text-shadow: 0 0 8px #00ff99;
}

.nav-social a {
    font-size: 24px;
    border-bottom: none;
}



.logo {
    max-width: 240px;
    filter: drop-shadow(0 0 6px #00ff99);
}

h1 {
    font-size: 38px;
    margin-top: 20px;
    text-shadow: 0 0 8px #00ff99;
}

.terminal-box,
.info-box {
    background: #111;
    border: 2px solid #00ff99;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    text-align: left;
    box-shadow: 0 0 15px #00ff99;
    overflow: hidden;
}

.highlight-box {
    border-width: 3px;
    box-shadow: 0 0 25px #00ff99;
    background: #0a0a0a;
}

.highlight-box h2 {
    color: #fff;
    text-shadow: 0 0 10px #00ff99;
}


.btns {
    margin-top: 20px;
}

.btns a {
    text-decoration: none;
    color: #000;
    background: #00ff99;
    padding: 12px 22px;
    margin: 6px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    transition: 0.2s;
}

.btns a:hover {
    box-shadow: 0 0 12px #00ff99;
}

footer {
    margin-top: 50px;
    font-size: 14px;
    opacity: 0.7;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blinkCursor {
    0% {
        border-right-color: #00ff99;
    }

    50% {
        border-right-color: transparent;
    }

    100% {
        border-right-color: #00ff99;
    }
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #00ff99;
    width: 0;
    animation: typing 2s steps(30, end) forwards, blinkCursor 0.7s infinite;
    display: block;
    margin-bottom: 12px;
}

.typewriter-wrap {
    overflow: hidden;
    border-right: 3px solid #00ff99;
    width: 0;
    animation: typing-wrap 3s steps(60, end) forwards, blinkCursor 0.7s infinite;
    display: block;
    margin-bottom: 12px;
    white-space: normal;
    /* Allow wrapping */
}

@keyframes typing-wrap {
    from {
        width: 0;
        max-height: 0;
    }

    to {
        width: 100%;
        max-height: 1000px;
    }
}

.delay1 {
    animation-delay: 0.5s;
}

.delay2 {
    animation-delay: 2.5s;
}

.delay3 {
    animation-delay: 4.5s;
}

.delay4 {
    animation-delay: 6.5s;
}

.delay5 {
    animation-delay: 8.5s;
}

.delay6 {
    animation-delay: 10.5s;
}

.delay7 {
    animation-delay: 13.5s;
}

.delay8 {
    animation-delay: 15.5s;
}

.support-box {
    background: #111;
    border: 2px solid #00ff99;
    width: 80%;
    max-width: 700px;
    margin: 40px auto;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 15px #00ff99;
}

.pix-donation {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #00ff99;
}

.pix-key-box {
    display: inline-flex;
    align-items: center;
    background: #222;
    border: 1px solid #00ff99;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 0;
}

#pix-key {
    font-family: "Courier New", monospace;
    font-weight: bold;
    font-size: 1.1em;
    margin-right: 15px;
}

.copy-btn {
    background: #00ff99;
    color: #000;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    transition: 0.2s;
}

.copy-btn:hover {
    box-shadow: 0 0 10px #00ff99;
}

.pix-detail {
    font-size: 0.9em;
    opacity: 0.8;
}

.project-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.asset-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.asset-card {
    background: rgba(0, 255, 153, 0.03);
    border: 1px solid rgba(0, 255, 153, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: zoom-in;
}

.asset-link:hover .asset-card {
    background: rgba(0, 255, 153, 0.1);
    border-color: #00ff99;
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.3);
}

.asset-link:hover {
    transform: scale(1.03);
}

.asset-card img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
    margin-bottom: 15px;
}

.asset-card span {
    font-family: 'Courier New', Courier, monospace;
    color: #00ff99;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.section-title {
    border-bottom: 1px solid rgba(0, 255, 153, 0.3);
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-preview-link {
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #00ff99;
    box-shadow: 0 0 15px rgba(0, 255, 153, 0.2);
    transition: opacity 0.3s;
}

.main-preview-link:hover {
    opacity: 0.9;
}

.main-preview-link img {
    width: 100%;
    display: block;
}
