/*im gonna be using comments to separate my stuff and i dont fucking care if people say its made by ai like fuck yourself, my head hurts and i dont want it to be worse so ill organize each page shitty thing. can someone kill me rn*/
/*dope dame las capsulas de cafe que me debes puto*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    image-rendering: optimizeSpeed; /*STOP SMOOTHING, GIVE ME SPEED*/
    image-rendering: -moz-crisp-edges; /*Firefox*/
    image-rendering: -o-crisp-edges; /*Opera*/
    image-rendering: -webkit-optimize-contrast; /*Chrome (and eventually Safari)*/
    image-rendering: pixelated; /*Universal support since 2021*/
    image-rendering: optimize-contrast; /*CSS3 Proposed*/
    -ms-interpolation-mode: nearest-neighbor; /*IE8*/
}

body {
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: url('https://itzmeunreal.neocities.org/images/scrolling-bg.gif') repeat;
    background-color: #111111;
    background-size: 80px;
    display: flex;
    flex-direction: column;
}

:root {
    --scrollbar-color-thumb: #2a2a2a;
    --scrollbar-color-track: #1a1a1a;
    --scrollbar-width: auto;
    --scrollbar-width-legacy: 12px;
}

@supports (scrollbar-width: auto) {
    * {
        scrollbar-color: var(--scrollbar-color-thumb) var(--scrollbar-color-track);
        scrollbar-width: var(--scrollbar-width);
    }
}

/*shit i use in every page. like general*/
.content {
    position: relative;
    z-index: 1;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.main {
    padding: 40px;
    max-width: 800px;
    width: 100%;
}

    .main.centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 60px);
    }

.card {
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.card-padded {
    padding: 25px;
    margin-bottom: 30px;
}

.img-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 8px;
    outline: 3px solid #444;
    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    overflow: hidden;
}

.img-caption {
    text-align: center;
    font-size: 12px;
    color: #fff;
    font-family: Arial, sans-serif;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.55);
    padding: 6px 4px;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.img-wrapper:hover .img-caption {
    opacity: 1;
}

.link {
    color: #0066cc;
    text-decoration: none;
}

    .link:hover {
        text-decoration: underline;
    }

.web-button {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding-bottom: 16px;
}

.web-button-left {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 0;
}

