@keyframes animatedBackground {
    0%   { background-position:   0% 60%; }
    50%  { background-position: 100% 60%; }
    100% { background-position:   0% 60%; }
}

body {
    background: linear-gradient(150deg,
        rgb(0, 0, 0),
        rgb(45, 45, 45),
        rgb(0, 0, 0),
        rgb(45, 45, 45));
    background-size: 200% 200%;
    animation: animatedBackground 12s ease-in-out infinite;
    color: #f1f5f3;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    overflow-y: auto;
    background-attachment: fixed;
    margin: 0;
    line-height: 1.5;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    margin-bottom: 24px;
    padding: 12px;
    text-align: center;
}

.container22 {
    max-width: 960px;
    margin: 0 auto;
    padding: 12px;
    text-align: center;
}

h1 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -0.5px;
    text-align: center;
    padding: 20px 0 8px;
    margin: 0;
}

h2 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.3px;
}

.description {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #d4dcd8;
}

.tagline {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.7;
    margin: 0 0 24px;
    letter-spacing: 0.5px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 56px;
}

.store-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.button-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.button-row button {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: #f1f5f3;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.button-row button:hover {
    background: rgba(255, 255, 255, 0.18);
}

.button-row a {
    text-decoration: none;
}

.container img.mockup {
    max-width: 70%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.hero-banner {
    display: block;
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.details-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    width: 90vw;
    max-width: 1680px;
    margin: 32px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.info-block {
    flex: 1 1 0;
    min-width: 240px;
    margin: 0;
    text-align: left;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.info-block h3 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 8px;
}

.info-block p,
.info-block ul {
    font-size: 16px;
    color: #d4dcd8;
}

.quote-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 64px;
    width: 85vw;
    max-width: 1300px;
    margin: 32px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.quote-block {
    flex: 1 1 300px;
    margin: 0;
    padding: 0 8px;
    text-align: center;
}

.quote-block blockquote {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    color: #f1f5f3;
}

.quote-block cite {
    display: block;
    margin-top: 14px;
    font-size: 15px;
    font-style: normal;
    opacity: 0.7;
    color: #d4dcd8;
}

.quote-block cite strong {
    color: #ffffff;
}

.screenshot-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 90vw;
    max-width: 1680px;
    margin: 32px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.screenshot-row img {
    flex: 1 1 0;
    width: 0;
    min-width: 200px;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .screenshot-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .screenshot-row img {
        width: 100%;
        min-width: 0;
    }
}

hr.divider {
    width: 80%;
    max-width: 1100px;
    margin: 32px auto;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.section-block {
    margin: 32px auto;
    text-align: left;
    max-width: 720px;
    padding: 0 16px;
}

.section-block ul {
    line-height: 1.8;
    padding-left: 20px;
}

a {
    color: #9fd6a8;
}

a:hover {
    color: #c8efce;
}

nav.footer {
    margin: 40px 16px 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    font-size: 14px;
}

nav.footer p {
    margin: 6px 0;
}

nav.footer a {
    color: #f1f5f3;
    margin-right: 12px;
    text-decoration: none;
}

nav.footer a:hover {
    text-decoration: underline;
}

.lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    z-index: 10;
}

.lang-toggle a {
    color: #d4dcd8;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-toggle a:hover {
    color: #ffffff;
}

.lang-toggle a.active {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.legal {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-top: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.legal h1 {
    text-align: left;
    font-size: 28px;
    padding-top: 0;
}

.legal h2 {
    margin-top: 28px;
    font-size: 18px;
}

.legal p,
.legal li {
    font-size: 14px;
    color: #e3e8e5;
}

.legal strong {
    color: #ffffff;
}
