body {
    justify-content: flex-start;
}

.landing {
    width: 100%;
    max-width: 1040px;
    margin-top: 30px;
}

.lead {
    margin: 0 0 22px;
    color: #ccc;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
}

.app-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.app-card {
    display: flex;
    flex-direction: column;
    background: #0e0e0e;
    border: 1px solid #2f2f2f;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
    transform: translateY(-3px);
    border-color: #d35400;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.app-card:focus-visible {
    outline: 2px solid #d35400;
    outline-offset: 3px;
}

.app-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    background: #111;
    border-bottom: 1px solid #2b2b2b;
}

.app-meta {
    padding: 14px 16px 16px;
}

.app-card h2 {
    margin: 0 0 8px;
    font-size: 1.03rem;
}

.app-card p {
    margin: 0;
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.jump {
    display: inline-block;
    margin-top: 12px;
    color: #ffc89d;
    border-bottom: 1px solid rgba(255, 200, 157, 0.65);
    font-size: 0.88rem;
}

.site-nav {
    margin-top: 24px;
}

@media (max-width: 760px) {
    .landing {
        margin-top: 20px;
    }

    .app-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
