html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

header {
    position: sticky;
    top: 0;
    background: #1f2933;
    color: #fff;
    z-index: 1000;
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}

.lang-menu {
    margin-left: auto;
}

.lang-menu a {
    font-weight: bold;
}

section {
    padding: 60px 20px;
    border-bottom: 1px solid #ddd;
}

section h2 {
    margin-top: 0;
}

.container {
    max-width: 1000px;
    margin: auto;
}

footer {
    background: #f3f4f6;
    padding: 20px;
    text-align: center;
    font-size: 13px;
}
#screenshots .container {
    max-width: 1200px; /* daje duże obrazy */
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.screenshots-grid a {
    display: block;
    text-decoration: none;
    cursor: zoom-in;
}

.screenshots-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;

    border: 1px solid #ccc;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    background: #fff;
}
.page-logo {
    text-align: center;
    margin: 30px 0 20px 0;
}

.page-logo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e5e7eb;
}
