body {
    background-color: black;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed #666;
}

a:hover {
    color: #0f0;
    border-bottom: 1px solid #0f0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header / Splash Area */
header {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.animation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Mimic VStack spacing 20 */
    gap: 20px; 
    transform: scale(0.8); /* Adjust scale to fit nicely */
}

#cat-image {
    width: 300px; /* Adjust based on actual image size */
    height: auto;
    /* offset x: -10 */
    transform: translateX(-10px);
}

#logo-image {
    width: 280px;
    height: auto;
    /* offset y: -120. In CSS flex flow, margin-top negative can pull it up */
    margin-top: -120px;
    z-index: 10;
}

/* Navigation */
nav {
    text-align: center;
    margin-bottom: 40px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 10px 0;
}

nav a {
    margin: 0 15px;
    font-size: 1.1em;
    border: none;
}

nav a:hover {
    color: #0f0;
}

/* Games List */
.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.game-item {
    border: 1px solid #333;
    padding: 20px;
    transition: border-color 0.3s;
}

.game-item:hover {
    border-color: #0f0;
}

.game-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-bottom: 15px;
    display: block;
}

.game-item h2 {
    margin-top: 0;
    color: #fff;
}

.store-button {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.3s;
}

.store-button:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}

/* Forms */
form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #0f0;
}

button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 30px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background: #fff;
    color: #000;
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    font-size: 0.8em;
    color: #666;
}
