html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url('Assets/idk.png');
    background-repeat: repeat;
    background-size: 130px;

}

.iframe-wrapper {
    position: relative;
    z-index: 0000;
    width: 896px;
    height: 576px;
    background-color: #121212;
    border-radius: 15px;
    overflow: hidden;
    margin-top: -22px;
    margin-left: 5px;
    pointer-events: auto;
    margin-bottom: 40px;
}

.game-frame {
    z-index: 0;
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    margin-bottom: 400px;
}


.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;


}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 40px;
    padding-left: 70px;

    padding-right: 60px;
}

.logo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    margin-bottom: 30px;

    position: relative;
    padding-left: 50px;
}
.insta-logo {
    width: 40px;
    height: 40px;
    cursor: pointer;
    image-rendering: pixelated;
    transition: transform 0.2s ease;
}



.insta-logo:hover {
    filter: brightness(0.5);
}

.donate-button {
    font-family: 'Pixellari', monospace;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #773c8f;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

@font-face {
    font-family: 'Pixellari';
    src: url('Assets/Pixellari.ttf') format('truetype');
}

#donate-button {
    font-family: 'Pixellari', sans-serif;
}

.donate-button:hover {
    filter: brightness(0.5);
}

.feed-page {
    margin: 0;
    padding: 0;
    background-image: url('Assets/idk.png');
    background-repeat: repeat;
    background-size: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Pixellari', monospace;
}

.lean-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: 20px;
}

.lean-item {
    text-align: center;
}

.lean-img {
    width: 150px;
    height: auto;
    display: block;
    margin-bottom: 50px;
}

.donate-button {
    font-family: 'Pixellari', monospace;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #773c8f;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.donate-button:hover {
    filter: brightness(0.5);
}

.logo-link {
    display: block;
    text-align: center;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.feed-logo {
    width: 100px;
    height: auto;
    cursor: pointer;
    image-rendering: pixelated;
}

.vhs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    mix-blend-mode: darken;
    opacity: 0.5;
    pointer-events: none;
}



