:root {
    --main-bg: #421d47;
    --accent: #8b0b95;
    --text: #222;
    --light-bg: #e7b9e9;
}

body {
    margin: 0;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    background: var(--main-bg);
    color: var(--text);
    line-height: 1.6;
}

/* Create a wrapper for the content */
.content-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(rgba(66, 29, 71, 0.9), rgba(66, 29, 71, 0.9)),
                url('https://img.itch.zone/aW1nLzIwMTUwNDkwLmpwZw==/original/6sKIDn.jpg');
}

.game-title {
    color: #fff;
    text-shadow: 2px 2px 0 var(--accent);
    margin: 0;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.download-section {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.download-btn {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    margin: 0.5rem;
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.screenshot {
    width: 100%;
    border: 3px solid var(--accent);
    border-color: white; 
    border-radius: 4px;
}

.game-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #2f2830;
    color: white;
}

footer a {
    color: #ca87cd;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}

/* Retro-style filter on the background */
body {
    filter: sepia(0.4) contrast(1.2) grayscale(0.2);
}

/* Add blur to the background */
.content-wrapper {
    filter: blur(3px);
    transition: filter 0.1s;
}

.content-wrapper.focused {
    filter: none;  /* Remove blur when hovering around */
}

.video-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-embed iframe {
    border-radius: 4px;
}