.pixel-img {
    image-rendering: pixelated;
    display: block;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-title-left {
    text-align: left;
    margin-bottom: 16px;
}

.section-title-left {
    text-align: left;
    margin-bottom: 16px;
}

.iframe-wrapper {
    width: 100%;
    height: 560px;
    border-radius: 8px;
    outline: 3px solid #444;
    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    overflow: hidden;
}

.iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/*like the navbar stufdf*/
site-navbar {
    position: relative;
    z-index: 1;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.navbar {
    background: linear-gradient(to bottom, #3a3a3a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 12px 20px;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    border-radius: 0 0 6px 6px;
    max-width: 720px;
    width: 100%;
    position: relative;
    z-index: 100;
}

.nav-text {
    font-size: 14px;
    margin-right: 12px;
    color: #fff;
    white-space: nowrap;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #1a1a1a;
    color: #ddd;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
    border: 1px solid #000;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: Arial, sans-serif;
    -webkit-appearance: none;
    appearance: none;
    line-height: normal;
}

    .nav-button:hover {
        background: #252525;
        color: #fff;
        border-color: #444;
        box-shadow: 0 2px 6px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .nav-button.active {
        display: inline-flex;
        align-items: center;
        padding: 6px 14px;
        border-radius: 3px;
        font-size: 13px;
        border: 1px solid #0052a3;
        white-space: nowrap;
        transition: all 0.2s ease;
        cursor: pointer;
        font-family: Arial, sans-serif;
        -webkit-appearance: none;
        appearance: none;
        line-height: normal;
        text-decoration: none;
        background: #0066cc;
        color: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 0 8px rgba(0,102,204,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    }

        .nav-button.active:hover {
            background: #0052a3;
            border-color: #003d7a;
            color: #fff;
            box-shadow: 0 2px 6px rgba(0,0,0,0.5), 0 0 12px rgba(0,102,204,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
        }

.nav-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: middle;
}

.dropdown-arrow {
    margin-left: 5px;
    font-size: 11px;
    opacity: 0.7;
    transition: transform 0.2s ease;
    display: inline-block;
}

.nav-dropdown {
    position: relative;
}

    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 100%;
    width: max-content;
    background: linear-gradient(to bottom, #2e2e2e 0%, #1e1e1e 100%);
    border: 1px solid #111;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 200;
    transform: translateY(-4px);
}

    .dropdown-menu::after {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        height: 10px;
    }

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent #111 transparent;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 7px 12px;
    color: #ddd;
    text-decoration: none;
    font-size: 12px;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    transition: background 0.12s ease, color 0.12s ease;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background: rgba(255,255,255,0.07);
        color: #fff;
    }

    .dropdown-item .nav-icon {
        width: 14px;
        height: 14px;
        margin-right: 7px;
        opacity: 0.75;
    }

/*home ugh*/
.profile-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    margin-bottom: 30px;
}

.profile-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
}

    .profile-text p + p {
        margin-top: 8px;
    }

.socials-section {
    padding: 25px;
    margin-bottom: 30px;
}

.socials-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 1px;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    border: 2px outset #555;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.4);
    transition: all 0.1s ease;
}

    .social-btn:hover {
        background: #444;
        transform: translate(1px, 1px);
    }

    .social-btn:active {
        border-style: inset;
        transform: translate(2px, 2px);
        box-shadow: none;
    }

    .social-btn.discord:hover {
        border-color: #5865F2;
    }

    .social-btn.twitter:hover {
        border-color: #1DA1F2;
    }

    .social-btn.github:hover {
        border-color: #fff;
    }

    .social-btn.spotify:hover {
        border-color: #1DB954;
    }

    .social-btn.youtube:hover {
        border-color: #FF0000;
    }

    .social-btn.tiktok:hover {
        border-top-color: #2af0ea;
        border-left-color: #2af0ea;
        border-bottom-color: #ff0050;
        border-right-color: #ff0050;
    }
    .social-btn.email:hover {
        border-color: #6D4AFF;
    }


.tooltip {
    position: relative;
}

    .tooltip .tooltip-text {
        visibility: hidden;
        background: linear-gradient(to bottom, #4a7bc8 0%, #2a5ba8 100%);
        color: #fff;
        text-align: center;
        border-radius: 4px;
        border: 2px outset #6a9bd8;
        padding: 6px 10px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 12px;
        box-shadow: 2px 2px 0 rgba(0,0,0,0.4);
        white-space: nowrap;
    }

        .tooltip .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -6px;
            border-width: 6px;
            border-style: solid;
            border-color: #2a5ba8 transparent transparent transparent;
        }

    .tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }

.quote-section {
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid #0066cc;
    position: relative;
}

.quote-text {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    color: #e0e0e0;
    text-align: center;
}

.quote-section::before {
    content: '"';
    font-size: 36px;
    color: #0066cc;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
}

/*this id for the about*/
.about-section {
    padding: 25px 30px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
}

.about-section p + p {
    margin-top: 8px;
}

.profile-pic,
.about-pic {
    width: 150px;
    height: 150px;
    border-radius: 6px;
    object-fit: cover;
    background: #333;
    display: block;
}

.message-box {
    padding: 50px 80px;
    text-align: center;
}

    .message-box h1 {
        font-size: 32px;
        margin-bottom: 20px;
        color: #fff;
    }

    .message-box p {
        font-size: 18px;
        color: #e0e0e0;
        margin-bottom: 30px;
    }

/*arcade huh*/
.game-name {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

.arcade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.arcade-thumb-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 8px;
    outline: 3px solid #444;
    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    overflow: hidden;
    cursor: pointer;
    transition: outline-color 0.2s ease;
}

    .arcade-thumb-wrapper:hover .img-caption {
        opacity: 1;
    }

