:root {
    --bg-color: #90EE90; /* Light green, adjust to "not too light" */
    --text-color: #000000;
    --pixel-font: 'Press Start 2P', cursive;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: var(--pixel-font);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

.icon-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.pixel-icon {
    width: 100px;
    height: 100px;
    image-rendering: pixelated;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.pixel-icon:hover {
    transform: scale(1.1);
}

.pixel-btn {
    background: #fff;
    border: 4px solid #000;
    font-family: var(--pixel-font);
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000;
    text-transform: uppercase;
    margin-top: 20px;
}

.pixel-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000;
}

input.pixel-input {
    font-family: var(--pixel-font);
    padding: 10px;
    border: 4px solid #000;
    width: 80%;
    margin-bottom: 20px;
    font-size: 14px;
}

h1, h2 {
    margin-bottom: 20px;
    line-height: 1.5;
}
