:root {
    --bg-color: #000;
    --text-color: #fff;
    --accent-color: #0f0; /* Retro Green */
    --font-family: 'Press Start 2P', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    overflow: hidden; /* Prevent scrollbars due to canvas */
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#game-of-life {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3; /* Dim background to make content readable */
}

.container {
    text-align: center;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 90%;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    image-rendering: pixelated; /* Keep retro look crisp */
    margin-bottom: 20px;
}

.coming-soon {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 0px #000;
    animation: blink 1.5s infinite step-end;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.social-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    filter: invert(1); /* Make black SVG white */
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .logo {
        max-width: 250px;
    }
    
    .coming-soon {
        font-size: 1.2rem;
    }
}
