body {
    background: #1a1a2e;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 2px,
        transparent 2px,
        transparent 4px
    );
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    color: #a0f0a0;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    border: 4px solid #7a7a9a;
    background: #0f0f1f;
    padding: 20px;
    box-shadow: 8px 8px 0 #2a2a4a;
}

/* Header with title and logo */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

h1 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 2em;
    color: #ffff80;
    text-shadow: 4px 4px 0 #808020;
    letter-spacing: 2px;
    margin: 0;
    word-break: break-word;
    flex: 1 1 auto;
}

.logo-placeholder {
    width: 120px;
    height: 80px;
    background: #2a2a3a;
    border: 4px solid #6a6a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 0.7rem;
    color: #a0a0c0;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 #1a1a2a;
    flex-shrink: 0;
}
/* If you add an actual image, remove the background and text, and make img fit */

/* Section headings */
h2 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1.2em;
    color: #80ffff;
    border-bottom: 4px solid #80ffff;
    padding-bottom: 5px;
    display: inline-block;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

/* Main grid: games left, socials right */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Games grid (left) */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.game-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a3a;
    border: 4px solid #6a6a8a;
    color: #ffffa0;
    text-decoration: none;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 0.7rem;
    padding: 15px 8px;
    text-align: center;
    transition: all 0.1s ease;
    box-shadow: 4px 4px 0 #1a1a2a;
    letter-spacing: 0.5px;
    line-height: 1.6;
    word-break: break-word;
    min-height: 120px;
}

.game-link:hover {
    background: #3a3a5a;
    border-color: #ffff80;
    color: #ffffff;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #1a1a2a;
}

/* Social links (right) */
.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    background: #2a2a3a;
    border: 4px solid #6a6a8a;
    color: #80ff80;
    text-decoration: none;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 0.7rem;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 4px 4px 0 #1a1a2a;
    transition: all 0.1s ease;
}

.social-link img {
    height: 3em;
    width: auto;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
    vertical-align: middle;
    margin-right: 5px;
}

.social-link:hover {
    background: #3a3a5a;
    border-color: #ffff80;
    color: #ffff80;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #1a1a2a;
}

/* Donation section */
.donation-section {
    margin: 20px 0 30px;
}

.donation-box {
    background: #1a1a2a;
    border: 4px solid #6a6a8a;
    padding: 20px;
    box-shadow: inset 2px 2px 0 #0f0f1f, inset -2px -2px 0 #2a2a4a;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 0.7rem;
    color: #c0c0ff;
    margin-bottom: 8px;
}

.progress-bar-bg {
    background: #0a0a1a;
    border: 4px solid #3a3a5a;
    height: 30px;
    box-shadow: inset 2px 2px 0 #000, inset -2px -2px 0 #4a4a6a;
    margin-bottom: 15px;
}

.progress-fill {
    background: #80ff80;
    height: 100%;
    width: 0%; /* Percentage */
    box-shadow: -2px 0 0 #2a2a4a;
}

.donation-action {
    text-align: center;
    margin: 15px 0 10px;
}

.donate-button {
    display: inline-block;
    background: #ffb000;
    border: 4px solid #ffd480;
    color: #2a1a00;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 12px 24px;
    text-decoration: none;
    box-shadow: 4px 4px 0 #804000;
    transition: all 0.1s ease;
}

.donate-button img {
    height: 3em;
    width: auto;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
    vertical-align: middle;
}

.donate-button:hover {
    background: #ffc030;
    border-color: #ffffc0;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #804000;
    color: #000;
}

.donation-note {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 0.6rem;
    color: #a0a0c0;
    text-align: center;
    margin-top: 15px;
    border-top: 2px dashed #4a4a6a;
    padding-top: 10px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.6rem;
    color: #6a6a8a;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    border-top: 2px solid #3a3a5a;
    padding-top: 15px;
}

/* Responsive */
@media (max-width: 700px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .site-header {
        flex-direction: column;
        align-items: start;
    }
    h1 {
        font-size: 1.5em;
    }
    .logo-placeholder {
        width: 100px;
        height: 60px;
    }
}