.arcade-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #1a1a1a;
    display: block;
}
/*sketchbook on gitthub*/
.form-subtitle {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: -10px;
    margin-bottom: 20px;
}
.sketch-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sketch-input {
    background: #111;
    border: 1px solid #333;
    border-radius: 3px;
    padding: 8px 12px;
    color: #ddd;
    font-size: 13px;
    font-family: Arial, sans-serif;
    outline: none;
    width: 100%;
}

    .sketch-input::placeholder {
        color: #555;
    }

    .sketch-input:focus {
        border-color: #0066cc;
        box-shadow: 0 0 0 2px rgba(0,102,204,0.2);
    }

.form-submit {
    align-self: center;
    cursor: pointer;
}

.form-status {
    display: none;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
}

/*siteinfo alr alskdfnalskdnflaskdnflaskdfnlasdknflaksdnflkasndflaskdnflaksdnflsakdnflasdknflasndflasndflasndflasdnflsadknflaskdnflaskdnflaskdnflasdkfnlaskdnflkn dont get past this you stupid bitch ass kid*/
.siteinfo-first-heading {
    margin-bottom: 12px;
}

.siteinfo-about.about-section {
    margin-bottom: 30px;
}

.siteinfo-inline-link {
    color: #0066cc;
    text-decoration: none;
}

    .siteinfo-inline-link:hover {
        text-decoration: underline;
    }

.siteinfo-panel.siteinfo-panel-last {
    margin-bottom: 0;
}

.changelog-box {
	background: #161616;
	border-radius: 6px;
	outline: 1px solid #2a2a2a;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
	max-height: 320px;
	overflow-y: auto;
}

.changelog-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 16px;
}

.changelog-entry-bordered {
    border-top: 1px solid #2a2a2a;
    padding-top: 16px;
}

.changelog-version {
    font-size: 13px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 4px;
}

.changelog-body {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

.credits-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #888;
    line-height: 1.8;
}

.credit-line {
    margin: 0;
}

.body-text {
    font-size: 17px;
    line-height: 1.8;
    color: #909090;
}

.inspiration-desc.body-text {
    font-size: 12px;
}

.changelog-body.body-text {
    font-size: 14px;
}

.credits-list .body-text {
    font-size: 14px;
}
.inspiration-site-card {
    margin-bottom: 30px;
}

.inspiration-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.inspiration-capture-link {
    text-decoration: none;
    flex-shrink: 0;
}

.inspiration-capture {
    position: relative;
    width: 240px;
    max-width: 100%;
    min-height: 120px;
    border-radius: 8px;
    outline: 3px solid #444;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .inspiration-capture:hover .img-caption {
        opacity: 1;
    }

.inspiration-capture-pixel {
    min-height: 120px;
}

.inspiration-capture-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

.inspiration-capture-img-contain {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.inspiration-copy {
    flex: 1;
    min-width: 200px;
}

.inspiration-site-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.inspiration-desc {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.inspiration-button-row {
    line-height: 0;
}

    .inspiration-button-row a {
        display: inline-block;
    }

.inspiration-badge-link {
    display: inline-block;
    width: 88px;
    height: 31px;
    background: #1a1a1a;
    outline: 1px solid #333;
    line-height: 0;
}

.inspiration-badge-img {
    width: 88px;
    height: 31px;
    object-fit: contain;
    display: block;
}

@media (max-width: 600px) {
    .inspiration-capture {
        width: 100%;
    }
}

/*contributors ladsjfkabsdlkjfb*/
.contributors-lead-card {
    margin-bottom: 30px;
}

.contributors-lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #888;
}

.contributors-title {
    margin-bottom: 12px;
}

.contributors-button {
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 16px;
}

.contributor-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contributor-pfp {
    flex-shrink: 0;
}

.contributor-pfp-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    outline: 3px solid #444;
    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    object-fit: cover;
    display: block;
    background: #1a1a1a;
}

.contributor-info {
    flex: 1;
}

.contributor-name {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 6px;
}

.contributor-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

    .contributor-desc a {
        color: #0066cc;
        text-decoration: none;
    }

        .contributor-desc a:hover {
            text-decoration: underline;
        }