body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    color: #2c3e50;
    background-color: #fce4ec;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    text-align: center;
    padding: 60px 20px 20px 20px;
}
header h1 {
    color: #d81b60;
    font-size: 3rem;
    margin-bottom: 10px;
}
header p {
    font-size: 1.2rem;
    color: #5d4037;
    max-width: 600px;
    margin: 0 auto;
}
header p.tagline-note {
    font-size: 1rem;
    margin-top: 12px;
}
.screenshots {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.screenshots img {
    width: 280px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: #fff;
}
.screenshots img:hover {
    transform: translateY(-5px);
}
footer {
    margin-top: auto;
    text-align: center;
    padding: 30px 20px;
    background-color: #f8bbd0;
    color: #5d4037;
    font-size: 0.9rem;
}
footer a {
    color: #d81b60;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
}
footer a:hover {
    text-decoration: underline;
}

/* --- LANGUAGE SWITCHING --- */
/* English is the default, no-JS-safe markup. Polish is hidden until
   the script detects a pl-* browser locale and swaps them. */
.lang-pl {
    display: none;
}
