@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Press Start 2P', cursive;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    color: #ff4136;
    text-shadow: 2px 2px #000;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 0;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

section {
    background-color: #2a2a2a;
    border: 2px solid #444;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

section h2 {
    font-size: 1.2rem;
    color: #ff851b;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

input[type="file"] {
    color: #e0e0e0;
    background-color: #333;
    border: 2px solid #555;
    padding: 0.5rem;
    cursor: pointer;
}

.image-container {
    width: 100%;
    max-width: 400px;
    margin: 1rem auto;
    border: 2px dashed #555;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#image-preview {
    max-width: 100%;
    max-height: 400px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

button {
    background-color: #ff4136;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    cursor: pointer;
    text-shadow: 1px 1px #000;
    box-shadow: 3px 3px #000;
    transition: all 0.1s ease-in-out;
}

button:hover {
    background-color: #ff7066;
    transform: translateY(-2px);
    box-shadow: 5px 5px #000;
}

button:active {
    transform: translateY(1px);
    box-shadow: 2px 2px #000;
}

button:disabled {
    background-color: #888;
    cursor: not-allowed;
}

textarea {
    width: 100%;
    height: 200px;
    background-color: #111;
    border: 2px solid #555;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    padding: 0.5rem;
    resize: vertical;
}
